Im use moopledev, and I rebirth system, after player click on npc to rb
he up to lvl 10
Not receive a message that AUTO JOB In lvl 10
and when hes did 2nd job have prob with skills [ Lacking Lvl 1 skills ] .
Printable View
Im use moopledev, and I rebirth system, after player click on npc to rb
he up to lvl 10
Not receive a message that AUTO JOB In lvl 10
and when hes did 2nd job have prob with skills [ Lacking Lvl 1 skills ] .
Be more clear please o.o
Show us the npc script
that.PHP Code:/*
@ Author : Snow
@
@ NPC = NAME
@ Map = MAP
@ NPC MapId = MAPID
@ Function = Rebirth Player
@
*/
function start() {
status = -1;
action(1, 0, 0);
}
function action(mode, type, selection) {
if (mode == -1)
cm.dispose();
else {
if (mode == 1)
status++;
else
status--;
if (status == 0 && mode == 1) {
cm.sendSimple("Welcome, great hero. You have been through a long and challenging road. I can use my magic to make you even more powerful. You will become a level 1 Beginner again, but you will keep your stats the same and all the Skill in you Hot Keys. Do you wish to be reborn? #b(Note: Please Make Sure you Have Room for all your Equipment in your Inventory. Also Make Sure you use all your SP. As it won't Be useable in your next Job. )#k What class would you like to start over with?\r\n#L1##bBeginner#l\r\n#L2#A Knight of Cygnus#l\r\n#L3#Aran#l");}
else if ((selection == 1) && (cm.getLevel() >= 200)){
cm.getPlayer().doReborn();
cm.sendNext("Haha, Just kidding you can't change jobs....you are level 1 now tho.");
cm.dispose();
}
else if ((selection == 2) && (cm.getLevel() >= 200)){
cm.getPlayer().doCygnusRebirth();
cm.sendNext("Haha, Just kidding you can't change jobs....you are level 1 now tho.");
cm.dispose();
}
else if ((selection == 3) && (cm.getLevel() >= 200)){
cm.getPlayer().doAranRebirth();
cm.sendNext("Haha, Just kidding you can't change jobs....you are level 1 now tho.");
cm.dispose();
}
else{
cm.sendNext("You are not the proper level NOOB!");
cm.dispose();
}
}
}
and if can in the script check the AP too.
So it does a rebirth then they become level 1 and when they level up to level 10, it doesn't autojob?
Show me your levelup method?
Maplecharacter
Posted via Mobile Device
You get [ Lacking Lvl 1 skills ] when adding SP to a job when you haven't added enough to the older job.