/* This file is part of the OdinMS Maple Story Server Copyright (C) 2008 Patrick Huy Matthias Butz Jan Christian Meyer This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation version 3 as published by the Free Software Foundation. You may not use, modify or distribute this program under any other version of the GNU Affero General Public License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ /** * @author BubblesDev * @author Ronan * @npc Tommy (HPQ) */ var status = 0; function start() { status = -1; action(1, 0, 0); } function action(mode, type, selection) { if (mode < 1) { cm.dispose(); } else { status++; if (cm.getPlayer().getMap().getId() == 910010100) { //Clear map if (status == 0) { cm.sendNext("Hello, there! I'm Tommy. There's a Pig Town nearby where we're standing. The pigs there are rowdy and uncontrollable to the point where they have stolen numerous weapons from travelers. They were kicked out from their towns, and are currently hiding out at the Pig Town."); } else if (status == 1) { if (cm.isEventLeader()) { cm.sendYesNo("What do you think about making your way there with your party members and teach those rowdy pigs a lesson?"); } else { cm.sendOk("Interessed? Tell your party leader to talk to me to head there!"); cm.dispose(); } } else if (status == 2) { cm.getEventInstance().startEventTimer(5 * 60000); cm.getEventInstance().warpEventTeam(910010200); cm.dispose(); } } else if (cm.getPlayer().getMap().getId() == 910010200) { //Bonus map if (status == 0) { cm.sendYesNo("Would you like to exit the bonus now?"); } else { cm.warp(910010400); cm.dispose(); } } else if (cm.getPlayer().getMap().getId() == 910010300) { //Exit map if (status == 0) { cm.sendOk("You will now be warped out, thank you for helping us!"); } else { cm.warp(100000200); cm.dispose(); } } } }