From d95a9563233e4b3269e6a5b608d167df656906f8 Mon Sep 17 00:00:00 2001 From: Ben Longbons Date: Fri, 26 Aug 2011 21:36:12 -0700 Subject: Force the converter to run for all files to update generated files * replace indentation tabs with 4 spaces * replace separator tabs with pipes * replace break; with end; * handle unnamed maps --- world/map/npc/028-1/_mobs.txt | 84 +++++++++++++++++++++--------------------- world/map/npc/028-1/_warps.txt | 4 +- 2 files changed, 44 insertions(+), 44 deletions(-) (limited to 'world/map/npc/028-1') diff --git a/world/map/npc/028-1/_mobs.txt b/world/map/npc/028-1/_mobs.txt index a71093ad..c2980d7f 100644 --- a/world/map/npc/028-1/_mobs.txt +++ b/world/map/npc/028-1/_mobs.txt @@ -1,60 +1,60 @@ // This file is generated automatically. All manually changes will be removed when running the Converter. -// mobs - -028-1.gat,115,72,27,25 monster SpikyMushrooms 1019,18,20000,600,Mob028-1::On1019 -028-1.gat,83,69,25,19 monster Bat 1017,18,100000,1200,Mob028-1::On1017 -028-1.gat,93,33,48,32 monster Wisp 1040,8,200000,15000,Mob028-1::On1040 -028-1.gat,93,33,46,34 monster Spectre 1042,8,200000,15000,Mob028-1::On1042 -028-1.gat,93,33,44,36 monster Poltergeist 1047,8,200000,15000,Mob028-1::On1047 -028-1.gat,35,64,38,9 monster Sea Slime 1033,18,100000,1200,Mob028-1::On1033 -028-1.gat,45,75,22,10 monster Sea Slime 1033,18,100000,1200,Mob028-1::On1033 -028-1.gat,23,101,1,1 monster Squirrel 1038,1,300000,50000,Mob028-1::On1038 -028-1.gat,68,95,71,18 monster Wisp 1040,8,200000,15000,Mob028-1::On1040 -028-1.gat,76,100,93,16 monster Spectre 1042,8,200000,15000,Mob028-1::On1042 -028-1.gat,104,114,61,14 monster Poltergeist 1047,8,200000,15000,Mob028-1::On1047 -028-1.gat,54,42,1,1 monster Fallen 1045,1,700000,300000,Mob028-1::On1045 - - -028-1.gat,0,0,0 script Mob028-1 -1,{ +// unnamed map 028-1 mobs + +028-1.gat,115,72,27,25|monster|SpikyMushrooms|1019,18,20000,600,Mob028-1::On1019 +028-1.gat,83,69,25,19|monster|Bat|1017,18,100000,1200,Mob028-1::On1017 +028-1.gat,93,33,48,32|monster|Wisp|1040,8,200000,15000,Mob028-1::On1040 +028-1.gat,93,33,46,34|monster|Spectre|1042,8,200000,15000,Mob028-1::On1042 +028-1.gat,93,33,44,36|monster|Poltergeist|1047,8,200000,15000,Mob028-1::On1047 +028-1.gat,35,64,38,9|monster|Sea Slime|1033,18,100000,1200,Mob028-1::On1033 +028-1.gat,45,75,22,10|monster|Sea Slime|1033,18,100000,1200,Mob028-1::On1033 +028-1.gat,23,101,1,1|monster|Squirrel|1038,1,300000,50000,Mob028-1::On1038 +028-1.gat,68,95,71,18|monster|Wisp|1040,8,200000,15000,Mob028-1::On1040 +028-1.gat,76,100,93,16|monster|Spectre|1042,8,200000,15000,Mob028-1::On1042 +028-1.gat,104,114,61,14|monster|Poltergeist|1047,8,200000,15000,Mob028-1::On1047 +028-1.gat,54,42,1,1|monster|Fallen|1045,1,700000,300000,Mob028-1::On1045 + + +028-1.gat,0,0,0|script|Mob028-1|-1,{ On1017: - set @mobID, 1017; - callfunc "MobPoints"; - break; + set @mobID, 1017; + callfunc "MobPoints"; + end; On1019: - set @mobID, 1019; - callfunc "MobPoints"; - break; + set @mobID, 1019; + callfunc "MobPoints"; + end; On1033: - set @mobID, 1033; - callfunc "MobPoints"; - break; + set @mobID, 1033; + callfunc "MobPoints"; + end; On1038: - set @mobID, 1038; - callfunc "MobPoints"; - break; + set @mobID, 1038; + callfunc "MobPoints"; + end; On1040: - set @mobID, 1040; - callfunc "MobPoints"; - break; + set @mobID, 1040; + callfunc "MobPoints"; + end; On1042: - set @mobID, 1042; - callfunc "MobPoints"; - break; + set @mobID, 1042; + callfunc "MobPoints"; + end; On1045: - set @mobID, 1045; - callfunc "MobPoints"; - break; + set @mobID, 1045; + callfunc "MobPoints"; + end; On1047: - set @mobID, 1047; - callfunc "MobPoints"; - break; + set @mobID, 1047; + callfunc "MobPoints"; + end; - end; + end; } diff --git a/world/map/npc/028-1/_warps.txt b/world/map/npc/028-1/_warps.txt index 1d7ccba9..fcf137a3 100644 --- a/world/map/npc/028-1/_warps.txt +++ b/world/map/npc/028-1/_warps.txt @@ -1,4 +1,4 @@ // This file is generated automatically. All manually changes will be removed when running the Converter. -// warps +// unnamed map 028-1 warps -028-1.gat,114,122 warp To028-3 -1,-1,028-3.gat,33,78 +028-1.gat,114,122|warp|To028-3|-1,-1,028-3.gat,33,78 -- cgit v1.2.3-60-g2f50