diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2012-07-11 14:16:02 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2012-07-19 11:04:33 -0700 |
commit | a08660ca24cc18778ad929eb5a79453ba37d232e (patch) | |
tree | 3a89c50ddb54959b661e70802eb71ca77bce7216 /world/map/npc/017-1/_mobs.txt | |
parent | fb3b066e0b99900b0dff319ef9ca8776d9d26a64 (diff) | |
download | serverdata-a08660ca24cc18778ad929eb5a79453ba37d232e.tar.gz serverdata-a08660ca24cc18778ad929eb5a79453ba37d232e.tar.bz2 serverdata-a08660ca24cc18778ad929eb5a79453ba37d232e.tar.xz serverdata-a08660ca24cc18778ad929eb5a79453ba37d232e.zip |
Add a tmx-to-wlk converter that handles CSV (in Python), and run it.
Some of the _mobs files changed due to bugs in the maps, which I fixed.
Remove the old Java version.
Diffstat (limited to 'world/map/npc/017-1/_mobs.txt')
-rw-r--r-- | world/map/npc/017-1/_mobs.txt | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/world/map/npc/017-1/_mobs.txt b/world/map/npc/017-1/_mobs.txt index af722b24..36eeaaf4 100644 --- a/world/map/npc/017-1/_mobs.txt +++ b/world/map/npc/017-1/_mobs.txt @@ -2,9 +2,11 @@ // Woodland Hills mobs 017-1.gat,0,0,0,0|monster|Clover Patch|1037,2,0,1000,Mob017-1::On1037 -017-1.gat,29,29,19,12|monster|Gamboge Herb|2033,1,0,25000,Mob017-1::On2033 -017-1.gat,91,25,76,8|monster|Log Head|2027,3,5000,60000,Mob017-1::On2027 -017-1.gat,31,48,19,12|monster|Log Head|2027,3,5000,60000,Mob017-1::On2027 +017-1.gat,99,30,2,1|monster|Clover Patch|1037,1,0,15000,Mob017-1::On1037 +017-1.gat,98,30,3,1|monster|Clover Patch|1037,1,0,15000,Mob017-1::On1037 +017-1.gat,29,29,19,12|monster|Gamboge Herb|1031,1,0,25000,Mob017-1::On1031 +017-1.gat,91,25,76,8|monster|Log Head|1025,3,5000,60000,Mob017-1::On1025 +017-1.gat,31,48,19,12|monster|Log Head|1025,3,5000,60000,Mob017-1::On1025 017-1.gat,0,0,0,0|monster|Butterfly|1055,10,30,20,Mob017-1::On1055 017-1.gat,0,0,0,0|monster|Bat|1017,5,0,0,Mob017-1::On1017 017-1.gat,0,0,0,0|monster|Fire Goblin|1011,5,0,0,Mob017-1::On1011 @@ -46,6 +48,11 @@ On1019: callfunc "MobPoints"; end; +On1025: + set @mobID, 1025; + callfunc "MobPoints"; + end; + On1028: set @mobID, 1028; callfunc "MobPoints"; @@ -91,15 +98,5 @@ On1055: callfunc "MobPoints"; end; -On2027: - set @mobID, 2027; - callfunc "MobPoints"; - end; - -On2033: - set @mobID, 2033; - callfunc "MobPoints"; - end; - end; } |