This NPC will ask the player if s/he wants a godly player pack, and scam them.
Hope it works.:D:Code:n gy/*
Scammer NPC
By TofuBob @ chunkytofubobms.co.cc
*/
function start() {
cm.sendSimple ("Hey! Want a godly player pack?\r\n#r#L0##eGM Player Pack - 10,000 Mesos#n#l\r\n#k#L1##eSuperGM Player Pack - 50,000 Mesos#n#l#k")
}
function action(mode, type, selection) {
cm.dispose();
switch(selection){
case 0:
if(cm.getMeso() >= 10000){
cm.sendOk("Ha! I have just robbed you of your money!#k");
cm.gainMeso(-10000);
cm.dispose();
}else{
cm.sendOk("Hmm...Are you sure you have enough mesos?");
cm.dispose();
}
break;
case 1:
if(cm.getMeso() >= 50000) {
cm.sendOk("Ha! I have just robbed you of your money!#k");
cm.gainMeso(-50000);
cm.dispose();
}

