diff options
author | Asheraf <acheraf1998@gmail.com> | 2016-08-29 17:40:13 +0100 |
---|---|---|
committer | hemagx <ibrahem.h.basyone@gmail.com> | 2016-09-02 04:56:00 +0200 |
commit | 0f1d0507eb95cf07ce7eb66d89ad9853938612e6 (patch) | |
tree | 57780b1ecc7c5ae125be1c89406f8db1e00a581b /npc/jobs/2-2/crusader.txt | |
parent | 0f1d03f505fdc03533122db8ba19fa55f64f11b7 (diff) | |
download | hercules-0f1d0507eb95cf07ce7eb66d89ad9853938612e6.tar.gz hercules-0f1d0507eb95cf07ce7eb66d89ad9853938612e6.tar.bz2 hercules-0f1d0507eb95cf07ce7eb66d89ad9853938612e6.tar.xz hercules-0f1d0507eb95cf07ce7eb66d89ad9853938612e6.zip |
change *strcharinfo to use constants
Diffstat (limited to 'npc/jobs/2-2/crusader.txt')
-rw-r--r-- | npc/jobs/2-2/crusader.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/jobs/2-2/crusader.txt b/npc/jobs/2-2/crusader.txt index d3afbd9d1..1857539a5 100644 --- a/npc/jobs/2-2/crusader.txt +++ b/npc/jobs/2-2/crusader.txt @@ -145,7 +145,7 @@ prt_castle,45,169,5 script Senior Crusader 4_M_CRU_OLD,{ next; mes "[Michael Halig]"; mes "Your name is"; - mes "" + strcharinfo(0) + "...?"; + mes "" + strcharinfo(PC_NAME) + "...?"; mes "Let's see..."; next; if (countitem(Patriotism_Marks) && countitem(Sacred_Marks)) { @@ -368,7 +368,7 @@ prt_castle,164,32,1 script Man in Anguish 4_M_JOB_KNIGHT1,{ next; mes "[Murnak Mijoul]"; mes "Your name is"; - mes "" + strcharinfo(0) + "...?"; + mes "" + strcharinfo(PC_NAME) + "...?"; mes "Let me take"; mes "a look at your face."; next; @@ -732,7 +732,7 @@ prt_church,95,127,3 script Crusader 4_F_CRU,{ mes "look at your results."; next; mes "[Gabriel Valentine]"; - mes " " + strcharinfo(0) + "'s score"; + mes " " + strcharinfo(PC_NAME) + "'s score"; mes "is " + .@cru_t + " points..."; if(.@cru_t == 100) { CRUS_Q = 8; @@ -1384,7 +1384,7 @@ OnInit: end; OnTouch: - monster "job_cru",168,150,strcharinfo(0),1036,1,"Monster Summon#cr4-a::OnDead"; + monster "job_cru",168,150,strcharinfo(PC_NAME),1036,1,"Monster Summon#cr4-a::OnDead"; donpcevent "Monster Summon#cr4::OnEnd"; end; |