Another fix to npc/cities/valkyrie.txt

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6202 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Playtester 2006-04-20 22:51:42 +00:00
parent 0df72a479d
commit 468e659055
2 changed files with 5 additions and 4 deletions

View File

@ -28,6 +28,7 @@ Nexon
Date Added Date Added
====== ======
04/20 04/20
* Fixed it again, better use constants [Playtester]
* Fixed Rebirth script not working for some Knights and Crusaders [Playtester] * Fixed Rebirth script not working for some Knights and Crusaders [Playtester]
- needs some testing! - needs some testing!
* Fixed Taekwon quest obviously never working [Playtester] * Fixed Taekwon quest obviously never working [Playtester]

View File

@ -226,8 +226,8 @@ L_CHANGE:
next; next;
set ADVJOB,Class+4001; //memo the target 3rd Job ID set ADVJOB,Class+4001; //memo the target 3rd Job ID
if(ADVJOB == 4014) set ADVJOB,4002; if(ADVJOB == Job_Lord_Knight2) set ADVJOB,Job_Lord_Knight;
if(ADVJOB == 4022) set ADVJOB,4015; if(ADVJOB == Job_Paladin2) set ADVJOB,Job_Paladin;
// callfunc "F_ToHigh",25,"Swordman High",31,"Lord Knight",144,145,146,0; // callfunc "F_ToHigh",25,"Swordman High",31,"Lord Knight",144,145,146,0;
// callfunc "F_ToHigh",28,"Acolyte High",32,"High Priest",156,0,0,0; // callfunc "F_ToHigh",28,"Acolyte High",32,"High Priest",156,0,0,0;
@ -327,8 +327,8 @@ L_SKILLPNTS:
function script F_ToHigh { function script F_ToHigh {
if(Upper == 2) return; //Baby Class - skip it if(Upper == 2) return; //Baby Class - skip it
if(ADVJOB == 4014) set ADVJOB,4002; if(ADVJOB == Job_Lord_Knight2) set ADVJOB,Job_Lord_Knight;
if(ADVJOB == 4022) set ADVJOB,4015; if(ADVJOB == Job_Paladin2) set ADVJOB,Job_Paladin;
set @fjob,ADVJOB; //alternative classes should pass, too set @fjob,ADVJOB; //alternative classes should pass, too
if(@fjob == Job_Stalker) set @fjob,Job_Assassin_Cross; if(@fjob == Job_Stalker) set @fjob,Job_Assassin_Cross;
if(@fjob == Job_Creator) set @fjob,Job_Whitesmith; if(@fjob == Job_Creator) set @fjob,Job_Whitesmith;