/* NPC Name: Maple Administrator */ var status = -1; function action(mode, type, selection) { if (mode == 1) { status++; } else { if (status == 0) { cm.sendOk("Enjoy your trip"); cm.safeDispose(); } status--; } if (status == 1) { cm.sendYesNo("Would you like to skip the tutorials and head straight to Lith Harbor?"); } else if (status == 2) { cm.warp(104000000); cm.dispose(); } }