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/re/jobs/1-1/acolyte.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/re/jobs/1-1/acolyte.txt')
-rw-r--r-- | npc/re/jobs/1-1/acolyte.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/re/jobs/1-1/acolyte.txt b/npc/re/jobs/1-1/acolyte.txt index 76474aa05..dae96908b 100644 --- a/npc/re/jobs/1-1/acolyte.txt +++ b/npc/re/jobs/1-1/acolyte.txt @@ -147,7 +147,7 @@ prt_fild03,365,255,2 script Ascetic#aco 4_M_ORIENT02,{ mes "Oh...? You must be the one who aspires to become an Acolyte. I've already received news from the Sanctuary that you might be coming."; next; mes "[Father Rubalkabara]"; - mes "Now, your name was " + strcharinfo(0) + ", right? Excellent, thank you for visiting me."; + mes "Now, your name was " + strcharinfo(PC_NAME) + ", right? Excellent, thank you for visiting me."; next; mes "[Father Rubalkabara]"; mes "I believe you've been told much about Acolytes from Friar Mareusis. Plus, there's plenty of helpful people in the Prontera Sanctuary."; @@ -175,7 +175,7 @@ prt_fild03,365,255,2 script Ascetic#aco 4_M_ORIENT02,{ mes "Let's see..."; next; mes "[Father Rubalkabara]"; - mes "Your name is " + strcharinfo(0) + "?"; + mes "Your name is " + strcharinfo(PC_NAME) + "?"; mes "I don't think your name"; mes "is on my list. Hmmm..."; next; @@ -224,10 +224,10 @@ moc_fild07,41,355,4 script Ascetic#2aco 4_F_SISTER,{ mes "Ah, you must be one of the Acolyte applicants. I sincerely welcome you."; next; mes "[Mother Mathilda]"; - mes "What is your name? " + strcharinfo(0) + "? Let's see... Ah, you're on my list."; + mes "What is your name? " + strcharinfo(PC_NAME) + "? Let's see... Ah, you're on my list."; next; mes "[Mother Mathilda]"; - mes "I will send a message to the Sanctuary confirming that you, " + strcharinfo(0) + " visited me and completed your penance."; + mes "I will send a message to the Sanctuary confirming that you, " + strcharinfo(PC_NAME) + " visited me and completed your penance."; next; mes "[Mother Mathilda]"; mes "Please return to the Prontera Sanctuary and speak to the Priest in charge."; @@ -244,7 +244,7 @@ moc_fild07,41,355,4 script Ascetic#2aco 4_F_SISTER,{ next; mes "[Mother Mathilda]"; mes "Now, what is your name?"; - mes "" + strcharinfo(0) + "? Let's see..."; + mes "" + strcharinfo(PC_NAME) + "? Let's see..."; next; mes "[Mother Mathilda]"; mes "Hmm..."; @@ -301,10 +301,10 @@ prt_fild00,208,218,6 script Ascetic#3aco 4W_M_02,{ mes "So what's your name?"; next; mes "[Father Yosuke]"; - mes "" + strcharinfo(0) + ", huh?"; + mes "" + strcharinfo(PC_NAME) + ", huh?"; next; mes "[Father Yosuke]"; - mes "Okay. I'll send a message to the Sanctuary that you, " + strcharinfo(0) + ", came to visit me."; + mes "Okay. I'll send a message to the Sanctuary that you, " + strcharinfo(PC_NAME) + ", came to visit me."; next; mes "[Father Yosuke]"; mes "Now go back to the Santuary and finish becoming an Acolyte, kid."; @@ -321,7 +321,7 @@ prt_fild00,208,218,6 script Ascetic#3aco 4W_M_02,{ mes "Not bad at all, you've made it all the way here from Prontera. So what's your name, kid?"; next; mes "[Father Yosuke]"; - mes "" + strcharinfo(0) + ", huh? Why isn't your name on my list?"; + mes "" + strcharinfo(PC_NAME) + ", huh? Why isn't your name on my list?"; next; mes "[Father Yosuke]"; mes "You probably made a mistake. Go back to the Santuary, and check with the Bishop."; |