אופס..
בטעות שמתי את ה{ במקום לא טוב..
קוד:
/*
* By SapiRxD
*/
var status = 0;
function start() {
status = -1;
action(1, 0, 0);
}
function action(mode, type, selection) {
if (mode == -1) {
cm.dispose();
} else {
if (status == 1 && mode == 0 ) {
cm.dispose();
return;
}
if (mode == 1)
status++;
else
status--;
if (status == 0) {
cm.warp(260010401);
cm.sendYesNo("#kHey I Can Spawn For You The Boss Who Take Ur Dad.\r\nDo you have 10 #v4000038#?");
}
else if (status == 1){
if(cm.haveItem(4000038, 10)){
if(cm.getLevel() >= 120){
cm.sendYesNo("Are you sure you want to spawn this boss?");
}
else{
cm.sendOk("You have to be atleast level #b120#k to spawn this boss!");
cm.warp(910000000);
cm.dispose();
return;
}
} else{
cm.sendOk("You dont have 10 #v4000038#.");
cm.warp(910000000);
cm.dispose();
return;
}
}else if (status == 2){
cm.gainItem(4000038, -10);
cm.spawnMonster(9500333, 3000000, 100000000, 1, 999999, 0, 0, 1, 66, 55);
cm.dispose();
}
}
}