diff options
author | MasterOfMuppets <MasterOfMuppets@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-14 12:55:47 +0000 |
---|---|---|
committer | MasterOfMuppets <MasterOfMuppets@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-14 12:55:47 +0000 |
commit | 03cc029170d3ccdc02864d691b8aecd9d14ae7cd (patch) | |
tree | f39995ef4177fd1b99f8aaf46a60544afc6d8e84 /npc/quests/Lvl4_weapon_quest.txt | |
parent | 6665c6ea96121c41dcdf3ada357509e10ef58415 (diff) | |
download | hercules-03cc029170d3ccdc02864d691b8aecd9d14ae7cd.tar.gz hercules-03cc029170d3ccdc02864d691b8aecd9d14ae7cd.tar.bz2 hercules-03cc029170d3ccdc02864d691b8aecd9d14ae7cd.tar.xz hercules-03cc029170d3ccdc02864d691b8aecd9d14ae7cd.zip |
Fixed some quests giving too much exp. Also fixed a major problem in the level 4 weapon quest, thanks to Qwadrat.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7159 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/Lvl4_weapon_quest.txt')
-rw-r--r-- | npc/quests/Lvl4_weapon_quest.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/quests/Lvl4_weapon_quest.txt b/npc/quests/Lvl4_weapon_quest.txt index ce2af0856..e2a674fc1 100644 --- a/npc/quests/Lvl4_weapon_quest.txt +++ b/npc/quests/Lvl4_weapon_quest.txt @@ -1293,7 +1293,7 @@ LV4_15: if (countitem($@LV4_Phlogopite) >= 30 && countitem($@LV4_Olivine) >= 30 && countitem($@LV4_Rose_Quartz) >= 30) goto LV4_15_POR;
if (countitem($@LV4_Phlogopite) >= 30 && countitem($@LV4_Olivine) >= 30) goto LV4_15_PO;
if (countitem($@LV4_Phlogopite) >= 30 && countitem($@LV4_Rose_Quartz) >= 30) goto LV4_15_PR;
- if (countitem($@LV4_Olivine) >= 30 && countitem($@LV4_Rose_Quartz) >= 30) goto LV4_15_PR;
+ if (countitem($@LV4_Olivine) >= 30 && countitem($@LV4_Rose_Quartz) >= 30) goto LV4_15_OR;
if (countitem($@LV4_Phlogopite) >= 30) goto LV4_15_P;
if (countitem($@LV4_Olivine) >= 30) goto LV4_15_O;
if (countitem($@LV4_Rose_Quartz) >= 30) goto LV4_15_R;
|