diff options
Diffstat (limited to 'npc/quests/skills/sage_skills.txt')
-rw-r--r-- | npc/quests/skills/sage_skills.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/quests/skills/sage_skills.txt b/npc/quests/skills/sage_skills.txt index c04577e51..420477f4f 100644 --- a/npc/quests/skills/sage_skills.txt +++ b/npc/quests/skills/sage_skills.txt @@ -178,7 +178,7 @@ yuno_in03,176,24,3 script Mischna 4_M_SAGE_C,{ mes "you would. Very well then,"; mes "I hope you adeptly use these"; mes "talents for the right purposes."; - mes "Farewell for now, "+strcharinfo(0)+"."; + mes "Farewell for now, "+strcharinfo(PC_NAME)+"."; close; } else if(SAG_SK == 0) { @@ -190,7 +190,7 @@ yuno_in03,176,24,3 script Mischna 4_M_SAGE_C,{ next; select("I seek new knowledge."); mes "[Mishuna]"; - mes "Ah, you must be "+strcharinfo(0)+"."; + mes "Ah, you must be "+strcharinfo(PC_NAME)+"."; mes "I've looked forward to meeting"; mes "you. In the noble pursuit of"; mes "knowledge, might I suggest"; @@ -266,7 +266,7 @@ yuno_in03,176,24,3 script Mischna 4_M_SAGE_C,{ close; } else if(SAG_SK == 1) { - if (countitem(Scorpion's_Tail) < 10 || countitem(Horn) < 7 || countitem(Colorful_Shell) < 12 || countitem(Snail's_Shell) < 10 || countitem(Scroll) < 4) { + if (countitem(Scorpions_Tail) < 10 || countitem(Horn) < 7 || countitem(Colorful_Shell) < 12 || countitem(Snails_Shell) < 10 || countitem(Scroll) < 4) { mes "[Mishuna]"; mes "Hm, you still haven't"; mes "gathered all of the materials"; @@ -333,16 +333,16 @@ yuno_in03,176,24,3 script Mischna 4_M_SAGE_C,{ mes "Creation skill by reviewing"; mes "your copy of Barmundt's scroll.^000000"; specialeffect2 EF_ABSORBSPIRITS; - delitem Scorpion's_Tail,10; // Scorpion_Tail + delitem Scorpions_Tail,10; delitem Horn,7; // Horn delitem Colorful_Shell,12; // Rainbow_Shell - delitem Snail's_Shell,10; // Snail's_Shell + delitem Snails_Shell,10; delitem Scroll,4; // Blank_Scroll SAG_SK = 2; skill "SA_CREATECON",1,0; next; mes "[Mishuna]"; - mes "Wow, "+strcharinfo(0)+"!"; + mes "Wow, "+strcharinfo(PC_NAME)+"!"; mes "You learned that skill"; mes "really quickly! No wonder"; mes "people say that you're one"; @@ -455,7 +455,7 @@ yuno_in03,176,24,3 script Mischna 4_M_SAGE_C,{ mes "skill. So be aware of that."; next; mes "[Mishuna]"; - mes "Now, "+strcharinfo(0)+","; + mes "Now, "+strcharinfo(PC_NAME)+","; mes "I'm going to cast a spell"; mes "that will help you memorize"; mes "the "+.@skill$[.@i]+" Elemental Change"; @@ -478,7 +478,7 @@ yuno_in03,176,24,3 script Mischna 4_M_SAGE_C,{ skill .@skill[.@i],1,0; next; mes "[Mishuna]"; - mes strcharinfo(0)+"..."; + mes strcharinfo(PC_NAME)+"..."; mes "I'm happy to say that you've"; mes "successfully memorized the"; mes .@skill$[.@i]+" Elemental Change skill."; |