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/quests/first_class/tu_sword.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/quests/first_class/tu_sword.txt')
-rw-r--r-- | npc/quests/first_class/tu_sword.txt | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/npc/quests/first_class/tu_sword.txt b/npc/quests/first_class/tu_sword.txt index 59e64fb89..fa4c0defb 100644 --- a/npc/quests/first_class/tu_sword.txt +++ b/npc/quests/first_class/tu_sword.txt @@ -2047,20 +2047,20 @@ geffen,154,143,3 script Dequ'ee 4_M_JOB_KNIGHT2,{ next; switch(select("Killer...", "Murderer...")) { case 1: - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "What happened"; mes "to the killer?"; next; switch(select("Who he is...", "Who is behind...")) { case 1: - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "Did you find"; mes "out who he is?"; mes "If you did..."; next; switch(select("Why are we...", "What are we...")) { case 1: - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "Why are sitting"; mes "around, doing nothing?!"; next; @@ -2076,7 +2076,7 @@ geffen,154,143,3 script Dequ'ee 4_M_JOB_KNIGHT2,{ mes "a response..."; close; case 2: - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "What are we"; mes "supposed to do now?"; next; @@ -2093,14 +2093,14 @@ geffen,154,143,3 script Dequ'ee 4_M_JOB_KNIGHT2,{ close; } case 2: - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "Did you figure out"; mes "who's behind all this?"; mes "If you did..."; next; switch(select("Why are we...", "What are we...")) { case 1: - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "Why are sitting"; mes "around, doing nothing?!"; next; @@ -2116,7 +2116,7 @@ geffen,154,143,3 script Dequ'ee 4_M_JOB_KNIGHT2,{ mes "a response..."; close; case 2: - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "What are we"; mes "supposed to do now?"; next; @@ -2135,20 +2135,20 @@ geffen,154,143,3 script Dequ'ee 4_M_JOB_KNIGHT2,{ } break; case 2: - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "What happened"; mes "to the murderer?"; next; switch(select("Who he is...", "Who is behind...")) { case 1: - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "Did you find"; mes "out who he is?"; mes "If you did..."; next; switch(select("Why are we...", "What are we...")) { case 1: - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "Why are sitting"; mes "around, doing nothing?!"; next; @@ -2167,7 +2167,7 @@ geffen,154,143,3 script Dequ'ee 4_M_JOB_KNIGHT2,{ mes "a response..."; close; case 2: - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "What are we"; mes "supposed to do now?"; next; @@ -2213,14 +2213,14 @@ geffen,154,143,3 script Dequ'ee 4_M_JOB_KNIGHT2,{ close; } case 2: - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "Did you figure out"; mes "who's behind all this?"; mes "If you did..."; next; switch(select("Why are we...", "What are we...")) { case 1: - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "Why are sitting"; mes "around, doing nothing?!"; next; @@ -2238,7 +2238,7 @@ geffen,154,143,3 script Dequ'ee 4_M_JOB_KNIGHT2,{ mes "a response..."; close; case 2: - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "What are we"; mes "supposed to do now?"; next; |