- Joined
- Apr 21, 2007
- Messages
- 251
- Reaction score
- 0
why am i releasing this just going to get flamed
Disclaimer: If you have a skull yes a skull not even a brain you should be able to make this by yourself and not have to use this script.
This script takes 1mil in mesos to warp to the PVP arena of your choice, if you have multiple PVP Arenas and want a warper for that but don't know how to just reply with a request.
Disclaimer: If you have a skull yes a skull not even a brain you should be able to make this by yourself and not have to use this script.
Code:
/*
This file is part of the OdinMS Maple Story Server
Copyright (C) 2008 Patrick Huy <[email protected]>
Matthias Butz <[email protected]>
Jan Christian Meyer <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License 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 <http://www.gnu.org/licenses/>.
*/
/* Cloto
Warp NPC To PVP Arena
*/
var status = 0;
function start() {
status = -1;
action(1, 0, 0);
}
function action(mode, type, selection) {
if (mode == -1 || status == 4) {
cm.dispose();
} else {
if (status == 2 && mode == 0) {
cm.sendOk("Alright, I'll be staying here for a while.");
status = 4;
return;
}
if (mode == 1)
status++;
else
status--;
if (status == 0) {
cm.sendNext("Hey you, you look strong think you can defeat another one of your peers?");
} else if (status == 1) {
cm.sendNextPrev("Bring a partner and I'll warp you to the PVP Arena for a measly 1million mesos.")
} else if (status == 2) {
cm.sendYesNo("So what do you say want to go? Only the toughest of #bLeviathanStory#k come.");
} else if (status == 3) {
cm.gainMeso(-1000000)
cm.warp(MapIDiRpr0);
cm.dispose();
}
}
}