Bom primeiro
copie o codigo abaixo cole em um bloco de notas e salve como o nome de: VIPTeleport.java

( salve no local gameserver\data\scripts\handlers\voicedcommandhand lers )

Código:
Icon2 Vip Teleport por Cordenadas
Bom esse script tem aqui em um servidor da rev do l2 ouro
Nao sei quem fez entao sem creditos

=================================================

Bom primeiro
copie o codigo abaixo cole em um bloco de notas e salve como o nome de: VIPTeleport.java

(salve no local gameserver\data\scripts\handlers\voicedcommandhand lers)


Código:

/*
* 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
*             else if (SiegeManager.getInstance().getSieges() != null)
*             {
*                 activeChar.sendMessage("You are in siege!");
*                 return false;
*             }
*/

package handlers.voicedcommandhandlers;

import java.util.NoSuchElementException;
import java.util.StringTokenizer;

import net.sf.l2j.gameserver.ai.CtrlIntention;
import net.sf.l2j.gameserver.handler.IVoicedCommandHandler;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;

public class VIPTeleport implements IVoicedCommandHandler
{
    private static final String[] _voicedCommands =
    {
        "teleport"
    };
    
    public boolean useVoicedCommand(String command, L2PcInstance activeChar, String tlp)
    {
        if (command.equalsIgnoreCase("teleport"))
        {
            if (activeChar == null)
            {
                return false;
            }
            else if(activeChar.atEvent)
            {
                activeChar.sendMessage("You are an Event.");
                return false;
            }
            else if(activeChar.isInDuel())
            {
                activeChar.sendMessage("You are on Duel.");
                return false;
            }
            else if(activeChar.isInOlympiadMode())
            {
                activeChar.sendMessage("You are in Olympiad.");
                return false;
            }
            else if(activeChar.isInCombat())
            {
                activeChar.sendMessage("You can't teleport in Combat Mod.");
                return false;
            }
            else if (activeChar.isFestivalParticipant())
            {
                activeChar.sendMessage("You are in a festival.");
                return false;
            }
            else if (activeChar.isInJail())
            {
                activeChar.sendMessage("You are in Jail.");
                return false;
            }
            else if (activeChar.inObserverMode())
            {
                activeChar.sendMessage("You are in Observ Mode.");
                return false;
            }
            else if (activeChar.isDead())
            {
                activeChar.sendMessage("You Dead. Can't Teleport.");
                return false;
            }
            else if (activeChar.isFakeDeath())
            {
                activeChar.sendMessage("You are Dead? week up :D");
                return false;
            }
            else if (activeChar.getKarma() > 0)
            {
                activeChar.sendMessage("You can't use teleport command when you have karma.");
                return false;
            }
            else if (activeChar.getAccessLevel().getLevel() != 3)
            {
                activeChar.sendMessage("You Need Account VIP To Use This.");
                return false;
            }
            if(tlp != null)
            {
                teleportTo(activeChar, tlp);
            }
            else
            {
                activeChar.sendMessage("Wrong or no Coordinates given. Usage: /loc to display the coordinates.");
                activeChar.sendMessage("Ex: .teleport <x> <y> <z>");
                return false;
            }
        }
        return true;
    }
    
    private void teleportTo(L2PcInstance activeChar, String Cords)
    {
        try
        {
            StringTokenizer st = new StringTokenizer(Cords);
            String x1 = st.nextToken();
            int x = Integer.parseInt(x1);
            String y1 = st.nextToken();
            int y = Integer.parseInt(y1);
            String z1 = st.nextToken();
            int z = Integer.parseInt(z1);
            
            activeChar.getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
            activeChar.teleToLocation(x, y, z, false);
            
            activeChar.sendMessage("You have been teleported to " + Cords);
        }
        catch (NoSuchElementException nsee)
        {
            activeChar.sendMessage("Wrong or no Coordinates given. Usage: /loc to display the coordinates.");
            activeChar.sendMessage("Ex: .teleport <x> <y> <z>");
        }
    }
    
    public String[] getVoicedCommandList()
    {
        return _voicedCommands;
    }
}



Apos isso na pasta : scripts\handlers

tem um arquivo chamado (MasterHandler.java)
entre nele e add essa linha

Código:

VoicedCommandHandler.getInstance().registerVoicedCommandHandler(new VIPTeleport());


ATENÇÃO ADD ESSE CODIGO ACIMA APOS A LINHA 222 DO ARQUIVO MasterHandler.java
ficando assim

Código:

linha-222        VoicedCommandHandler.getInstance().registerVoicedCommandHandler(new stats());
linha-223        VoicedCommandHandler.getInstance().registerVoicedCommandHandler(new VIPTeleport());



apos isso incie seu servidor , de acess lvl 3 pra vc e use o comando
.teleport X Y Z

(no X Y Z e as cordenadas do local , pode pega as cordenadas digitando /loc no l2)


ESSE SCRIPT E PRA L2J , SE FOR USA EM OUTRO SERVIDOR COM L2J_EMU , nao se esqueça de altera os import.
Apos isso na pasta : scripts\handlers

tem um arquivo chamado (MasterHandler.java)
entre nele e add essa linha

Código:
VoicedCommandHandler.getInstance().registerVoicedCommandHandler(new VIPTeleport());
ATENÇÃO ADD ESSE CODIGO ACIMA APOS A LINHA 222 DO ARQUIVO MasterHandler.java
ficando assim

Código:
linha-222        VoicedCommandHandler.getInstance().registerVoicedCommandHandler(new stats());
linha-223        VoicedCommandHandler.getInstance().registerVoicedCommandHandler(new VIPTeleport());
apos isso incie seu servidor , de acess lvl 3 pra vc e use o comando
.teleport X Y Z

(no X Y Z e as cordenadas do local , pode pega as cordenadas digitando /loc no l2)


ESSE SCRIPT E PRA L2J , SE FOR USA EM OUTRO SERVIDOR COM L2J_EMU , nao se esqueça de altera os import.