summaryrefslogtreecommitdiff
path: root/npc/mobs
diff options
context:
space:
mode:
authorLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-21 11:12:52 +0000
committerLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-21 11:12:52 +0000
commit348cd330565c71c6468f55dc15bef2f6a4042cd1 (patch)
tree4b8510d6611eae7cdb80f09741276d2a43f4b89f /npc/mobs
parent6e6ee08f7a162e128eae4e28ff983954990a2fdf (diff)
downloadhercules-348cd330565c71c6468f55dc15bef2f6a4042cd1.tar.gz
hercules-348cd330565c71c6468f55dc15bef2f6a4042cd1.tar.bz2
hercules-348cd330565c71c6468f55dc15bef2f6a4042cd1.tar.xz
hercules-348cd330565c71c6468f55dc15bef2f6a4042cd1.zip
freed 15 more perm variables. Fixed bugs in Cube Room
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8831 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/mobs')
-rw-r--r--npc/mobs/dungeons/lhzdun.txt18
1 files changed, 8 insertions, 10 deletions
diff --git a/npc/mobs/dungeons/lhzdun.txt b/npc/mobs/dungeons/lhzdun.txt
index e68ccb62b..725514883 100644
--- a/npc/mobs/dungeons/lhzdun.txt
+++ b/npc/mobs/dungeons/lhzdun.txt
@@ -68,9 +68,7 @@ lhz_dun03.gat,0,0,0,0 monster High Wizard Kathryne 1645,1,0,0,0
lhz_dun03.gat,1,1,0 script Lhzdun03monster -1,{
OnInit:
-
-while(1)
-{
+ while(1){
set $@metaspawn,rand(1,6);
if($@metaspawn == 1)areamonster "lhz_dun03.gat",1,1,300,300,"Lord Knight Seyren",1646,1,"Lhzdun03monster::OnMonsterDead";
if($@metaspawn == 2)areamonster "lhz_dun03.gat",1,1,300,300,"Assassin Cross Eremes",1647,1,"Lhzdun03monster::OnMonsterDead";
@@ -79,12 +77,12 @@ while(1)
if($@metaspawn == 5)areamonster "lhz_dun03.gat",1,1,300,300,"Sniper Cecil",1650,1,"Lhzdun03monster::OnMonsterDead";
if($@metaspawn == 6)areamonster "lhz_dun03.gat",1,1,300,300,"High Wizard Kathryne",1651,1,"Lhzdun03monster::OnMonsterDead";
end;
-OnMonsterDead:
- initnpctimer;
- setnpctimer 0;
- end;
-OnTimer7200000:
- stopnpctimer;
-}
+ OnMonsterDead:
+ initnpctimer;
+ setnpctimer 0;
+ end;
+ OnTimer7200000:
+ stopnpctimer;
+ }
}