Package net.sf.l2j.gameserver.serverpackets

Examples of net.sf.l2j.gameserver.serverpackets.TeleportToLocation


    {
      _log.fine("Teleporting to: " + x + ", " + y + ", " + z);
    }
   
    // Send a Server->Client packet TeleportToLocationt to the L2Character AND to all L2PcInstance in the _KnownPlayers of the L2Character
    broadcastPacket(new TeleportToLocation(this, x, y, z));
   
    // Set the x,y,z position of the L2Object and if necessary modify its _worldRegion
    getPosition().setXYZ(x, y, z);
   
    decayMe();
View Full Code Here

TOP

Related Classes of net.sf.l2j.gameserver.serverpackets.TeleportToLocation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.