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 !

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.

×
×
  • Create New...