Ey people,
This only works for v62 and OdinMS
Go to the 2030000 Script and paste this :
PHP Code:
var status = 0;
function start() {
status = -1;
action(1, 0, 0);
}
function action(mode, type, selection) {
if (mode == -1) {
cm.dispose();
} else {
if (status >= 2 && mode == 0) {
cm.sendOk("Alright, see you next time you newb.");
cm.dispose();
return;
}
if (mode == 1)
status++;
else
status--;
if (status == 0) {
cm.sendNext("Wanna go to the Dungeon!");
} else if (status == 1) {
cm.sendNextPrev("Wanna go to the Dungeon?")
} else if (status == 2) {
if (cm.getMeso() < 0) {
cm.sendOk("You do not have enough mesos.")
cm.dispose();
} else {
cm.sendYesNo("Cya Soonish");
}
} else if (status == 3) {
cm.warp(211040500, 0);
cm.dispose();
}
}
}
Enjoy!