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/valentinesday_2012.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/valentinesday_2012.txt')
-rw-r--r-- | npc/events/valentinesday_2012.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/events/valentinesday_2012.txt b/npc/events/valentinesday_2012.txt index e0ef97b67..0b240180f 100644 --- a/npc/events/valentinesday_2012.txt +++ b/npc/events/valentinesday_2012.txt @@ -40,7 +40,7 @@ mosk_in,21,246,5 script Pinkamenia 1_F_LIBRARYGIRL,{ setarray .@SweetsID[0],538,558,539,573,559,560,12062,596,597,12414,12319; setarray .@SweetsCost[0],1,2,5,10,10,10,15,15,15,20,20; mes .@n$; - mes "Hello "+strcharinfo(0)+", do"; + mes "Hello "+strcharinfo(PC_NAME)+", do"; mes "you want to buy some items?"; mes "You'll have to give me Love"; mes "Flowers for them, of course!"; @@ -99,7 +99,7 @@ mosk_in,21,246,5 script Pinkamenia 1_F_LIBRARYGIRL,{ close; } else if (BaseLevel >= 45) { mes .@n$; - mes "Hello "+strcharinfo(0)+", it's"; + mes "Hello "+strcharinfo(PC_NAME)+", it's"; mes "Valentine's Day and we"; mes "love to deliver sweet"; mes "chocolates."; @@ -116,7 +116,7 @@ mosk_in,21,246,5 script Pinkamenia 1_F_LIBRARYGIRL,{ close; } mes .@n$; - mes "Hello "+strcharinfo(0)+"!"; + mes "Hello "+strcharinfo(PC_NAME)+"!"; close; OnInit: @@ -171,7 +171,7 @@ mosk_in,21,244,3 script Baker Extraordinaire 4_M_NOVELIST,{ } } else { mes .@n$; - mes "Hello, "+strcharinfo(0)+"!"; + mes "Hello, "+strcharinfo(PC_NAME)+"!"; close; } } |