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/custom/quests/thq/THQS_ChatingNPC.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/custom/quests/thq/THQS_ChatingNPC.txt')
-rw-r--r-- | npc/custom/quests/thq/THQS_ChatingNPC.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/custom/quests/thq/THQS_ChatingNPC.txt b/npc/custom/quests/thq/THQS_ChatingNPC.txt index 24e3f7410..2ea65e3c9 100644 --- a/npc/custom/quests/thq/THQS_ChatingNPC.txt +++ b/npc/custom/quests/thq/THQS_ChatingNPC.txt @@ -66,11 +66,11 @@ N_Member: mes "Well unless you are reading the code :)"; close; N_Chat1: - mes "Ahh welcome fellow Treasure Hunter "+strcharinfo(0)+"."; + mes "Ahh welcome fellow Treasure Hunter "+strcharinfo(PC_NAME)+"."; mes "Did you hear about that brave man that went into Glast Heim alone?! He must be crazy."; close; N_Chat2: - mes ""+strcharinfo(0)+" don't you have something better you could be doing? Like a quest."; + mes ""+strcharinfo(PC_NAME)+" don't you have something better you could be doing? Like a quest."; close; } //another usless member @@ -82,12 +82,12 @@ yuno_in01,25,162,6 script Female Wizard 2_F_MAGICMASTER,{ N_Member: set @temp,rand(2); if (@temp == 1) goto N_Chat; - mes "Ahh welcome fellow Treasure Hunter "+strcharinfo(0)+"."; + mes "Ahh welcome fellow Treasure Hunter "+strcharinfo(PC_NAME)+"."; mes "Did you hear about that goat man running around in the trees?"; mes " "; mes "Aperently his name is Baphomet and he has been runing around the Forest Maze out side of prontera for quite some time now."; close; N_Chat: - mes ""+strcharinfo(0)+" don't you have something better you could be doing? Like a quest."; + mes ""+strcharinfo(PC_NAME)+" don't you have something better you could be doing? Like a quest."; close; } |