Package com.l2jfrozen.gameserver.network.serverpackets

Examples of com.l2jfrozen.gameserver.network.serverpackets.TeleportToLocation


    if (Config.DEBUG)
            _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));

    // remove the object from its old location
    decayMe();
   
    // Set the x,y,z position of the L2Object and if necessary modify its _worldRegion
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.network.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.