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/events/MemorialDay_2008.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/events/MemorialDay_2008.txt')
-rw-r--r-- | npc/events/MemorialDay_2008.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/events/MemorialDay_2008.txt b/npc/events/MemorialDay_2008.txt index cf4e54430..41ff5b610 100644 --- a/npc/events/MemorialDay_2008.txt +++ b/npc/events/MemorialDay_2008.txt @@ -51,7 +51,7 @@ prontera,182,214,4 script Lauds#Memorial 1_M_MERCHANT,{ mes "[Mad Sago Lauds]"; mes "Where is your towel!?"; next; - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "My what?"; next; mes "[Mad Sago Lauds]"; @@ -107,7 +107,7 @@ prontera,182,214,4 script Lauds#Memorial 1_M_MERCHANT,{ delitem 1059,30; delitem 914,20; getitem 6025,1; - getnameditem 6025," + strcharinfo(0) + "; + getnameditem 6025," + strcharinfo(PC_NAME) + "; Memorial08 = 2; close; } @@ -200,11 +200,11 @@ prontera,182,214,4 script Lauds#Memorial 1_M_MERCHANT,{ //== Memorial Plaque ======================================= prontera,153,286,4 script Memorial Plaque#Memorial 4_BOARD3,{ if (Memorial08 < 8) { - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "- It's a dusty old plaque.-"; close; } else if (Memorial08 == 8) { - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "- It's a dusty old plaque.-"; mes "'This must be what Lauds was talking about.'"; mes "'Let's dust it off with the towel.'"; @@ -339,7 +339,7 @@ prontera,150,270,4 script Grast#Memorial 4_M_HUMERCHANT,{ next; mes "[Grast]"; mes "If I provide you all materials, however, I won't have to thank you for your service."; - mes "It's your call, " + strcharinfo(0) + "."; + mes "It's your call, " + strcharinfo(PC_NAME) + "."; next; if (select("I'll gather the rest.", "Give me the materials.") == 2) { goto L_GiveUp; @@ -357,7 +357,7 @@ prontera,150,270,4 script Grast#Memorial 4_M_HUMERCHANT,{ mes "[Grast]"; mes "You see, I have two different gifts in my each hand."; mes "A best thing would be giving you both of them, but..."; - mes "How do you like to test your luck, " + strcharinfo(0) + "?"; + mes "How do you like to test your luck, " + strcharinfo(PC_NAME) + "?"; next; mes "[Grast]"; mes "Okay, which hand would you like to pick?"; |