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/other/arena/arena_room.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/other/arena/arena_room.txt')
-rw-r--r-- | npc/other/arena/arena_room.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/other/arena/arena_room.txt b/npc/other/arena/arena_room.txt index 83a8b4de9..b8806e112 100644 --- a/npc/other/arena/arena_room.txt +++ b/npc/other/arena/arena_room.txt @@ -73,10 +73,10 @@ arena_room,94,93,5 script Vendigos 4W_M_01,{ break; case 3: mes "[Vendigos]"; - mes "Let me check "+strcharinfo(0)+"'s current arena points."; + mes "Let me check "+strcharinfo(PC_NAME)+"'s current arena points."; next; mes "[Vendigos]"; - mes ""+strcharinfo(0)+" has total ^3131FF"+arena_point+"^000000 points."; + mes ""+strcharinfo(PC_NAME)+" has total ^3131FF"+arena_point+"^000000 points."; next; mes "[Vendigos]"; mes "If you wish to know how to use arena points, please refer to the 2nd menu ^3131FF'About Arena Points'^000000."; @@ -728,10 +728,10 @@ prt_are_in,98,14,3 script Givu#arena 4_F_JOB_KNIGHT,{ } case 4: mes "[Givu]"; - mes "Let me check "+strcharinfo(0)+"'s current arena points."; + mes "Let me check "+strcharinfo(PC_NAME)+"'s current arena points."; next; mes "[Givu]"; - mes ""+strcharinfo(0)+" has total ^3131FF"+arena_point+"^000000 points."; + mes ""+strcharinfo(PC_NAME)+" has total ^3131FF"+arena_point+"^000000 points."; close; } } |