diff options
author | SinSloth <SinSloth@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-09-21 23:15:24 +0000 |
---|---|---|
committer | SinSloth <SinSloth@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-09-21 23:15:24 +0000 |
commit | ce5a89d60fdd62fd3569f2944cc10ac2f5e4dab4 (patch) | |
tree | 875be02836b48180797d12dcd61a42e0f0c968d4 /npc/quests/quests_ein.txt | |
parent | e904419c7b3ff59c4d035bcbe48a79f27c74d18d (diff) | |
download | hercules-ce5a89d60fdd62fd3569f2944cc10ac2f5e4dab4.tar.gz hercules-ce5a89d60fdd62fd3569f2944cc10ac2f5e4dab4.tar.bz2 hercules-ce5a89d60fdd62fd3569f2944cc10ac2f5e4dab4.tar.xz hercules-ce5a89d60fdd62fd3569f2944cc10ac2f5e4dab4.zip |
* Fixed a small bug in Einbroch Pollution quest.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11265 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/quests_ein.txt')
-rw-r--r-- | npc/quests/quests_ein.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/npc/quests/quests_ein.txt b/npc/quests/quests_ein.txt index 22ddc766f..f8e4ecf82 100644 --- a/npc/quests/quests_ein.txt +++ b/npc/quests/quests_ein.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= Evera and The eAthena Dev Team //===== Current Version: ===================================== -//= 1.8 +//= 1.9 //===== Compatible With: ===================================== //= eAthena 7.15 + //===== Description: ========================================= @@ -25,6 +25,7 @@ //= 1.7 Changed the laboratory entrance checking to prevent players //= from being stuck in the quest. [SinSloth] //= 1.8 Fixed experience gains to match upcoming rate adjustments. [SinSloth] +//= 1.9 Fixed a bug with Einbroch Pollution quest. [SinSloth] //============================================================ @@ -2708,7 +2709,7 @@ s_Giveclothes: einbroch,1,1,0 script #PolutionNPC -1,{ OnPolution: - set @AlrdEinPoll,1; + set $@AlrdEinPoll,1; donpcevent "Liotzburg::OnHide"; donpcevent "Morei::OnHide"; donpcevent "Mark::OnHide"; @@ -2856,7 +2857,7 @@ OnTimer600000: enablenpc "Paddler"; enablenpc "Head Gear Dealer"; set $EinPolution,0; - set @AlrdEinPoll,0; + set $@AlrdEinPoll,0; end; } @@ -2874,7 +2875,7 @@ sec_in02,127,86,3 script Einbroch Polution 851,{ mes "[Einbroch Polution Variable Management]"; mes "$EinPolution has been reset to 0."; set $EinPolution,0; - set @AlrdEinPoll,0; + set $@AlrdEinPoll,0; close; s_Input: mes "[Einbroch Polution Variable Management]"; @@ -2914,7 +2915,7 @@ einbroch,132,84,3 script Liotzburg 853,{ mes "fix this! I gotta hide and find"; mes "someplace safe!"; close2; - if(!@AlrdEinPoll)donpcevent "#PolutionNPC::OnPolution"; + if(!$@AlrdEinPoll)donpcevent "#PolutionNPC::OnPolution"; end; } if(EinFactory >= 13){ |