How are you gonna advance to 3110?,2310,502?
I mean, I am absolutely not trying to be mean to you at all, I just want to know how :P.
It's good though, I've got no idea how to do this :P
This is a discussion on Legend Job Advance within the Releases forums, part of the Java Based (Odin) category; Feel free to use this with my advance command . Alright so some of you may know that ChickenMS Source ...
Feel free to use this with my advance command.
Alright so some of you may know that ChickenMS Source was released and there's no character creation for legends because they were taken out. So I made this NPC which can make pop up at level 10 or so:
Add this to level up function in maplecharacter to make the npc pop up while you are a beginner and above level 7:PHP Code:/*
Legends Creation NPC
lordpeter of Ragezone
*/
function start() {
cm.sendSimple("Hello. Would you like to be a legend? You can ethier change your computer date to June 10th and have the option to create a legend in character creation (Better option) or You can do it to this character by Choosing which job: \r\n #L0#Cannoneer#l \r\n #L1#Mercedes#l \r\n #L2#DemonSlayer#l");
}
function action(m,t,s) {
if (m > 0) {
if (cm.getJobId() == 0 && cm.getLevel() <= 11) {
if (s == 0) {
cm.changeJobById(501);
cm.warp(120000000);
cm.sendOk("You are now a Cannoneer, Congratulations!");
} else if (s == 1) {
cm.changeJobById(2300);
cm.warp(101050000);
cm.sendOk("You are now a Mercedes, Congratulations!");
}else if (s == 2) {
cm.changeJobById(3100);
cm.warp(310010000);
cm.sendOk("You are now a DemonSlayer, Congratulations!");
}
} else {
cm.sendOk("You are not a beginner or you're above level 11, sorry.");
}
}else {
cm.sendOk("I guess you don't want to be an awesome legend!");
}
cm.dispose();
}
------ALTERNATE METHOD-------PHP Code:if (isBeginnerJob() || job.getId() == 0 & level > 9) {
NPCScriptManager.getInstance().start(getClient(), <npc id>, null, null);
}
You can set back the date on your computer to before June 10th and you will be allowed to create a Legend!
PLEASE LIKE IF YOU'RE GOING TO USE IT <3
Same thing but for Lithium: http://forum.ragezone.com/f427/legen...m-v111-862988/
Last edited by lordpeter; 18-07-12 at 11:10 PM.
Like if I helped you!
How are you gonna advance to 3110?,2310,502?
I mean, I am absolutely not trying to be mean to you at all, I just want to know how :P.
It's good though, I've got no idea how to do this :P
just make another npc its not that hard LOL
maplecharacter add a function for auto job advance if player reaches level 30 job > new job id and so on
I'm pretty sure you auto job advance anyway.
Take a look at this in the levelup function:
EDIT: Added another feature for the NPC (for it to popup while you're a beginner). Look at the original post.PHP Code:if (GameConstants.isMercedes(job.getId())) {
if (level >= 70 && job.getId() == 2310) {
changeJob(MapleJob.getById(2311));
} else if (level >= 120 && job.getId() == 2311) {//Or does it job advance twice? xd
changeJob(MapleJob.getById(2312));
}
}
Like if I helped you!