git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6675 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Lance 2006-05-21 04:57:02 +00:00
parent e174a54ca3
commit 741f06722c

View File

@ -33,7 +33,33 @@ prontera.gat,153,193,6 script Job Master 123,{
skill 143,1,0; skill 143,1,0;
mes "Welcome, please select the job you wish to change into"; mes "Welcome, please select the job you wish to change into";
if(lastJob != 0 && Class == Job_Novice_High){ if(lastJob != 0 && Class == Job_Novice_High){
set @target_job, BaseClass + 4001; switch(lastJob){
case Job_Knight:
case Job_Crusader:
set @target_job, Job_Swordman_High;
break;
case Job_Monk:
case Job_Priest:
set @target_job, Job_Acolyte_High;
break;
case Job_Alchem:
case Job_Blacksmith:
set @target_job, Job_Merchant_High;
break;
case Job_Rogue:
case Job_Assassin:
set @target_job, Job_Thief_High;
break;
case Job_Wizard:
case Job_Sage:
set @target_job, Job_Mage_High;
break;
case Job_Hunter:
case Job_Bard:
case Job_Dancer:
set @target_job, Job_Archer_High;
break;
}
} else { } else {
switch(select("Swordsman","Mage","Archer","Acolyte","Merchant","Thief", switch(select("Swordsman","Mage","Archer","Acolyte","Merchant","Thief",
"Super Novice","Taekwon","Gunslinger","Ninja")){ "Super Novice","Taekwon","Gunslinger","Ninja")){