NPC שמביא לך כמה NX שבא לך
קוד PHP:
var status = 0;
var text;
function start() {
status = -1;
action(1, 0, 0);
}
function action(mode, type, selection) {
if (mode == -1) {
cm.dispose();
} else {
if (mode == 0) {
cm.dispose();
return;
}
if (mode == 1)
status++;
else
status--;
if (status == 0) {
cm.sendGetText("Hello #h # i am the Free NX
Npc and i can give nx for free just write how much
you want");
}else if (status == 1){
text = cm.getText();
cm.sendOk("Enjoy you have gained "+text+" Nx");
cm.modifyNX(text, 0);
cm.dispose();
}
}
}