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/halloween_2006.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/halloween_2006.txt')
-rw-r--r-- | npc/events/halloween_2006.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/events/halloween_2006.txt b/npc/events/halloween_2006.txt index 8c7b4dcbf..101434be3 100644 --- a/npc/events/halloween_2006.txt +++ b/npc/events/halloween_2006.txt @@ -80,7 +80,7 @@ prontera,164,69,3 script Cool Devi#06_hw 4_DEVIRUCHI,{ mes "I just can guess what he will say next. So what do you say?"; next; if (select("What will he say?", "I also know about it.") == 1) { - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "What will he say?"; next; mes "[Cool Devi]"; @@ -96,7 +96,7 @@ prontera,164,69,3 script Cool Devi#06_hw 4_DEVIRUCHI,{ mes "Why don't you give him back the 'Pumpkin Mojo'."; mes "Don't worry he will compensate you."; next; - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "Compensate?With what?"; next; mes "[Cool Devi]"; @@ -235,7 +235,7 @@ prontera,164,69,3 script Cool Devi#06_hw 4_DEVIRUCHI,{ mes "Why don't you give him back the 'Pumpkin Mojo'."; mes "Don't worry he will compensate you."; next; - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "Compensate? With what?"; next; mes "[Cool Devi]"; @@ -296,7 +296,7 @@ geffen,145,132,3 script Hoirin#06_hw 4_F_NOVICE,{ mes "You'll get addicted to it."; mes "Don't be surprised after trying it."; next; - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "......................"; mes "You seem to be such a passionate person."; mes "So, what's the ingredient anyway.?"; @@ -470,7 +470,7 @@ nif_in,19,32,3 script Deviruchi#06_hw 4_DEVIRUCHI,{ mes "[Deviruchi]"; mes "Says she..Huh?!!Me?!!"; next; - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "Poor Devi~"; mes "You shouldn't have lied~"; mes "Wish you a luck."; @@ -679,7 +679,7 @@ nif_fild01,167,113,3 script Masta's chicken#06_hw01 4_NFCOCK,{ end; } else { - mes "[" + strcharinfo(0) + "]"; + mes "[" + strcharinfo(PC_NAME) + "]"; mes "Hm...I must have misspelled."; close; } |