diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-19 15:08:03 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-19 15:08:03 +0000 |
commit | 03e84de8f771a6aaef956531adbaed28b6f4fce6 (patch) | |
tree | 85a8586b4837392581023302b73fd9f611947b26 /npc/quests | |
parent | 380cf32eb6eab01d1d6786f9a1255a68a5f9aa1a (diff) | |
download | hercules-03e84de8f771a6aaef956531adbaed28b6f4fce6.tar.gz hercules-03e84de8f771a6aaef956531adbaed28b6f4fce6.tar.bz2 hercules-03e84de8f771a6aaef956531adbaed28b6f4fce6.tar.xz hercules-03e84de8f771a6aaef956531adbaed28b6f4fce6.zip |
* Fixed problems with third classes/new mounts in official "Renters" script, as per bugreport:6046 and bugreport:5924 (merchants\renters.txt)
* Small bug in El Dicastes quests fixed (quests\quests_dicastes.txt)
* Fixed two warps in the custom warper (custom\warper.txt)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16319 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests')
-rw-r--r-- | npc/quests/quests_dicastes.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/npc/quests/quests_dicastes.txt b/npc/quests/quests_dicastes.txt index f63769aba..2d1132cff 100644 --- a/npc/quests/quests_dicastes.txt +++ b/npc/quests/quests_dicastes.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= Gennosuke Kouga //===== Current Version: ===================================== -//= 1.2 +//= 1.2a //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= @@ -15,6 +15,7 @@ //= 1.0 First version. 14107 lines, oh, the pain... //= 1.1 Standardized and reduced by 7000+ lines. [Euphy] //= 1.2 Further optimization. [Euphy] +//= 1.2a Small bug fix. [Euphy] //============================================================ // Entrance @@ -6507,10 +6508,10 @@ dic_in01,353,37,5 script Kareka#pa0829 460,{ mes "Please come back again"; close; } mes "[Kareka]"; - if (EP13Enchant2 > 1) { + if (EP13Enchant2 > 1 && countitem(6304) < 3) { mes "Sorry, but you need to know... your Sapha is not enough to do third stage, please come back again."; close; } - else if (EP13Enchant1 > 1) { + else if ((EP13Enchant1 > 1 && countitem(6304) < 2) || (EP13Enchant1 == 0 && countitem(6304) < 1)) { mes "Please come back here when you collect enough Sapha."; close; } mes "Then let's start."; |