source
Source for my MapleSolaxiaV2 (v83 MapleStory).
This commit is contained in:
43
scripts/npc/world0/1052006.js
Normal file
43
scripts/npc/world0/1052006.js
Normal file
@@ -0,0 +1,43 @@
|
||||
var status = -1;
|
||||
var zones = 0;
|
||||
var cost = 1000;
|
||||
|
||||
function start() {
|
||||
cm.sendNext("Hi, I'm the ticket salesman.");
|
||||
if (cm.isQuestStarted(2055) || cm.isQuestCompleted(2055))
|
||||
zones++;
|
||||
if (cm.isQuestStarted(2056) || cm.isQuestCompleted(2056))
|
||||
zones++;
|
||||
if (cm.isQuestStarted(2057) || cm.isQuestCompleted(2057))
|
||||
zones++;
|
||||
}
|
||||
|
||||
function action(mode, type, selection) {
|
||||
status++;
|
||||
if (mode != 1){
|
||||
cm.dispose();
|
||||
return;
|
||||
}
|
||||
if (status == 0) {
|
||||
if (zones == 0)
|
||||
cm.dispose();
|
||||
else {
|
||||
var selStr = "Which ticket would you like?#b";
|
||||
for (var i = 0; i < zones; i++)
|
||||
selStr += "\r\n#L" + i + "#Construction site B" + (i+1) + " (" + cost + " mesos)#l";
|
||||
cm.sendSimple(selStr);
|
||||
}
|
||||
} else if (status == 1) {
|
||||
if (cm.getMeso() < cost)
|
||||
cm.sendOk("You do not have enough mesos.");
|
||||
else {
|
||||
cm.gainMeso(-cost);
|
||||
if(selection < 0 || selection > zones) {
|
||||
cm.getClient().disconnect(false, false);
|
||||
return;
|
||||
}
|
||||
cm.gainItem(4031036 + selection,1);
|
||||
}
|
||||
cm.dispose();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user