Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- "admin_spawnnight",
- "admin_spawnday",
- "admin_spawnfence"
- };
- public static Logger LOGGER = Logger.getLogger(AdminSpawn.class);
- @Override
- public boolean useAdminCommand(final String command, final L2PcInstance activeChar)
- {
- if (command.startsWith("admin_spawnfence"))
- {
- int id = IdFactory.getInstance().getNextId();
- String[] args = command.split(" ");
- L2FenceInstance inst = new L2FenceInstance(id, Integer.parseInt(args[1]), Integer.parseInt(args[2]), Integer.parseInt(args[3]));
- inst.spawnMe(activeChar.getX(), activeChar.getY(), activeChar.getZ());
- }
- else if (command.equals("admin_show_spawns"))
- {
- AdminHelpPage.showHelpPage(activeChar, "spawns.htm");
- }
- ....................................
Advertisement
Add Comment
Please, Sign In to add comment