diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2011-09-04 21:46:40 +0200 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2011-09-04 22:02:37 +0200 |
commit | 66c29c2c8ac07e43cc2cb35df9ad1b2cd43d77cf (patch) | |
tree | 5709afe96c5250b7bc36b4f18733fef782870cbb /world/map/npc/009-3 | |
parent | 60758bac20b02f7313f5f9506e3b59743894030f (diff) | |
download | serverdata-66c29c2c8ac07e43cc2cb35df9ad1b2cd43d77cf.tar.gz serverdata-66c29c2c8ac07e43cc2cb35df9ad1b2cd43d77cf.tar.bz2 serverdata-66c29c2c8ac07e43cc2cb35df9ad1b2cd43d77cf.tar.xz serverdata-66c29c2c8ac07e43cc2cb35df9ad1b2cd43d77cf.zip |
Replacing spawns from monsters.txt with spawn objects in maps.
Converter ran.
Submodule pointer updated.
Diffstat (limited to 'world/map/npc/009-3')
-rw-r--r-- | world/map/npc/009-3/_import.txt | 1 | ||||
-rw-r--r-- | world/map/npc/009-3/_mobs.txt | 18 | ||||
-rw-r--r-- | world/map/npc/009-3/monsters.txt | 26 |
3 files changed, 18 insertions, 27 deletions
diff --git a/world/map/npc/009-3/_import.txt b/world/map/npc/009-3/_import.txt index 12bf619c..23954c93 100644 --- a/world/map/npc/009-3/_import.txt +++ b/world/map/npc/009-3/_import.txt @@ -3,5 +3,4 @@ map: 009-3.gat npc: npc/009-3/_mobs.txt npc: npc/009-3/_warps.txt -npc: npc/009-3/monsters.txt npc: npc/009-3/sword.txt diff --git a/world/map/npc/009-3/_mobs.txt b/world/map/npc/009-3/_mobs.txt index 94479055..582a462f 100644 --- a/world/map/npc/009-3/_mobs.txt +++ b/world/map/npc/009-3/_mobs.txt @@ -1,8 +1,26 @@ // This file is generated automatically. All manually changes will be removed when running the Converter. // Cave beneath Hurnscald mobs +009-3.gat,0,0,0,0|monster|YellowSlime|1007,20,0,0,Mob009-3::On1007 +009-3.gat,0,0,0,0|monster|BlackScorpion|1009,25,0,0,Mob009-3::On1009 +009-3.gat,0,0,0,0|monster|RedSlime|1008,35,0,0,Mob009-3::On1008 009-3.gat,0,0,0|script|Mob009-3|-1,{ +On1007: + set @mobID, 1007; + callfunc "MobPoints"; + end; + +On1008: + set @mobID, 1008; + callfunc "MobPoints"; + end; + +On1009: + set @mobID, 1009; + callfunc "MobPoints"; + end; + end; } diff --git a/world/map/npc/009-3/monsters.txt b/world/map/npc/009-3/monsters.txt deleted file mode 100644 index b69bb3a1..00000000 --- a/world/map/npc/009-3/monsters.txt +++ /dev/null @@ -1,26 +0,0 @@ -// Map: 009-3 -// This is the cave beneath Hurnscald. -// - -009-3.gat,0,0,0,0 monster YellowSlime 1007,20,0,0,Mob35::OnYellowSlime -009-3.gat,0,0,0,0 monster RedSlime 1008,35,0,0,Mob35::OnRedSlime -009-3.gat,0,0,0,0 monster BlackScorpion 1009,25,0,0,Mob35::OnBlackScorpion - -009-3.gat,0,0,0 script Mob35 -1,{ -OnYellowSlime: - set @mobID, 1007; - callfunc "MobPoints"; - break; - -OnRedSlime: - set @mobID, 1008; - callfunc "MobPoints"; - break; - -OnBlackScorpion: - set @mobID, 1009; - callfunc "MobPoints"; - break; - - end; -} |