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/jobs/2-2/alchemist.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/jobs/2-2/alchemist.txt')
-rw-r--r-- | npc/jobs/2-2/alchemist.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/jobs/2-2/alchemist.txt b/npc/jobs/2-2/alchemist.txt index 3de0af508..d5edd8bf2 100644 --- a/npc/jobs/2-2/alchemist.txt +++ b/npc/jobs/2-2/alchemist.txt @@ -57,7 +57,7 @@ alde_alche,27,185,5 script Alchemist Guildsman#am 4_F_ALCHE,{ } if (BaseJob != Job_Merchant) { if (BaseJob == Job_Alchemist) { - mesf("Welcome, %s.", strcharinfo(0)); + mesf("Welcome, %s.", strcharinfo(PC_NAME)); mes "The Alchemist Union\r" "is busy today, like always."; next; @@ -199,7 +199,7 @@ alde_alche,27,185,5 script Alchemist Guildsman#am 4_F_ALCHE,{ mes "Please sign\r" "the application."; next; - select(strcharinfo(0)); + select(strcharinfo(PC_NAME)); mes "[Parmy Gianino]"; mes "Good, good. Now, if you have\r" "the Zeny for your application fee ready, I will tell you which items you will " @@ -218,7 +218,7 @@ alde_alche,27,185,5 script Alchemist Guildsman#am 4_F_ALCHE,{ mes "Let's see."; mesf("%s\r" "needs to bring...", - strcharinfo(0)); + strcharinfo(PC_NAME)); switch(rand(1,3)) { case 1: ALCH_Q = 1; |