Jump to content

[Share] .base Voice Command for KvN


Recommended Posts

/*

* 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 com.l2laif.gameserver.handler.voicedcommandhandlers;

 

import com.l2laif.Config;

import com.l2laif.gameserver.handler.IVoicedCommandHandler;

import com.l2laif.gameserver.model.actor.instance.L2PcInstance;

 

 

/**

*

* @author x.v3ndetta@yahoo.com

*

*/

 

public class base implements IVoicedCommandHandler

{

   private static final String[] VOICED_COMMANDS = { "base" };

 

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

   {  

     

       if (command.equalsIgnoreCase("base"))

       {          

            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;

           }        

 

if (activeChar.isNoob())

{

activeChar.teleToLocation(-83995, 243373, -3755, true); // good Base

}

if (activeChar.isKoof())

{

activeChar.teleToLocation(45775, 49236, -3086, true); // evil Base

}

 

       }

       return true;

   }

   public String[] getVoicedCommandList()

   {

       return VOICED_COMMANDS;

   }

 

}

 

CREDITS : V3ndetta[ME}
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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

    • Better use an active fork or L2J itself and join their community (generally, each project got at least a Discord) - you will generally find dedicated ppl to answer your questions. About practicing, as I said, you have to at least understand Java OOP concepts (mandatory, will help you a lot to understand what you exactly do - if not, you will eventually guess it after 2-3 months). You should apply manually customs (adapting them from one project to another is even better, since it forces you to seek through files). Start with basic customs, few lines max. Then raise the difficulty with more advanced customs. In the meantime, try to modify them for your needs or experiment. It's really annoying and hard to apprehend for a newbie, but you should also read and understand about git/svn (version control systems). Those systems allow you to generate "restore points" everytime you commit in your project, allowing you to eventually revert back. It will be extremely useful once you do crap. Gitlab / github (GIT technology) is the way to go those days, but SVN is really fine (and easier to use, since more basic) if you work alone. Try even with a non Java project, it's not important, from the moment you understand how to generate such a repository, commit over it, and be able to revert back. If you don't use such system, your project will eventually break one day, and you won't be able to revert what you did. That's basically how I lost my first Java project, back in 2010.
    • nice settings etc but no online and this gathering today was the worst gathering in history of lineage 2.  
    • Is it possible to be adapted for H5 on Sunrise?  What about that window? Is the auto hunt bar stuck on it?
    • The download link is down.   I know a guy who can sell it super cheap (files+source) Discord: darktechx or DarkTech#0041    
    • Back in the days we had l2robot. It was specially designed to spam F1-F12 only over the l2 game window, so you could minimize the game and still keep the so called bot running.  After the new anti - boting services came up i  couldn't inject it to the l2.exe process anymore. You never know... give it a try:   Screenshot:     Download Link (tested and working, without password on the rar): https://www.4shared.com/s/f4WXcQIwGge YouTuBe Video with instructions how to use it: https://www.youtube.com/watch?v=ypVN3pucmvM Good luck!  
  • Topics

×
×
  • Create New...