Jump to content

Recommended Posts

Posted
/*

* This program is free software; you can redistribute it and/or modify

* it under the terms of the GNU General Public License as published by

* the Free Software Foundation; either version 2, or (at your option)

* any later version.

*

* This program is distributed in the hope that it will be useful,

* but WITHOUT ANY WARRANTY; without even the implied warranty of

* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the

* GNU General Public License for more details.

*

* You should have received a copy of the GNU General Public License

* along with this program; if not, write to the Free Software

* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA

* 02111-1307, USA.

*

* http://www.gnu.org/copyleft/gpl.html

*/

 

package net.sf.l2j.gameserver.handler.voicedcommandhandlers;

 

import net.sf.l2j.Config;

import net.sf.l2j.gameserver.handler.IVoicedCommandHandler;

import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;

 

 

/**

*

* @author x.v3ndetta@yahoo.com

*

*

*/

 

public class fullrb implements IVoicedCommandHandler

{

   private static final String[] VOICED_COMMANDS = { "valakas","baium","queenant","zaken","antharas" };

 

   public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)

   {  

     

       if(activeChar!=null)

       {          

           if(command.startsWith("valakas"))

           {

               activeChar.teleToLocation(213896, -115436, -1644);

           }

           else if(command.startsWith("baium"))

           {

               activeChar.teleToLocation(115213, 16623, 10080);

           }                    

           else if(command.startsWith("queenant"))

           {

               activeChar.teleToLocation(-21610, 181594, -5734);

           }

           else if(command.startsWith("zaken"))

           {

               activeChar.teleToLocation(55312, 219168, -3223);

           }

           else if(command.startsWith("antharas"))

           {

               activeChar.teleToLocation(185708, 114298, -8221);

           }  

           else if(activeChar.isInJail())

           {

               activeChar.sendMessage("Sorry,you are in Jail!");

               return false;

           }

           else if(activeChar.isInOlympiadMode())

           {

               activeChar.sendMessage("Sorry,you are in the Olympiad now.");

               return false;

           }

                   

           else if(activeChar.atEvent)

           {

               activeChar.sendMessage("Sorry,you are in an event.");

               return false;

           }

           else  if (activeChar.isInDuel())

           {

               activeChar.sendMessage("Sorry,you are in a duel!");

               return false;

           }

           else if (activeChar.isDead())

           {

              activeChar.sendMessage("Sorry,you are dead.");  

  return false;

           }  

           else if (activeChar.getKarma() > 0 || activeChar.getPvpFlag() > 0)

           {

              activeChar.sendMessage("Sorry,you are in combat.");

  return false;

           }  

           else if (activeChar.inObserverMode())

           {

              activeChar.sendMessage("Sorry,you are in the observation mode.");

           }            

           else if (activeChar.isFestivalParticipant())

           {

               activeChar.sendMessage("Sorry,you are in a festival.");

               return false;

           }    

 

       }

       return true;

   }

   public String[] getVoicedCommandList()

   {

       return VOICED_COMMANDS;

   }

 

}

 

Credits: V3ndetta [Me]

P.S ! x,y,z TAKEN FROM MY KAMAEL SERVER !

Posted

            if(command.startsWith("valakas"))

           {

               activeChar.teleToLocation(213896, -115436, -1644);

               return false;

           }

           else if(command.startsWith("baium"))

           {

               activeChar.teleToLocation(115213, 16623, 10080);

              return false;

           }                    

           else if(command.startsWith("queenant"))

           {

               activeChar.teleToLocation(-21610, 181594, -5734);

               return false;

           }

           else if(command.startsWith("zaken"))

           {

               activeChar.teleToLocation(55312, 219168, -3223);

              return false;

           }

           else if(command.startsWith("antharas"))

           {

               activeChar.teleToLocation(185708, 114298, -8221);

          return false;

           }        

 

And what is point ?:), pathetic

Posted

lol:)), simple teleport commands but not working. read it with attention ..

 

just to let you know its working :) the return false; dont get read its not necessary to be there just the teleToLoc();

Posted

ok, whatever !

 

tell me

           else if (activeChar.isFestivalParticipant())

           {

               activeChar.sendMessage("Sorry,you are in a festival.");

               return false;

           }    

 

and this ?:) what is point ? here know method for return, and there no ?, pathetic

 

 

Posted

ok, whatever !

 

tell me

            else if (activeChar.isFestivalParticipant())

            {

                activeChar.sendMessage("Sorry,you are in a festival.");

                return false;

            }   

 

and this ?:) what is point ? here know method for return, and there no ?, pathetic

 

 

 

jeez man learn some java please the teleToLoc() alredy have the return method so the method working the sendmessgae need it because there are no return which control the sendMessage() method so you need to "stop" the action by a return false;

Posted

jeez man learn some java please the teleToLoc() alredy have the return method so the method working the sendmessgae need it because there are no return which control the sendMessage() method so you need to "stop" the action by a return false;

Yes! You're right, I must go to buy some books..

I will put in my server to prove

Posted

And what about the raid boss instance protections? i cant even add a teleport to a raid zone, i have to make python script =D

 

The server will read that he is exploiting with recall exploit and it will kick the character.

Posted

Yes! You're right, I must go to buy some books..

I will put in my server to prove

Dude its needed...

If you leave it without return it will just continue teleporting you until the script ends.. No point ,its needed.

Posted

And what about the raid boss instance protections? i cant even add a teleport to a raid zone, i have to make python script =D

 

The server will read that he is exploiting with recall exploit and it will kick the character.

 

depends on the grandboss engine if the bosslair is protected yes if not you can teleport in

Posted

Credits: V3ndetta [Me]

P.S ! x,y,z TAKEN FROM MY KAMAEL SERVER !

DominiQue why edited your post ? I'm not right ! (I'M WRONG)

 

BTW, mising return method

            else if (activeChar.inObserverMode())

            {

              activeChar.sendMessage("Sorry,you are in the observation mode.");

            }   

Posted

Dude its needed...

If you leave it without return it will just continue teleporting you until the script ends.. No point ,its needed.

 

what's gonna happen if u leave it without return true/false statement ? will the code continue checking the other checks?

hope u didnt made all your posts by bullshiting :|

 

the code is made by copies not even coded by coder i am rly wondering how can u share something like this

 

EDIT: hope u tried your code while coding(copying) because while u are in jail u can go out HUH

Posted

DominiQue why edited your post ? I'm not right ! (I'M WRONG)

 

BTW, mising return method

            else if (activeChar.inObserverMode())

            {

              activeChar.sendMessage("Sorry,you are in the observation mode.");

            }   

its there.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • Dear friends, right now we are holding a grand competition with a prize fund of more than $ 1000 in our stores https://socnet.store , telegram store: https://socnet.shop and SMM panel: https://socnet.pro There are more than 50 prize places in our competition, each lucky person can take one of the places. Important condition: you must make a purchase at any time before June 1, 2025. The more purchases you make - the more chances you have to win the main prize in the community of $ 300! ➡ Our Online Shop: socnet.store  ➡ Our SMM-Boosting Panel: socnet.pro  ➡ Telegram Shop Bot: socnet.shop  ➡ Telegram Support: https://t.me/solomon_bog  ➡ Telegram Channel: https://t.me/accsforyou_shop  ➡ Discord Support: @AllSocialNetworksShop  ➡ Discord Server: https://discord.gg/y9AStFFsrh  ➡ WhatsApp Support: 79051904467 ➡ WhatsApp Channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n  ➡ Email Support: solomonbog@socnet.store 
    • Dear friends, right now we are holding a grand competition with a prize fund of more than $ 1000 in our stores https://socnet.store , telegram store: https://socnet.shop and SMM panel: https://socnet.pro There are more than 50 prize places in our competition, each lucky person can take one of the places. Important condition: you must make a purchase at any time before June 1, 2025. The more purchases you make - the more chances you have to win the main prize in the community of $ 300! ➡ Our Online Shop: socnet.store  ➡ Our SMM-Boosting Panel: socnet.pro  ➡ Telegram Shop Bot: socnet.shop  ➡ Telegram Support: https://t.me/solomon_bog  ➡ Telegram Channel: https://t.me/accsforyou_shop  ➡ Discord Support: @AllSocialNetworksShop  ➡ Discord Server: https://discord.gg/y9AStFFsrh  ➡ WhatsApp Support: 79051904467 ➡ WhatsApp Channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n  ➡ Email Support: solomonbog@socnet.store 
    • REBORN ETERNAL IL x10 WTS  1gb 8e (a lot in stock) DR set +6 180e Frintezza+6 200e Zaken+6 200e AQ+6 200e You must go first or Pufa middleman service
    • There's many reasons why it would be more NO than YES : Using NCSoft assets is a death wish, they can lawyer any LU3/Unity if they wanted, since it's a plain steal of intellectual property. It's an hobby, as you said it, and it's not specially about money. Money is a way to filter idiots/resellers, nothing more. It's really about trying to replicate old content and optimize it which I find it fun. I just align with the basic idea than an emulator emulates. When you launch Project64 and SuperMario 64, you don't expect to get something more than 120 stars and Bowser boss in the end - which should have been L2J project to begin with Even if I played a lot with TESCS from Morrowind, back in time, it's not enough to handle current engines, and I'm too lazy to learn Unity/Unreal Engine. Moreover, it would mean buying assets. While doing it alone would be a fail, coupling to L2J / L2 community would still be shitty (since the majority is RU/BR) ; people is only about fame/glory/reselling shit on back of others. Opening to others, the project would be leaked day 1, rebranded and resold. MMO genre is basically dead, and that's not a reboot of any game (l2/wow classic :D) which will turn the tide. Regarding L2 or an remastered version of it, you can obviously blatantly copy-cat it (as Propnight did for Dead by daylight).   All frenchies aren't supposed to do Expedition 33 :).
    • 190euro until last month, don't miss it.
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock