/* 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 . */ /* guild emblem npc */ var status = 0; var sel; function start() { cm.sendSimple("What would you like to do?\r\n#b#L0#Create/Change your Guild Emblem#l#k"); } function action(mode, type, selection) { if (mode < 1) { cm.dispose(); } else { status++; if (status == 1) { sel = selection; if (sel == 0) { if (cm.getPlayer().getGuildRank() == 1) { cm.sendYesNo("Creating or changing Guild Emblem costs #b 5000000 mesos#k, are you sure you want to continue?"); } else { cm.sendOk("You must be the Guild Leader to change the Emblem. Please tell your leader to speak with me."); } } } else if (status == 2 && sel == 0) { cm.getPlayer().genericGuildMessage(17); cm.dispose(); } else { cm.dispose(); } } }