diff options
Diffstat (limited to 'npc/jobs/2-2/crusader.txt')
-rw-r--r-- | npc/jobs/2-2/crusader.txt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/npc/jobs/2-2/crusader.txt b/npc/jobs/2-2/crusader.txt index 6d9327036..a3e897da1 100644 --- a/npc/jobs/2-2/crusader.txt +++ b/npc/jobs/2-2/crusader.txt @@ -56,15 +56,15 @@ prt_castle,45,169,5 script Senior Crusader 752,{ mes "Be advised to continue practicing yourself."; close; } - else if(Class != Job_Swordman) { - if(Class == Job_Crusader) { + else if(BaseJob != Job_Swordman) { + if(BaseJob == Job_Crusader) { mes "Go and train yourself in preparation for the holy war that is coming. Victory will be in the hands of those who are most ready to receive it."; next; mes "[Michael Halig]"; mes "Chaos will one day arise to challenge our principles of peace, justice and order. Until we have eliminated evil and created our ideal world, we must not cease training."; close; } - else if(Class == Job_Novice) { + else if(BaseJob == Job_Novice) { mes "We are Crusaders,"; mes "warriors preparing"; mes "to fight in the Holy War."; @@ -313,12 +313,12 @@ prt_castle,45,169,5 script Senior Crusader 752,{ //===================== Suffering Man: 2º Endurance Test =============================================== prt_castle,164,32,1 script Man in Anguish 733,{ mes "[Murnak Mijoul]"; - if(Class != Job_Swordman) { - if (Class == Job_Crusader) { + if(BaseJob != Job_Swordman) { + if (BaseJob == Job_Crusader) { mes "Don't linger around in a place like this and forge your own path towards discovering your own strengths. The day that we will join hands in battle will come soon."; close; } - else if(Class == Job_Novice) { + else if(BaseJob == Job_Novice) { mes "A Novice...?"; mes "So green, and yet,"; mes "so much potential."; @@ -445,8 +445,8 @@ prt_castle,164,32,1 script Man in Anguish 733,{ //===================== Gabriel Valentine: 3º Knowledge Test ================================= prt_church,95,127,3 script Crusader 745,{ mes "[Gabriel Valentine]"; - if(Class != Job_Swordman) { - if (Class == Job_Crusader) { + if(BaseJob != Job_Swordman) { + if (BaseJob == Job_Crusader) { mes "Welcome, fellow Crusader."; mes "How is your training"; mes "coming along?"; @@ -455,7 +455,7 @@ prt_church,95,127,3 script Crusader 745,{ mes "You must not forget to train everyday, and prepare for the day the Holy War will come upon us."; close; } - else if(Class == Job_Novice) { + else if(BaseJob == Job_Novice) { mes "Welcome, I am a Crusader."; mes "I am preparing for the"; mes "foretold Holy War"; @@ -789,8 +789,8 @@ C_Questions: prt_castle,35,151,5 script Patron Knight 751,{ mes "[Bliant Piyord]"; mes "Welcome."; - if(Class != Job_Swordman) { - if(Class == Job_Crusader) { + if(BaseJob != Job_Swordman) { + if(BaseJob == Job_Crusader) { mes "How goes"; mes "your training?"; next; @@ -798,7 +798,7 @@ prt_castle,35,151,5 script Patron Knight 751,{ mes "Develop your faith. From faith springs strength and discipline. Day after day, train yourself and become a great Crusader."; close; } - else if(Class == Job_Novice) { + else if(BaseJob == Job_Novice) { mes "We are Crusaders,"; mes "warriors of holiness preparing for the great Holy War that is to come."; next; |