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-1/knight.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-1/knight.txt')
-rw-r--r-- | npc/jobs/2-1/knight.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/jobs/2-1/knight.txt b/npc/jobs/2-1/knight.txt index 6914065dc..b5afe995d 100644 --- a/npc/jobs/2-1/knight.txt +++ b/npc/jobs/2-1/knight.txt @@ -138,7 +138,7 @@ prt_in,88,101,4 script Chivalry Captain#knt 1_M_KNIGHTMASTER,{ setquest 9000; mes "Let me see..."; mes "Your name is"; - mes strcharinfo(0) + "..."; + mes strcharinfo(PC_NAME) + "..."; mes "Is that right?"; next; mes "[Captain Herman]"; @@ -180,7 +180,7 @@ prt_in,88,101,4 script Chivalry Captain#knt 1_M_KNIGHTMASTER,{ } else if (KNIGHT_Q == 1) { mes "Mmm?"; - mes strcharinfo(0) + ","; + mes strcharinfo(PC_NAME) + ","; mes "what can I do for you?"; mes "Ah, you don't know"; mes "who to visit?"; @@ -450,7 +450,7 @@ prt_in,88,101,4 script Chivalry Captain#knt 1_M_KNIGHTMASTER,{ } L_Mission: mes "Mmm?"; - mes "Swordman " + strcharinfo(0) + "."; + mes "Swordman " + strcharinfo(PC_NAME) + "."; mes "How are the tests?"; if (getarg(0)) { mes "Ah~ You do not know"; @@ -529,7 +529,7 @@ prt_in,75,107,4 script Sir Andrew#knt 1_M_YOUNGKNIGHT,{ mes "You wish"; mes "to become a Knight."; mes "Your name is"; - mes strcharinfo(0) + ","; + mes strcharinfo(PC_NAME) + ","; mes "correct?"; next; mes "[Sir Andrew]"; @@ -755,7 +755,7 @@ prt_in,71,91,0 script Sir Siracuse#knt 1_M_YOUNGKNIGHT,{ mes "[Sir Siracuse]"; mes "Let's see..."; mes "Your name was"; - mes strcharinfo(0) + "."; + mes strcharinfo(PC_NAME) + "."; next; mes "[Sir Siracuse]"; mes "But, before you come to me, you must visit the others. The way"; |