sweetgum83/scripts/npc/9201082.js

27 lines
546 B
JavaScript
Raw Normal View History

2024-01-19 08:56:28 +00:00
var status;
function start() {
status = -1;
action(1, 0, 0);
}
function action(mode, type, selection) {
if (mode == -1) {
cm.dispose();
} else {
if (mode == 0 && type > 0) {
cm.dispose();
return;
}
if (mode == 1) {
status++;
} else {
status--;
}
if (status == 0) {
cm.sendOk("Have you ever come to know about the card game based on MapleStory, the MapleStory iTCG?");
cm.dispose();
}
}
}