Files
sweetgum-server/scripts/npc/9201068.js
ronancpl 7f178a3d80 Multi World NPCs + patch on Player interactions
Made NPCs now work properly on multiworld system. Solved multiple issues
regarding Player Shops not giving back items properly when owner exits.
Added restriction on changing channels at FM rooms, preventing shop
owner entering Cash Shop.
2017-05-28 22:11:39 -03:00

54 lines
2.0 KiB
JavaScript

status = -1;
close = false;
oldSelection = -1;
var em;
function start() {
em = cm.getEventManager("Subway");
var text = "Here's the ticket reader.";
var hasTicket = false;
if (cm.haveItem(4031713) && cm.getPlayer().getMapId() == 600010001){
text += "\r\n#b#L0##t4031713#";
hasTicket = true;
}
if(!hasTicket){
cm.sendOk("It seems you don't have a ticket! You can buy one from Bell.");
cm.dispose();
}else
cm.sendSimple(text);
}
function action(mode, type, selection) {
status++;
if (mode != 1) {
if(mode == 0)
cm.sendNext("You must have some business to take care of here, right?");
cm.dispose();
return;
}
if (status == 0) {
if(selection == 0){
if (em.getProperty("entry") == "true")
cm.sendYesNo("It looks like there's plenty of room for this ride. Please have your ticket ready so I can let you in. The ride will be long, but you'll get to your destination just fine. What do you think? Do you wants to get on this ride?");
else{
cm.sendNext("We will begin boarding 1 minute before the takeoff. Please be patient and wait for a few minutes. Be aware that the subway will take off right on time, and we stop receiving tickets 1 minute before that, so please make sure to be here on time.");
cm.dispose();
}
}
oldSelection = selection;
}else if(status == 1){
if (oldSelection == 0 && cm.haveItem(4031713)) {
if(em.getProperty("entry") == "true") {
cm.gainItem(4031713, -1);
cm.warp(600010002);
}
else {
cm.sendNext("We will begin boarding 1 minute before the takeoff. Please be patient and wait for a few minutes. Be aware that the subway will take off right on time, and we stop receiving tickets 1 minute before that, so please make sure to be here on time.");
}
} else {
cm.sendNext("Sorry, you need a ticket to enter!");
}
cm.dispose();
}
}