/* 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 Twdtwd (DiscoveryMS) * @purpose Warps to the Forgotten Passage and gives you the needed item for the resurrection. */ function enter(pi) { if (pi.isQuestStarted(6134)) { if (pi.canHold(4031448)) { pi.gainItem(4031448, 1); pi.playPortalSound(); pi.warp(220070400, 3); return true; } else { pi.getPlayer().message("Make room on your ETC to receive the quest item."); return false; } } else { pi.playPortalSound(); pi.warp(220070400, 3); return true; } }