diff options
author | masao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-05-29 12:08:59 +0000 |
---|---|---|
committer | masao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-05-29 12:08:59 +0000 |
commit | 13132344467b3f5e2c968bb7cfaec8eaf269280e (patch) | |
tree | f178af553d5c2048fe2aa5febf97870f68501923 /npc/quests/skills/archer_skills.txt | |
parent | 72cd35c33dee93b88969b579a0cc3327b2e7f2d6 (diff) | |
download | hercules-13132344467b3f5e2c968bb7cfaec8eaf269280e.tar.gz hercules-13132344467b3f5e2c968bb7cfaec8eaf269280e.tar.bz2 hercules-13132344467b3f5e2c968bb7cfaec8eaf269280e.tar.xz hercules-13132344467b3f5e2c968bb7cfaec8eaf269280e.zip |
- Added BaseClass explanation to script_commands.txt .
- Some updates to the custom folder / the old eAAC Scripts which are now in there.
- Fixed custom/warper.txt prontera location to not collide with Ash Vacuum warper. bugreport:5857
- Fixed Platinum Skill Quests properly checking for BaseClass now. bugreport:5853
- Fixed some typos in Ranger Job change Quest & Eden Paradise. bugreport:5858
- Fixed a typo in scripts_athena.conf . bugreport:5852
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16165 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/skills/archer_skills.txt')
-rw-r--r-- | npc/quests/skills/archer_skills.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/quests/skills/archer_skills.txt b/npc/quests/skills/archer_skills.txt index bc1fdf670..dd1233e56 100644 --- a/npc/quests/skills/archer_skills.txt +++ b/npc/quests/skills/archer_skills.txt @@ -15,7 +15,7 @@ //============================================================ moc_ruins,118,99,5 script Roberto 88,{ - if (BaseJob == Job_Archer) { + if (BaseClass == Job_Archer) { if (getskilllv("AC_MAKINGARROW") == 1) { mes "[Roberto]"; mes "Ooh, you're from my home town!"; @@ -33,13 +33,13 @@ moc_ruins,118,99,5 script Roberto 88,{ mes "Then byebye~"; close; } - else if ((BaseJob == Job_Archer) && (JobLevel >= 30)) { + else if ((BaseClass == Job_Archer) && (JobLevel >= 30)) { mes "[Roberto]"; mes "Eh!"; mes " "; mes "You are..."; next; - if ((countitem(907) > 19) && (countitem(921) > 6) && (countitem(906) > 40) && (countitem(1019) > 12) && (countitem(501) > 0) && (BaseJob == Job_Archer) && (JobLevel >= 30)) { + if ((countitem(907) > 19) && (countitem(921) > 6) && (countitem(906) > 40) && (countitem(1019) > 12) && (countitem(501) > 0) && (BaseClass == Job_Archer) && (JobLevel >= 30)) { mes "[Roberto]"; mes "You brought them!"; mes "Thank you very much."; @@ -147,7 +147,7 @@ moc_ruins,118,99,5 script Roberto 88,{ } payon,103,63,3 script Jason 88,3,3,{ - if (BaseJob == Job_Archer) { + if (BaseClass == Job_Archer) { if (getskilllv("AC_CHARGEARROW") == 1) { mes "[Jason]"; mes "Eh, we meet again."; |