diff options
author | calciumkid <calciumkid@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-08 11:03:24 +0000 |
---|---|---|
committer | calciumkid <calciumkid@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-08 11:03:24 +0000 |
commit | 96c184ccaff83c9788e67100465178bb0c1663bd (patch) | |
tree | 6b70d35bd87339f7d4aa150b78235393611fe7e6 /npc/quests/quests_ein.txt | |
parent | 28a130d40fd4761815cb187f14e5f8b2f6e04249 (diff) | |
download | hercules-96c184ccaff83c9788e67100465178bb0c1663bd.tar.gz hercules-96c184ccaff83c9788e67100465178bb0c1663bd.tar.bz2 hercules-96c184ccaff83c9788e67100465178bb0c1663bd.tar.xz hercules-96c184ccaff83c9788e67100465178bb0c1663bd.zip |
Quest bugfixes.
bugreport:4089, bugreport:3600, bugreport:5046
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15023 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/quests_ein.txt')
-rw-r--r-- | npc/quests/quests_ein.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/npc/quests/quests_ein.txt b/npc/quests/quests_ein.txt index 0ec73cfdc..2edb3539d 100644 --- a/npc/quests/quests_ein.txt +++ b/npc/quests/quests_ein.txt @@ -3424,7 +3424,7 @@ einbroch,132,84,3 script Liotzburg#ein 853,2,2,{ close; OnTouch: - if ($EinPolution > 9) { + if ($EinPolution > 9 && !$@AlrdEinPoll) { mes "[Liotzburg]"; mes "What's going on?!"; mes "Who's responsible?!"; @@ -3438,8 +3438,10 @@ OnTouch: mes "fix this! I gotta hide and find"; mes "someplace safe!"; close2; - donpcevent "Einbroch Smog Alert::OnEnable"; - hideonnpc "Liotzburg#ein"; + if ($EinPolution > 9 && !$@AlrdEinPoll) { + donpcevent "Einbroch Smog Alert::OnEnable"; + hideonnpc "Liotzburg#ein"; + } end; } else { |