/* 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 Blue */ var status = -1; function start(mode, type, selection) { qm.dispose(); } function end(mode, type, selection) { if (mode == -1) { qm.dispose(); } else { if (mode == 1) { status++; } else { status--; } if (status == 0) { if (qm.haveItem(5460000)) { qm.completeQuest(); qm.teachSkill(8, 1, 1, -1); qm.gainItem(5460000, -1, false); qm.sendOk("You got the Pet Snack! Thanks! You can use these to feed multiple pets at once!"); } else { qm.sendOk("Get me the Pet Snack! It can be found in a very big shop...."); } } else if (status == 1) { qm.dispose(); } } }