Examples of teleToLocation()

  • com.l2jfrozen.gameserver.model.L2Summon.teleToLocation()
  • com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.teleToLocation()
  • l2p.gameserver.model.L2Playable.teleToLocation()
  • l2p.gameserver.model.L2Player.teleToLocation()
  • l2p.gameserver.model.instances.L2NpcInstance.teleToLocation()
  • lineage2.gameserver.model.Player.teleToLocation()
    Method teleToLocation. @param x int @param y int @param z int @param refId int
  • lineage2.gameserver.model.instances.NpcInstance.teleToLocation()
    Method teleToLocation. @param loc Location
  • net.sf.l2j.gameserver.model.L2Character.teleToLocation()
    Teleport a L2Character and its pet if necessary.

    Actions :

  • Stop the movement of the L2Character
  • Set the x,y,z position of the L2Object and if necessary modify its _worldRegion
  • Send a Server->Client packet TeleportToLocationt to the L2Character AND to all L2PcInstance in its _KnownPlayers
  • Modify the position of the pet if necessary


  • @param x the x @param y the y @param z the z @param allowRandomOffset the allow random offset
  • net.sf.l2j.gameserver.model.actor.instance.L2PcInstance.teleToLocation()

  • Examples of com.l2jfrozen.gameserver.model.L2Attackable.teleToLocation()

                case CHECK_MINIONS_ZONE: {
                    for (int i = 0; i < _Minions.size(); i++) {
                        L2Attackable mob = _Minions.get(i);

                        if (mob != null && !mob.isInsideRadius(npc.getX(), npc.getY(), 700, false))/* !_Zone.isInsideZone(mob)) */ {
                            mob.teleToLocation(npc.getX(), npc.getY(), npc.getZ());
                        }
                    }
                }
                break;
                case CHECK_NURSE_ALIVE: {
    View Full Code Here

    Examples of com.l2jfrozen.gameserver.model.L2Character.teleToLocation()

              continue;
            L2Character target = (L2Character) targets[index];
            int ch = (Rnd.get(14) + 1);
            if (ch == 1)
            {
              target.teleToLocation(55299, 219120, -2952, true);
            }
            else if (ch == 2)
            {
              target.teleToLocation(56363, 218043, -2952, true);
            }
    View Full Code Here

    Examples of com.l2jfrozen.gameserver.model.L2Character.teleToLocation()

            {
              target.teleToLocation(55299, 219120, -2952, true);
            }
            else if (ch == 2)
            {
              target.teleToLocation(56363, 218043, -2952, true);
            }
            else if (ch == 3)
            {
              target.teleToLocation(54245, 220162, -2952, true);
            }
    View Full Code Here

    Examples of com.l2jfrozen.gameserver.model.L2Character.teleToLocation()

            {
              target.teleToLocation(56363, 218043, -2952, true);
            }
            else if (ch == 3)
            {
              target.teleToLocation(54245, 220162, -2952, true);
            }
            else if (ch == 4)
            {
              target.teleToLocation(56289, 220126, -2952, true);
            }
    View Full Code Here

    Examples of com.l2jfrozen.gameserver.model.L2Character.teleToLocation()

            {
              target.teleToLocation(54245, 220162, -2952, true);
            }
            else if (ch == 4)
            {
              target.teleToLocation(56289, 220126, -2952, true);
            }
            else if (ch == 5)
            {
              target.teleToLocation(55299, 219120, -3224, true);
            }
    View Full Code Here

    Examples of com.l2jfrozen.gameserver.model.L2Character.teleToLocation()

            {
              target.teleToLocation(56289, 220126, -2952, true);
            }
            else if (ch == 5)
            {
              target.teleToLocation(55299, 219120, -3224, true);
            }
            else if (ch == 6)
            {
              target.teleToLocation(56363, 218043, -3224, true);
            }
    View Full Code Here

    Examples of com.l2jfrozen.gameserver.model.L2Character.teleToLocation()

            {
              target.teleToLocation(55299, 219120, -3224, true);
            }
            else if (ch == 6)
            {
              target.teleToLocation(56363, 218043, -3224, true);
            }
            else if (ch == 7)
            {
              target.teleToLocation(54245, 220162, -3224, true);
            }
    View Full Code Here

    Examples of com.l2jfrozen.gameserver.model.L2Character.teleToLocation()

            {
              target.teleToLocation(56363, 218043, -3224, true);
            }
            else if (ch == 7)
            {
              target.teleToLocation(54245, 220162, -3224, true);
            }
            else if (ch == 8)
            {
              target.teleToLocation(56289, 220126, -3224, true);
            }
    View Full Code Here

    Examples of com.l2jfrozen.gameserver.model.L2Character.teleToLocation()

            {
              target.teleToLocation(54245, 220162, -3224, true);
            }
            else if (ch == 8)
            {
              target.teleToLocation(56289, 220126, -3224, true);
            }
            else if (ch == 9)
            {
              target.teleToLocation(55299, 219120, -3496, true);
            }
    View Full Code Here

    Examples of com.l2jfrozen.gameserver.model.L2Character.teleToLocation()

            {
              target.teleToLocation(56289, 220126, -3224, true);
            }
            else if (ch == 9)
            {
              target.teleToLocation(55299, 219120, -3496, true);
            }
            else if (ch == 10)
            {
              target.teleToLocation(56363, 218043, -3496, true);
            }
    View Full Code Here
    TOP
    Copyright © 2018 www.massapi.com. 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.