עשיתי Npc שאני רוצה שיאמר wow u did all the quest good! ואז יהיה next ויהיה רשום Ok lest door ואז שולח אוותך למפה ואתה מקבל 10k exp 10k mesos
אבל בnpc הוא לא אומר כלום רק שולח אותי למפה
אני יראה את הnpc
בבקשה תסדרו לי בבקשה אני ממש חייב את זהקוד PHP:var status = 0;
function start() {
status = -1;
action(1, 0, 0);
}
function action(mode, type, selection) {
if (status == 6 || mode == -1) {
cm.dispose();
} else {
if (status == 1) {
status = 2;
return;
}
if (mode == 1)
status++;
else
status--;
if (status == 1) {
cm.sendNext("wow u here u did alll the quest good!");
} else if (status == 2) {
cm.sendNextPrev("Ok now the door lest good luk!");
cm.gainMeso(100000);
cm.gainExp(100000);
cm.warp(809050002);
cm.reloadChar();
cm.dispose();
}
}




ספוילר: 