
נכתב במקור על ידי
tHeAnToN
ריפאק:"יחודי" מבוסס על RaverStory
NPC שיעה רסיט לשחקון
ויביא לו
5K NX
2M MESOS
וחפץ
ID: ID של החפץ סימו 123 שאני ידעה מה לשנות
בבקשה:
קוד PHP:
//Reborn NPC Created by Warden from the iAtaf NPC creation Factory
var status = 0;
function start() {
cm.sendSimple("Do you want to #gRebirth#k??\r\n#L0#Yes#l\n#L1#No#l");
}
function action(mode, type, selection) {
if (selection==0){
if(cm.getLevel() < 200){
cm.sendOk("You have to be level 200 or higher in order to do a #bRebirth#k.");
cm.dispose();
}
else{
cm.doReborn();
cm.modifyNx(5000);
cm.gainItem(123);
cm.gainMeso(2000000);
cm.dispose();
}
}
}

נכתב במקור על ידי
avihu889
ריפאק:raverstory
npc-שיעשה rebirth לשחקן
ועם אפשר שיביא גם כן 1mil
id-אני ישים על מי שאני ירצה
בבקשה:
קוד PHP:
//Reborn NPC Created by Warden from the iAtaf NPC creation Factory
var status = 0;
function start() {
cm.sendSimple("Do you want to #gRebirth#k??\r\n#L0#Yes#l\n#L1#No#l");
}
function action(mode, type, selection) {
if (selection==0){
if(cm.getLevel() < 200){
cm.sendOk("You have to be level 200 or higher in order to do a #bRebirth#k.");
cm.dispose();
}
else{
cm.doReborn();
cm.gainMeso(1000000);
cm.dispose();
}
}
}