diff options
author | Streusel <advance_me@hotmail.de> | 2013-02-23 23:58:30 -0800 |
---|---|---|
committer | Streusel <advance_me@hotmail.de> | 2013-02-23 23:58:30 -0800 |
commit | fa2751b503d41388cf82dbf882877db280b1bba7 (patch) | |
tree | d9b4bef1f96a72611562973667f0b4098736b3cd /npc/quests/quests_prontera.txt | |
parent | 137096757561eb466f2bc7cbb89d65ca70ba22a3 (diff) | |
download | hercules-fa2751b503d41388cf82dbf882877db280b1bba7.tar.gz hercules-fa2751b503d41388cf82dbf882877db280b1bba7.tar.bz2 hercules-fa2751b503d41388cf82dbf882877db280b1bba7.tar.xz hercules-fa2751b503d41388cf82dbf882877db280b1bba7.zip |
-Added renewal checks for exp distribution
Diffstat (limited to 'npc/quests/quests_prontera.txt')
-rw-r--r-- | npc/quests/quests_prontera.txt | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/npc/quests/quests_prontera.txt b/npc/quests/quests_prontera.txt index b5a3dd705..fba2043f3 100644 --- a/npc/quests/quests_prontera.txt +++ b/npc/quests/quests_prontera.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= kobra_k88; L0ne_W0lf //===== Current Version: ===================================== -//= 2.7 +//= 2.8 //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= @@ -47,6 +47,7 @@ //= 2.5a Fixed requirements for PH D. Hat agian lol. [L0ne_W0lf] //= 2.6 Replaced effect numerics with constants. [L0ne_W0lf] //= 2.7 Corrected 'IProntera' typo. (bugreport:4522) [L0ne_W0lf] +//= 2.8 Added renewal checks for exp distribution [Streusel] //============================================================ // Prontera Culvert @@ -2662,7 +2663,10 @@ prt_church,185,106,3 script Father Bamph 60,{ mes "adventurer. May safety accompany you on all of your journeys."; if (prt_curse == 43) set prt_curse,44; else set prt_curse,54; - getexp 160000,0; + if(checkre(0)) + getexp 160000,0; + else + getexp 1600000,0; close; } else if (prt_curse > 43 && prt_curse < 50 && !aru_monas) { @@ -2993,7 +2997,10 @@ prt_church,184,110,3 script Father Biscuss 60,{ mes "Church, I want to thank"; mes "you for all of your help."; set prt_curse,36; - getexp 160000,0; + if(checkre(0)) + getexp 160000,0; + else + getexp 1600000,0; close; } else if (prt_curse == 36) { |