Examples of UnJailTask


Examples of lineage2.gameserver.model.GameObjectTasks.UnJailTask

        if ((player.getVar("jailed") != null) && ((System.currentTimeMillis() / 1000) < (Integer.parseInt(player.getVar("jailed")) + 60)))
        {
          player.setXYZ(-114648, -249384, -2984);
          player.sitDown(null);
          player.block();
          player._unjailTask = ThreadPoolManager.getInstance().schedule(new UnJailTask(player), Integer.parseInt(player.getVar("jailed")) * 1000L);
        }
        else
        {
          player.setXYZ(rset.getInt("x"), rset.getInt("y"), rset.getInt("z"));
          String jumpSafeLoc = player.getVar("@safe_jump_loc");
View Full Code Here

Examples of lineage2.gameserver.model.GameObjectTasks.UnJailTask

  {
    if (_unjailTask != null)
    {
      _unjailTask.cancel(false);
    }
    _unjailTask = ThreadPoolManager.getInstance().schedule(new UnJailTask(player), time * 60000);
  }
 
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.