Hello rAthena.
I've got this freebies script which turns the player into 1st class jobs only. what I want to be modified is when he selected "Swordsman Class" he will be asked again to chose between "Lord Knight" and "Paladin". the same goes for other classes like Merchant Class . to "Blacksmith" or "Creator" and so on. lastly it gives base 99 and job 70 lvl. and the normal skills points for this job.
here's my script:
mes .@n$;
mes "Good Luck on your adventure Citizen of Midgard !";
mes "Which path do you wish to take?";
switch(select("^76EE00Swordman^000000:^76EE00Archer^000000:^76EE00Magician^000000:^76EE00Acolyte^000000:^76EE00Merchant^000000:^76EE00Thief^000000")) {
case 1://Swordsman
jobchange 4002;
getitem 12256,1;
break;
case 2://Archer
jobchange 4004;
getitem 12256,1;
break;
case 3://Mage
jobchange 4003;
getitem 12256,1;
break;
case 4://Acolyte
jobchange 4005;
getitem 12256,1;
break;
case 5://Merchant
jobchange 4006;
getitem 12256,1;
break;
case 6://Thief
jobchange 4007;
getitem 12256,1;
break;
}
getitem 12214,5; // Convex mirror 5pcs.
getitem 12210,5; // Bubble gum 5pcs.
getitem 12263,5; // Manual 5pcs.
set baselevel,99;
set joblevel,50;
skill 1,9,0;
set #New_Player,1;
next;
mes .@n$;
mes "Start your awesome journey today.";
mes "If you need help. Please search for GM Team. Thank You.";
cutin "",255;
close;
}
end;
BUMP !