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/christmas_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/christmas_2008.txt')
-rw-r--r-- | npc/events/christmas_2008.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/events/christmas_2008.txt b/npc/events/christmas_2008.txt index 64f3efa93..6d8621545 100644 --- a/npc/events/christmas_2008.txt +++ b/npc/events/christmas_2008.txt @@ -159,7 +159,7 @@ prontera,226,306,4 script Caroller#iROxmas08 1_F_PRIEST,{ next; emotion e_heh; delitem 6092,6; - getnameditem 12354,"+strcharinfo(0)+"; + getnameditem 12354,"+strcharinfo(PC_NAME)+"; mes "[Caroller]"; mes "Let's care about others around you on this Christmas season!"; close; @@ -213,7 +213,7 @@ prontera,226,306,4 script Caroller#iROxmas08 1_F_PRIEST,{ mes "[Caroller]"; mes "And just stay there, every Christmas, for your whole life?"; next; - mes "["+strcharinfo(0)+"]"; + mes "["+strcharinfo(PC_NAME)+"]"; mes "What? What do you mean?"; next; mes "[Caroller]"; @@ -441,7 +441,7 @@ prontera,226,306,4 script Caroller#iROxmas08 1_F_PRIEST,{ next; emotion e_ok; getitem 2784,1; - getnameditem 12354,"+strcharinfo(0)+"; + getnameditem 12354,"+strcharinfo(PC_NAME)+"; delitem 1019,10; delitem 1005,1; delitem 7312,1; @@ -577,21 +577,21 @@ prontera,226,306,4 script Caroller#iROxmas08 1_F_PRIEST,{ next; switch(select("Poring", "Angeling", "Ghostring")) { case 1: - mes "["+strcharinfo(0)+"]"; + mes "["+strcharinfo(PC_NAME)+"]"; mes "Um...I choose Poring!"; .@SantaCardP = 1; next; break; case 2: - mes "["+strcharinfo(0)+"]"; + mes "["+strcharinfo(PC_NAME)+"]"; mes "Um...I choose Angeling!"; .@SantaCardP = 2; next; break; case 3: - mes "["+strcharinfo(0)+"]"; + mes "["+strcharinfo(PC_NAME)+"]"; mes "Um...I choose Ghostring!"; .@SantaCardP = 3; next; @@ -634,7 +634,7 @@ prontera,226,306,4 script Caroller#iROxmas08 1_F_PRIEST,{ } } if (.@SantaCardWins < 3) { - mes "["+strcharinfo(0)+"]"; + mes "["+strcharinfo(PC_NAME)+"]"; mes "This is just luck."; mes "Let me try again!!"; next; |