summaryrefslogtreecommitdiff
path: root/npc/quests/quests_lighthalzen.txt
diff options
context:
space:
mode:
authorPlaytester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-15 22:35:20 +0000
committerPlaytester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-15 22:35:20 +0000
commitb02aa7e922312db6a1f65f1396dfaef6b4768721 (patch)
tree4663a59b80881d8794e3685aab0b972183f468ac /npc/quests/quests_lighthalzen.txt
parent09dc4ae0bfbe73aa0ee6e38d2bc00f76cbf02108 (diff)
downloadhercules-b02aa7e922312db6a1f65f1396dfaef6b4768721.tar.gz
hercules-b02aa7e922312db6a1f65f1396dfaef6b4768721.tar.bz2
hercules-b02aa7e922312db6a1f65f1396dfaef6b4768721.tar.xz
hercules-b02aa7e922312db6a1f65f1396dfaef6b4768721.zip
Fixed Mobster's OnDead event in npc/quests/quests_lighthalzen.txt.
Please take care that OnDead events start with "On"! git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6096 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/quests_lighthalzen.txt')
-rw-r--r--npc/quests/quests_lighthalzen.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/npc/quests/quests_lighthalzen.txt b/npc/quests/quests_lighthalzen.txt
index 54ba08079..77ffb41ea 100644
--- a/npc/quests/quests_lighthalzen.txt
+++ b/npc/quests/quests_lighthalzen.txt
@@ -25,6 +25,7 @@
//= 1.4 Fixed password abuse. When people don't read the password under the picture
//= and enter Zero shit 8) (TODO: I saw some "Sticks" abuses, too.. where you couls skip
//= a part of quest...)
+//= 1.5 Fixed Mobster's OnDead event(it has to start with "On"!) [Playtester]
//============================================================
//= aoa's comment
//= In future, Need for new monsters. No-Drop, No-Exp, Weak "Mobster","VENOMOUS","NOXIOUS"
@@ -77,7 +78,7 @@ MakeMob:
mapannounce "lighthalzen.gat","Maintenance Organization of the Public Order: Currently the security of the city has been compromized, We ask the citizens to be more careful. I repeat. We ask the citizens to be more careful.", 1;
for( set $@i, 0; $@i < $@mob; set $@i, $@i + 1 ) {
- monster "lighthalzen.gat",0,0,"Mobster",1592,1,"AlertChk::MobKilled";
+ monster "lighthalzen.gat",0,0,"Mobster",1592,1,"AlertChk::OnMobKilled";
}
set $@lhz_alert, 1;
@@ -89,13 +90,13 @@ ClearMob:
if($@lhz_alert == 0) goto ChkEnd;
set $@mobcount, 0;
mapannounce "lighthalzen.gat","Maintenance organization of the Public Order: We were able to get rid of all the trouble makers in the city. You may relax now.", 1;
- killmonster "lighthalzen.gat","AlertChk::MobKilled";
+ killmonster "lighthalzen.gat","AlertChk::OnMobKilled";
set $@lhz_alert, 0;
set $@sneakguard, 0;
setnpctimer 0;
end;
-MobKilled:
+OnMobKilled:
set $@mobcount, $@mobcount - 1;
if($@mobcount == 0) goto ClearMob;
setnpctimer 0;