Guest User

Untitled

a guest
Sep 29th, 2016
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. "admin_spawnnight",
  2. "admin_spawnday",
  3. "admin_spawnfence"
  4. };
  5.  
  6. public static Logger LOGGER = Logger.getLogger(AdminSpawn.class);
  7.  
  8. @Override
  9. public boolean useAdminCommand(final String command, final L2PcInstance activeChar)
  10. {
  11. if (command.startsWith("admin_spawnfence"))
  12. {
  13. int id = IdFactory.getInstance().getNextId();
  14. String[] args = command.split(" ");
  15. L2FenceInstance inst = new L2FenceInstance(id, Integer.parseInt(args[1]), Integer.parseInt(args[2]), Integer.parseInt(args[3]));
  16. inst.spawnMe(activeChar.getX(), activeChar.getY(), activeChar.getZ());
  17. }
  18. else if (command.equals("admin_show_spawns"))
  19. {
  20. AdminHelpPage.showHelpPage(activeChar, "spawns.htm");
  21. }
  22. ....................................
Advertisement
Add Comment
Please, Sign In to add comment