diff --git a/sku.0/sys.server/compiled/game/object/building/corellia/starport_corellia.tpf b/sku.0/sys.server/compiled/game/object/building/corellia/starport_corellia.tpf index b49d67385..f5c40c375 100755 --- a/sku.0/sys.server/compiled/game/object/building/corellia/starport_corellia.tpf +++ b/sku.0/sys.server/compiled/game/object/building/corellia/starport_corellia.tpf @@ -20,6 +20,7 @@ @class object_template 1 +scripts = +["city.ship_spawner"] sharedTemplate = "object/building/corellia/shared_starport_corellia.iff" diff --git a/sku.0/sys.server/compiled/game/object/building/naboo/starport_naboo.tpf b/sku.0/sys.server/compiled/game/object/building/naboo/starport_naboo.tpf index c74ca8813..3c158901e 100755 --- a/sku.0/sys.server/compiled/game/object/building/naboo/starport_naboo.tpf +++ b/sku.0/sys.server/compiled/game/object/building/naboo/starport_naboo.tpf @@ -20,6 +20,7 @@ @class object_template 1 +scripts = +["city.ship_spawner"] sharedTemplate = "object/building/naboo/shared_starport_naboo.iff" diff --git a/sku.0/sys.server/compiled/game/object/building/tatooine/starport_tatooine.tpf b/sku.0/sys.server/compiled/game/object/building/tatooine/starport_tatooine.tpf index 4b48316b8..bbf0fc56d 100755 --- a/sku.0/sys.server/compiled/game/object/building/tatooine/starport_tatooine.tpf +++ b/sku.0/sys.server/compiled/game/object/building/tatooine/starport_tatooine.tpf @@ -20,6 +20,7 @@ @class object_template 1 +scripts = +["city.ship_spawner"] sharedTemplate = "object/building/tatooine/shared_starport_tatooine.iff" diff --git a/sku.0/sys.server/compiled/game/script/city/ship_spawner.java b/sku.0/sys.server/compiled/game/script/city/ship_spawner.java index 6e9534aa0..937cdde22 100755 --- a/sku.0/sys.server/compiled/game/script/city/ship_spawner.java +++ b/sku.0/sys.server/compiled/game/script/city/ship_spawner.java @@ -1,6 +1,7 @@ package script.city; -import script.location; +import script.dictionary; +import script.library.gcw; import script.obj_id; public class ship_spawner extends script.base_script @@ -8,10 +9,44 @@ public class ship_spawner extends script.base_script public ship_spawner() { } - public int OnInitialize(obj_id self) throws InterruptedException - { - location here = getLocation(self); - obj_id npc = createObject("object/static/structure/general/distant_ship_controller2.iff", here); + + public int OnInitialize(obj_id self) throws InterruptedException { + messageTo(self, "evaluateSpawn", null, 0.0f, false); + return SCRIPT_CONTINUE; + } + + public int evaluateSpawn(obj_id self, dictionary params) throws InterruptedException{ + // get the current imperial GCW score for the location. + int impScore = gcw.getGcwImperialScorePercentile(gcw.getGcwRegion(self)); + + String template = "object/static/structure/general/distant_ship_controller2.iff"; + if(impScore < 50) { + template = "object/static/structure/general/distant_ship_controller_rebel.iff"; + } else if(impScore > 50){ + template = "object/static/structure/general/distant_ship_controller_imperial.iff"; + } + + if(null != params) { + obj_id controller = params.getObjId("currentController"); + String currentTemplate = getTemplateName(controller); + if (currentTemplate != null && currentTemplate.equals(template)) { + messageTo(self, "evaluateSpawn", params, 60.0f, false); + return SCRIPT_CONTINUE; + } + // our template is different, let's get rid of the old one before we create a new one. + destroyObject(params.getObjId("currentController")); + } else { + params = new dictionary(); + } + + obj_id controller = createObject(template, getLocation(self)); + + params.put("currentController", controller); + params.put("lastImperialScore", impScore); + + // check the spawn point again in 60 seconds. + messageTo(self, "evaluateSpawn", params, 60.0f, false); + return SCRIPT_CONTINUE; } } diff --git a/sku.0/sys.server/compiled/game/script/item/gcw_buff_banner/banner_buff_manager.java b/sku.0/sys.server/compiled/game/script/item/gcw_buff_banner/banner_buff_manager.java index 4581b957f..4382f037b 100755 --- a/sku.0/sys.server/compiled/game/script/item/gcw_buff_banner/banner_buff_manager.java +++ b/sku.0/sys.server/compiled/game/script/item/gcw_buff_banner/banner_buff_manager.java @@ -32,8 +32,7 @@ public class banner_buff_manager extends script.base_script { return null; } - int profession = utils.getPlayerProfession(player); - switch (profession) + switch (utils.getPlayerProfession(player)) { case utils.COMMANDO: return "banner_buff_commando"; @@ -50,9 +49,9 @@ public class banner_buff_manager extends script.base_script case utils.FORCE_SENSITIVE: return "banner_buff_force_sensitive"; case utils.TRADER: - return null; + return "banner_buff_trader"; case utils.ENTERTAINER: - return null; + return "banner_buff_entertainer"; } return null; } diff --git a/sku.0/sys.server/compiled/game/script/library/smuggler.java b/sku.0/sys.server/compiled/game/script/library/smuggler.java index b99f98af5..fd73c5d77 100755 --- a/sku.0/sys.server/compiled/game/script/library/smuggler.java +++ b/sku.0/sys.server/compiled/game/script/library/smuggler.java @@ -1059,7 +1059,8 @@ public class smuggler extends script.base_script int timeNow = getCalendarTime(); setObjVar(object, BUYBACK_OBJ_TIMESTAMP, timeNow); setObjVar(object, BUYBACK_OBJ_CREDITS, credits); - if (putIn(object, objContainer, player)) + // This should be a vendor... and if so, we don't care if it's full because the vendor does NOT try to move. + if (putInOverloaded(object, objContainer)) { return true; } @@ -1086,7 +1087,8 @@ public class smuggler extends script.base_script CustomerServiceLog("Junk_Dealer: ", "smuggler.moveBuyBackObjectIntoInventory() - Player (OID: " + player + ") does not have a valid buy back container."); return false; } - if (putIn(object, objContainer, player)) + // This should be a vendor... and if so, we don't care if it's full because the vendor does NOT try to move. + if (putInOverloaded(object, objContainer)) { removeObjVar(object, BUYBACK_OBJ_TIMESTAMP); removeObjVar(object, BUYBACK_OBJ_CREDITS); diff --git a/sku.0/sys.server/compiled/game/script/library/spawning.java b/sku.0/sys.server/compiled/game/script/library/spawning.java index 1c61834ff..df0f2135c 100755 --- a/sku.0/sys.server/compiled/game/script/library/spawning.java +++ b/sku.0/sys.server/compiled/game/script/library/spawning.java @@ -63,13 +63,15 @@ public class spawning extends script.base_script } public static void addToSpawnDebugList(obj_id self, obj_id spawned) throws InterruptedException { - Vector debugSpawnList = new Vector(); - debugSpawnList.setSize(0); + if(!utils.inDebugMode()) return; + Vector debugSpawnList; if (utils.hasScriptVar(self, "debugSpawnList")) { debugSpawnList = utils.getResizeableObjIdArrayScriptVar(self, "debugSpawnList"); + debugSpawnList = utils.addElement(debugSpawnList, spawned); + } else { + debugSpawnList = utils.addElement(new Vector(), spawned); } - debugSpawnList = utils.addElement(debugSpawnList, spawned); utils.setScriptVar(self, "debugSpawnList", debugSpawnList); } public static Vector getAllObjectsWithObjVar(location locTest, String strObjVarName) throws InterruptedException diff --git a/sku.0/sys.server/compiled/game/script/library/utils.java b/sku.0/sys.server/compiled/game/script/library/utils.java index 422a4b78f..bc6230ac0 100755 --- a/sku.0/sys.server/compiled/game/script/library/utils.java +++ b/sku.0/sys.server/compiled/game/script/library/utils.java @@ -78,7 +78,7 @@ public class utils extends script.base_script public static final String BAZAAR_SCRIPT = "terminal.bazaar"; public static int clipRange(int iValue, int iClipMin, int iClipMax) throws InterruptedException { - return (iValue < iClipMin) ? iClipMin : (iValue > iClipMax) ? iClipMax : iValue; + return (iValue < iClipMin) ? iClipMin : Math.min(iValue, iClipMax); } public static location getRandomAwayLocation(location pos, float fMinRadius, float fMaxRadius) throws InterruptedException { @@ -143,10 +143,7 @@ public class utils extends script.base_script if (isIdValid(armor)) { String template = getTemplateName(armor); - if (template.endsWith("armor_mandalorian_belt.iff") || template.endsWith("armor_mandalorian_bicep_l.iff") || template.endsWith("armor_mandalorian_bicep_r.iff") || template.endsWith("armor_mandalorian_bracer_l.iff") || template.endsWith("armor_mandalorian_bracer_r.iff") || template.endsWith("armor_mandalorian_chest_plate.iff") || template.endsWith("armor_mandalorian_helmet.iff") || template.endsWith("armor_mandalorian_leggings.iff") || template.endsWith("armor_mandalorian_shoes.iff") || template.endsWith("armor_mandalorian_gloves.iff")) - { - return true; - } + return template.endsWith("armor_mandalorian_belt.iff") || template.endsWith("armor_mandalorian_bicep_l.iff") || template.endsWith("armor_mandalorian_bicep_r.iff") || template.endsWith("armor_mandalorian_bracer_l.iff") || template.endsWith("armor_mandalorian_bracer_r.iff") || template.endsWith("armor_mandalorian_chest_plate.iff") || template.endsWith("armor_mandalorian_helmet.iff") || template.endsWith("armor_mandalorian_leggings.iff") || template.endsWith("armor_mandalorian_shoes.iff") || template.endsWith("armor_mandalorian_gloves.iff"); } return false; } @@ -4795,30 +4792,20 @@ public class utils extends script.base_script if (intServerSpawnLimit > 0) { - if (intNumCreatures > intServerSpawnLimit) - { - return false; - } + return intNumCreatures <= intServerSpawnLimit; } else { if (intNumPlayers < 200000) { - if (intNumCreatures > 5000) - { - return false; - } + return intNumCreatures <= 5000; } else { float fltRatio = (intNumCreatures / intNumPlayers); - if (fltRatio > 10) - { - return false; - } + return !(fltRatio > 10.0f); } } - return true; } public static String formatTimeVerbose(int seconds) throws InterruptedException { @@ -7224,4 +7211,7 @@ public class utils extends script.base_script } return intNumCreatures; } + public static boolean inDebugMode() throws InterruptedException { + return (utils.getIntConfigSetting("GameServer", "debugMode") == 1); + } } diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_adventure1.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_adventure1.tab index 145f2af92..df12994fd 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_adventure1.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_adventure1.tab @@ -1,14 +1,14 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s -heroic_tusken_army -4964 2822 -2964 4822 -heroic_tusken_army -1964 2822 36 4822 -heroic_tusken_army 1036 2822 3036 4822 -heroic_tusken_army 4036 2822 6036 4822 -heroic_tusken_army -4964 -178 -2964 1822 -heroic_tusken_army -1964 -178 36 1822 -heroic_tusken_army 1036 -178 3036 1822 -heroic_tusken_army 4036 -178 6036 1822 -heroic_tusken_army -4964 -3178 -2964 -1178 -heroic_tusken_army -1956 -3170 44 -1170 -heroic_tusken_army 1036 -3178 3036 -1178 -heroic_tusken_army 4036 -3178 6036 -1178 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s s +heroic_tusken_army -4964 2822 -2964 4822 light +heroic_tusken_army -1964 2822 36 4822 medium +heroic_tusken_army 1036 2822 3036 4822 medium +heroic_tusken_army 4036 2822 6036 4822 medium +heroic_tusken_army -4964 -178 -2964 1822 medium +heroic_tusken_army -1964 -178 36 1822 medium +heroic_tusken_army 1036 -178 3036 1822 heavy +heroic_tusken_army 4036 -178 6036 1822 heavy +heroic_tusken_army -4964 -3178 -2964 -1178 heavy +heroic_tusken_army -1956 -3170 44 -1170 heavy +heroic_tusken_army 1036 -3178 3036 -1178 heavy +heroic_tusken_army 4036 -3178 6036 -1178 heavy diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_adventure2.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_adventure2.tab index 62e09962a..e5179e40e 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_adventure2.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_adventure2.tab @@ -1,11 +1,11 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s -echo_base -6900 3100 -3100 6900 -echo_base -1900 3100 1900 6900 -echo_base 3100 3100 6900 6900 -echo_base -6900 -1900 -3100 1900 -echo_base -1900 -1900 1900 1900 -echo_base 3100 -1900 6900 1900 -echo_base -6900 -6900 -3100 -3100 -echo_base -1900 -6900 1900 -3100 -echo_base 3100 -6900 6900 -3100 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s s +echo_base -6900 3100 -3100 6900 light +echo_base -1900 3100 1900 6900 medium +echo_base 3100 3100 6900 6900 medium +echo_base -6900 -1900 -3100 1900 medium +echo_base -1900 -1900 1900 1900 heavy +echo_base 3100 -1900 6900 1900 heavy +echo_base -6900 -6900 -3100 -3100 heavy +echo_base -1900 -6900 1900 -3100 heavy +echo_base 3100 -6900 6900 -3100 heavy diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_corellia.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_corellia.tab index b7a6a2108..03dae8c67 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_corellia.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_corellia.tab @@ -1,136 +1,136 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s -corellia_1_1 -8192 -8192 -6144 -6144 -corellia_1_2 -8192 -6144 -6144 -4096 -corellia_1_3 -8192 -4096 -6144 -2048 -corellia_1_4 -8192 -2048 -6144 0 -corellia_1_5 -8192 0 -6144 2048 -corellia_1_6 -8192 2048 -6144 4096 -corellia_1_7 -8192 4096 -6144 6144 -remembranceday_reb_hideout -8192 4096 -6144 6144 empireday_ceremony -corellia_1_8 -8192 6144 -6144 8192 -corellia_2_1 -6144 -8192 -4096 -6144 -corellia_2_2 -6144 -6144 -4096 -4096 -corellia_2_3 -6144 -4096 -4096 -2048 -empireday_crashsite_tyrena -6144 -4096 -4096 -2048 empireday_ceremony -loveday_tyrena -6144 -4096 -4096 -2048 loveday -corellia_2_4 -6144 -2048 -4096 0 -corellia_2_5 -6144 0 -4096 2048 -corellia_2_6 -6144 2048 -4096 4096 -corellia_2_7 -6144 4096 -4096 6144 -corellia_2_8 -6144 6144 -4096 8192 -corellia_3_1 -4096 -8192 -2048 -6144 -corellia_3_2 -4096 -6144 -2048 -4096 -corellia_3_3 -4096 -4096 -2048 -2048 -corellia_3_4 -4096 -2048 -2048 0 -corellia_3_5 -4096 0 -2048 2048 -corellia_3_6 -4096 2048 -2048 4096 -corellia_3_7 -4096 4096 -2048 6144 -corellia_3_8 -4096 6144 -2048 8192 -corellia_4_1 -2048 -8192 0 -6144 -remembranceday_coronet -2048 -6144 0 -4096 empireday_ceremony -corellia_4_2 -2048 -6144 0 -4096 -remembranceday_coronet_02 -2048 -4096 0 -2048 empireday_ceremony -corellia_4_3 -2048 -4096 0 -2048 -corellia_4_4 -2048 -2048 0 0 -corellia_4_5 -2048 0 0 2048 -corellia_4_6 -2048 2048 0 4096 -corellia_4_7 -2048 4096 0 6144 -corellia_4_8 -2048 6144 0 8192 -corellia_5_1 0 -8192 2048 -6144 -corellia_5_2 0 -6144 2048 -4096 -corellia_5_3 0 -4096 2048 -2048 -corellia_5_4 0 -2048 2048 0 -corellia_5_5 0 0 2048 2048 -corellia_5_6 0 2048 2048 4096 -corellia_5_7 0 4096 2048 6144 -corellia_5_8 0 6144 2048 8192 -corellia_6_1 2048 -8192 4096 -6144 -corellia_6_2 2048 -6144 4096 -4096 -corellia_6_3 2048 -4096 4096 -2048 -corellia_6_4 2048 -2048 4096 0 -corellia_6_5 2048 0 4096 2048 -corellia_6_6 2048 2048 4096 4096 -corellia_6_7 2048 4096 4096 6144 -lifeday_doaba_guerfel 2048 4096 4096 6144 lifeday -corellia_6_8 2048 6144 4096 8192 -corellia_7_1 4096 -8192 6144 -6144 -corellia_7_2 4096 -6144 6144 -4096 -corellia_7_3 4096 -4096 6144 -2048 -corellia_7_4 4096 -2048 6144 0 -corellia_7_5 4096 0 6144 2048 -corellia_7_6 4096 2048 6144 4096 -corellia_7_7 4096 4096 6144 6144 -corellia_7_8 4096 6144 6144 8192 -corellia_8_1 6144 -8192 8192 -6144 -corellia_8_2 6144 -6144 8192 -4096 -corellia_8_3 6144 -4096 8192 -2048 -corellia_8_4 6144 -2048 8192 0 -corellia_8_5 6144 0 8192 2048 -corellia_8_6 6144 2048 8192 4096 -corellia_8_7 6144 4096 8192 6144 -corellia_8_8 6144 6144 8192 8192 -corellia_1_1_ws -8192 -8192 -6144 -6144 -corellia_1_2_ws -8192 -6144 -6144 -4096 -corellia_1_3_ws -8192 -4096 -6144 -2048 -corellia_1_4_ws -8192 -2048 -6144 0 -corellia_1_5_ws -8192 0 -6144 2048 -corellia_1_6_ws -8192 2048 -6144 4096 -corellia_1_7_ws -8192 4096 -6144 6144 -corellia_1_8_ws -8192 6144 -6144 8192 -corellia_2_1_ws -6144 -8192 -4096 -6144 -corellia_2_2_ws -6144 -6144 -4096 -4096 -corellia_2_3_ws -6144 -4096 -4096 -2048 -corellia_2_4_ws -6144 -2048 -4096 0 -corellia_2_5_ws -6144 0 -4096 2048 -corellia_2_6_ws -6144 2048 -4096 4096 -corellia_2_7_ws -6144 4096 -4096 6144 -corellia_2_8_ws -6144 6144 -4096 8192 -corellia_3_1_ws -4096 -8192 -2048 -6144 -corellia_3_2_ws -4096 -6144 -2048 -4096 -corellia_3_3_ws -4096 -4096 -2048 -2048 -corellia_3_4_ws -4096 -2048 -2048 0 -corellia_3_5_ws -4096 0 -2048 2048 -corellia_3_6_ws -4096 2048 -2048 4096 -corellia_3_7_ws -4096 4096 -2048 6144 -corellia_3_8_ws -4096 6144 -2048 8192 -corellia_4_1_ws -2048 -8192 0 -6144 -corellia_4_2_ws -2048 -6144 0 -4096 -corellia_4_3_ws -2048 -4096 0 -2048 -corellia_4_4_ws -2048 -2048 0 0 -corellia_4_5_ws -2048 0 0 2048 -corellia_4_6_ws -2048 2048 0 4096 -corellia_4_7_ws -2048 4096 0 6144 -corellia_4_8_ws -2048 6144 0 8192 -corellia_5_1_ws 0 -8192 2048 -6144 -corellia_5_2_ws 0 -6144 2048 -4096 -corellia_5_3_ws 0 -4096 2048 -2048 -corellia_5_4_ws 0 -2048 2048 0 -corellia_5_5_ws 0 0 2048 2048 -corellia_5_6_ws 0 2048 2048 4096 -corellia_5_7_ws 0 4096 2048 6144 -corellia_5_8_ws 0 6144 2048 8192 -corellia_6_1_ws 2048 -8192 4096 -6144 -corellia_6_2_ws 2048 -6144 4096 -4096 -corellia_6_3_ws 2048 -4096 4096 -2048 -corellia_6_4_ws 2048 -2048 4096 0 -corellia_6_5_ws 2048 0 4096 2048 -corellia_6_6_ws 2048 2048 4096 4096 -corellia_6_7_ws 2048 4096 4096 6144 -corellia_6_8_ws 2048 6144 4096 8192 -corellia_7_1_ws 4096 -8192 6144 -6144 -corellia_7_2_ws 4096 -6144 6144 -4096 -corellia_7_3_ws 4096 -4096 6144 -2048 -corellia_7_4_ws 4096 -2048 6144 0 -corellia_7_5_ws 4096 0 6144 2048 -corellia_7_6_ws 4096 2048 6144 4096 -corellia_7_7_ws 4096 4096 6144 6144 -corellia_7_8_ws 4096 6144 6144 8192 -corellia_8_1_ws 6144 -8192 8192 -6144 -corellia_8_2_ws 6144 -6144 8192 -4096 -corellia_8_3_ws 6144 -4096 8192 -2048 -corellia_8_4_ws 6144 -2048 8192 0 -corellia_8_5_ws 6144 0 8192 2048 -corellia_8_6_ws 6144 2048 8192 4096 -corellia_8_7_ws 6144 4096 8192 6144 -corellia_8_8_ws 6144 6144 8192 8192 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s s +corellia_1_1 -8192 -8192 -6144 -6144 +corellia_1_2 -8192 -6144 -6144 -4096 +corellia_1_3 -8192 -4096 -6144 -2048 +corellia_1_4 -8192 -2048 -6144 0 +corellia_1_5 -8192 0 -6144 2048 +corellia_1_6 -8192 2048 -6144 4096 +corellia_1_7 -8192 4096 -6144 6144 +remembranceday_reb_hideout -8192 4096 -6144 6144 empireday_ceremony +corellia_1_8 -8192 6144 -6144 8192 +corellia_2_1 -6144 -8192 -4096 -6144 +corellia_2_2 -6144 -6144 -4096 -4096 +corellia_2_3 -6144 -4096 -4096 -2048 +empireday_crashsite_tyrena -6144 -4096 -4096 -2048 empireday_ceremony +loveday_tyrena -6144 -4096 -4096 -2048 loveday +corellia_2_4 -6144 -2048 -4096 0 +corellia_2_5 -6144 0 -4096 2048 +corellia_2_6 -6144 2048 -4096 4096 +corellia_2_7 -6144 4096 -4096 6144 +corellia_2_8 -6144 6144 -4096 8192 +corellia_3_1 -4096 -8192 -2048 -6144 +corellia_3_2 -4096 -6144 -2048 -4096 +corellia_3_3 -4096 -4096 -2048 -2048 +corellia_3_4 -4096 -2048 -2048 0 +corellia_3_5 -4096 0 -2048 2048 +corellia_3_6 -4096 2048 -2048 4096 +corellia_3_7 -4096 4096 -2048 6144 +corellia_3_8 -4096 6144 -2048 8192 +corellia_4_1 -2048 -8192 0 -6144 +remembranceday_coronet -2048 -6144 0 -4096 empireday_ceremony +corellia_4_2 -2048 -6144 0 -4096 +remembranceday_coronet_02 -2048 -4096 0 -2048 empireday_ceremony +corellia_4_3 -2048 -4096 0 -2048 +corellia_4_4 -2048 -2048 0 0 +corellia_4_5 -2048 0 0 2048 +corellia_4_6 -2048 2048 0 4096 +corellia_4_7 -2048 4096 0 6144 +corellia_4_8 -2048 6144 0 8192 +corellia_5_1 0 -8192 2048 -6144 +corellia_5_2 0 -6144 2048 -4096 +corellia_5_3 0 -4096 2048 -2048 +corellia_5_4 0 -2048 2048 0 +corellia_5_5 0 0 2048 2048 +corellia_5_6 0 2048 2048 4096 +corellia_5_7 0 4096 2048 6144 +corellia_5_8 0 6144 2048 8192 +corellia_6_1 2048 -8192 4096 -6144 +corellia_6_2 2048 -6144 4096 -4096 +corellia_6_3 2048 -4096 4096 -2048 +corellia_6_4 2048 -2048 4096 0 +corellia_6_5 2048 0 4096 2048 +corellia_6_6 2048 2048 4096 4096 +corellia_6_7 2048 4096 4096 6144 +lifeday_doaba_guerfel 2048 4096 4096 6144 lifeday +corellia_6_8 2048 6144 4096 8192 +corellia_7_1 4096 -8192 6144 -6144 +corellia_7_2 4096 -6144 6144 -4096 +corellia_7_3 4096 -4096 6144 -2048 +corellia_7_4 4096 -2048 6144 0 +corellia_7_5 4096 0 6144 2048 +corellia_7_6 4096 2048 6144 4096 +corellia_7_7 4096 4096 6144 6144 +corellia_7_8 4096 6144 6144 8192 +corellia_8_1 6144 -8192 8192 -6144 +corellia_8_2 6144 -6144 8192 -4096 +corellia_8_3 6144 -4096 8192 -2048 +corellia_8_4 6144 -2048 8192 0 +corellia_8_5 6144 0 8192 2048 +corellia_8_6 6144 2048 8192 4096 +corellia_8_7 6144 4096 8192 6144 +corellia_8_8 6144 6144 8192 8192 +corellia_1_1_ws -8192 -8192 -6144 -6144 +corellia_1_2_ws -8192 -6144 -6144 -4096 +corellia_1_3_ws -8192 -4096 -6144 -2048 +corellia_1_4_ws -8192 -2048 -6144 0 +corellia_1_5_ws -8192 0 -6144 2048 +corellia_1_6_ws -8192 2048 -6144 4096 +corellia_1_7_ws -8192 4096 -6144 6144 +corellia_1_8_ws -8192 6144 -6144 8192 +corellia_2_1_ws -6144 -8192 -4096 -6144 +corellia_2_2_ws -6144 -6144 -4096 -4096 +corellia_2_3_ws -6144 -4096 -4096 -2048 +corellia_2_4_ws -6144 -2048 -4096 0 +corellia_2_5_ws -6144 0 -4096 2048 +corellia_2_6_ws -6144 2048 -4096 4096 +corellia_2_7_ws -6144 4096 -4096 6144 +corellia_2_8_ws -6144 6144 -4096 8192 +corellia_3_1_ws -4096 -8192 -2048 -6144 +corellia_3_2_ws -4096 -6144 -2048 -4096 +corellia_3_3_ws -4096 -4096 -2048 -2048 +corellia_3_4_ws -4096 -2048 -2048 0 +corellia_3_5_ws -4096 0 -2048 2048 +corellia_3_6_ws -4096 2048 -2048 4096 +corellia_3_7_ws -4096 4096 -2048 6144 +corellia_3_8_ws -4096 6144 -2048 8192 +corellia_4_1_ws -2048 -8192 0 -6144 +corellia_4_2_ws -2048 -6144 0 -4096 +corellia_4_3_ws -2048 -4096 0 -2048 +corellia_4_4_ws -2048 -2048 0 0 +corellia_4_5_ws -2048 0 0 2048 +corellia_4_6_ws -2048 2048 0 4096 +corellia_4_7_ws -2048 4096 0 6144 +corellia_4_8_ws -2048 6144 0 8192 +corellia_5_1_ws 0 -8192 2048 -6144 +corellia_5_2_ws 0 -6144 2048 -4096 +corellia_5_3_ws 0 -4096 2048 -2048 +corellia_5_4_ws 0 -2048 2048 0 +corellia_5_5_ws 0 0 2048 2048 +corellia_5_6_ws 0 2048 2048 4096 +corellia_5_7_ws 0 4096 2048 6144 +corellia_5_8_ws 0 6144 2048 8192 +corellia_6_1_ws 2048 -8192 4096 -6144 +corellia_6_2_ws 2048 -6144 4096 -4096 +corellia_6_3_ws 2048 -4096 4096 -2048 +corellia_6_4_ws 2048 -2048 4096 0 +corellia_6_5_ws 2048 0 4096 2048 +corellia_6_6_ws 2048 2048 4096 4096 +corellia_6_7_ws 2048 4096 4096 6144 +corellia_6_8_ws 2048 6144 4096 8192 +corellia_7_1_ws 4096 -8192 6144 -6144 +corellia_7_2_ws 4096 -6144 6144 -4096 +corellia_7_3_ws 4096 -4096 6144 -2048 +corellia_7_4_ws 4096 -2048 6144 0 +corellia_7_5_ws 4096 0 6144 2048 +corellia_7_6_ws 4096 2048 6144 4096 +corellia_7_7_ws 4096 4096 6144 6144 +corellia_7_8_ws 4096 6144 6144 8192 +corellia_8_1_ws 6144 -8192 8192 -6144 +corellia_8_2_ws 6144 -6144 8192 -4096 +corellia_8_3_ws 6144 -4096 8192 -2048 +corellia_8_4_ws 6144 -2048 8192 0 +corellia_8_5_ws 6144 0 8192 2048 +corellia_8_6_ws 6144 2048 8192 4096 +corellia_8_7_ws 6144 4096 8192 6144 +corellia_8_8_ws 6144 6144 8192 8192 diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_dantooine.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_dantooine.tab index 75c197df3..448e89cf2 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_dantooine.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_dantooine.tab @@ -1,130 +1,130 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s -dantooine_1_1 -8192 -8192 -6144 -6144 -dantooine_1_2 -8192 -6144 -6144 -4096 -dantooine_1_3 -8192 -4096 -6144 -2048 -dantooine_1_4 -8192 -2048 -6144 0 -dantooine_1_5 -8192 0 -6144 2048 -dantooine_1_6 -8192 2048 -6144 4096 -dantooine_1_7 -8192 4096 -6144 6144 -dantooine_1_8 -8192 6144 -6144 8192 -dantooine_2_1 -6144 -8192 -4096 -6144 -dantooine_2_2 -6144 -6144 -4096 -4096 -dantooine_2_3 -6144 -4096 -4096 -2048 -dantooine_2_4 -6144 -2048 -4096 0 -dantooine_2_5 -6144 0 -4096 2048 -dantooine_2_6 -6144 2048 -4096 4096 -dantooine_2_7 -6144 4096 -4096 6144 -dantooine_2_8 -6144 6144 -4096 8192 -dantooine_3_1 -4096 -8192 -2048 -6144 -dantooine_3_2 -4096 -6144 -2048 -4096 -dantooine_3_3 -4096 -4096 -2048 -2048 -dantooine_3_4 -4096 -2048 -2048 0 -dantooine_3_5 -4096 0 -2048 2048 -dantooine_3_6 -4096 2048 -2048 4096 -dantooine_3_7 -4096 4096 -2048 6144 -dantooine_3_8 -4096 6144 -2048 8192 -dantooine_4_1 -2048 -8192 0 -6144 -dantooine_4_2 -2048 -6144 0 -4096 -dantooine_4_3 -2048 -4096 0 -2048 -dantooine_4_4 -2048 -2048 0 0 -dantooine_4_5 -2048 0 0 2048 -dantooine_4_6 -2048 2048 0 4096 -dantooine_4_7 -2048 4096 0 6144 -dantooine_4_8 -2048 6144 0 8192 -dantooine_5_1 0 -8192 2048 -6144 -dantooine_5_2 0 -6144 2048 -4096 -dantooine_5_3 0 -4096 2048 -2048 -dantooine_5_4 0 -2048 2048 0 -dantooine_5_5 0 0 2048 2048 -dantooine_5_6 0 2048 2048 4096 -dantooine_5_7 0 4096 2048 6144 -dantooine_5_8 0 6144 2048 8192 -dantooine_6_1 2048 -8192 4096 -6144 -dantooine_6_2 2048 -6144 4096 -4096 -dantooine_6_3 2048 -4096 4096 -2048 -dantooine_6_4 2048 -2048 4096 0 -dantooine_6_5 2048 0 4096 2048 -dantooine_6_6 2048 2048 4096 4096 -dantooine_6_7 2048 4096 4096 6144 -dantooine_6_8 2048 6144 4096 8192 -dantooine_7_1 4096 -8192 6144 -6144 -dantooine_7_2 4096 -6144 6144 -4096 -dantooine_7_3 4096 -4096 6144 -2048 -dantooine_7_4 4096 -2048 6144 0 -dantooine_7_5 4096 0 6144 2048 -dantooine_7_6 4096 2048 6144 4096 -dantooine_7_7 4096 4096 6144 6144 -dantooine_7_8 4096 6144 6144 8192 -dantooine_8_1 6144 -8192 8192 -6144 -dantooine_8_2 6144 -6144 8192 -4096 -dantooine_8_3 6144 -4096 8192 -2048 -dantooine_8_4 6144 -2048 8192 0 -dantooine_8_5 6144 0 8192 2048 -dantooine_8_6 6144 2048 8192 4096 -dantooine_8_7 6144 4096 8192 6144 -dantooine_8_8 6144 6144 8192 8192 -dantooine_1_1_ws -8192 -8192 -6144 -6144 -dantooine_1_2_ws -8192 -6144 -6144 -4096 -dantooine_1_3_ws -8192 -4096 -6144 -2048 -dantooine_1_4_ws -8192 -2048 -6144 0 -dantooine_1_5_ws -8192 0 -6144 2048 -dantooine_1_6_ws -8192 2048 -6144 4096 -dantooine_1_7_ws -8192 4096 -6144 6144 -dantooine_1_8_ws -8192 6144 -6144 8192 -dantooine_2_1_ws -6144 -8192 -4096 -6144 -dantooine_2_2_ws -6144 -6144 -4096 -4096 -dantooine_2_3_ws -6144 -4096 -4096 -2048 -dantooine_2_4_ws -6144 -2048 -4096 0 -dantooine_2_5_ws -6144 0 -4096 2048 -dantooine_2_6_ws -6144 2048 -4096 4096 -dantooine_2_7_ws -6144 4096 -4096 6144 -dantooine_2_8_ws -6144 6144 -4096 8192 -dantooine_3_1_ws -4096 -8192 -2048 -6144 -dantooine_3_2_ws -4096 -6144 -2048 -4096 -dantooine_3_3_ws -4096 -4096 -2048 -2048 -dantooine_3_4_ws -4096 -2048 -2048 0 -dantooine_3_5_ws -4096 0 -2048 2048 -dantooine_3_6_ws -4096 2048 -2048 4096 -dantooine_3_7_ws -4096 4096 -2048 6144 -dantooine_3_8_ws -4096 6144 -2048 8192 -dantooine_4_1_ws -2048 -8192 0 -6144 -dantooine_4_2_ws -2048 -6144 0 -4096 -dantooine_4_3_ws -2048 -4096 0 -2048 -dantooine_4_4_ws -2048 -2048 0 0 -dantooine_4_5_ws -2048 0 0 2048 -dantooine_4_6_ws -2048 2048 0 4096 -dantooine_4_7_ws -2048 4096 0 6144 -dantooine_4_8_ws -2048 6144 0 8192 -dantooine_5_1_ws 0 -8192 2048 -6144 -dantooine_5_2_ws 0 -6144 2048 -4096 -dantooine_5_3_ws 0 -4096 2048 -2048 -dantooine_5_4_ws 0 -2048 2048 0 -dantooine_5_5_ws 0 0 2048 2048 -dantooine_5_6_ws 0 2048 2048 4096 -dantooine_5_7_ws 0 4096 2048 6144 -dantooine_5_8_ws 0 6144 2048 8192 -dantooine_6_1_ws 2048 -8192 4096 -6144 -dantooine_6_2_ws 2048 -6144 4096 -4096 -dantooine_6_3_ws 2048 -4096 4096 -2048 -dantooine_6_4_ws 2048 -2048 4096 0 -dantooine_6_5_ws 2048 0 4096 2048 -dantooine_6_6_ws 2048 2048 4096 4096 -dantooine_6_7_ws 2048 4096 4096 6144 -dantooine_6_8_ws 2048 6144 4096 8192 -dantooine_7_1_ws 4096 -8192 6144 -6144 -dantooine_7_2_ws 4096 -6144 6144 -4096 -dantooine_7_3_ws 4096 -4096 6144 -2048 -dantooine_7_4_ws 4096 -2048 6144 0 -dantooine_7_5_ws 4096 0 6144 2048 -dantooine_7_6_ws 4096 2048 6144 4096 -dantooine_7_7_ws 4096 4096 6144 6144 -dantooine_7_8_ws 4096 6144 6144 8192 -dantooine_8_1_ws 6144 -8192 8192 -6144 -dantooine_8_2_ws 6144 -6144 8192 -4096 -dantooine_8_3_ws 6144 -4096 8192 -2048 -dantooine_8_4_ws 6144 -2048 8192 0 -dantooine_8_5_ws 6144 0 8192 2048 -dantooine_8_6_ws 6144 2048 8192 4096 -dantooine_8_7_ws 6144 4096 8192 6144 -dantooine_8_8_ws 6144 6144 8192 8192 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s s +dantooine_1_1 -8192 -8192 -6144 -6144 +dantooine_1_2 -8192 -6144 -6144 -4096 +dantooine_1_3 -8192 -4096 -6144 -2048 +dantooine_1_4 -8192 -2048 -6144 0 +dantooine_1_5 -8192 0 -6144 2048 +dantooine_1_6 -8192 2048 -6144 4096 +dantooine_1_7 -8192 4096 -6144 6144 +dantooine_1_8 -8192 6144 -6144 8192 +dantooine_2_1 -6144 -8192 -4096 -6144 +dantooine_2_2 -6144 -6144 -4096 -4096 +dantooine_2_3 -6144 -4096 -4096 -2048 +dantooine_2_4 -6144 -2048 -4096 0 +dantooine_2_5 -6144 0 -4096 2048 +dantooine_2_6 -6144 2048 -4096 4096 +dantooine_2_7 -6144 4096 -4096 6144 +dantooine_2_8 -6144 6144 -4096 8192 +dantooine_3_1 -4096 -8192 -2048 -6144 +dantooine_3_2 -4096 -6144 -2048 -4096 +dantooine_3_3 -4096 -4096 -2048 -2048 +dantooine_3_4 -4096 -2048 -2048 0 +dantooine_3_5 -4096 0 -2048 2048 +dantooine_3_6 -4096 2048 -2048 4096 +dantooine_3_7 -4096 4096 -2048 6144 +dantooine_3_8 -4096 6144 -2048 8192 +dantooine_4_1 -2048 -8192 0 -6144 +dantooine_4_2 -2048 -6144 0 -4096 +dantooine_4_3 -2048 -4096 0 -2048 +dantooine_4_4 -2048 -2048 0 0 +dantooine_4_5 -2048 0 0 2048 +dantooine_4_6 -2048 2048 0 4096 +dantooine_4_7 -2048 4096 0 6144 +dantooine_4_8 -2048 6144 0 8192 +dantooine_5_1 0 -8192 2048 -6144 +dantooine_5_2 0 -6144 2048 -4096 +dantooine_5_3 0 -4096 2048 -2048 +dantooine_5_4 0 -2048 2048 0 +dantooine_5_5 0 0 2048 2048 +dantooine_5_6 0 2048 2048 4096 +dantooine_5_7 0 4096 2048 6144 +dantooine_5_8 0 6144 2048 8192 +dantooine_6_1 2048 -8192 4096 -6144 +dantooine_6_2 2048 -6144 4096 -4096 +dantooine_6_3 2048 -4096 4096 -2048 +dantooine_6_4 2048 -2048 4096 0 +dantooine_6_5 2048 0 4096 2048 +dantooine_6_6 2048 2048 4096 4096 +dantooine_6_7 2048 4096 4096 6144 +dantooine_6_8 2048 6144 4096 8192 +dantooine_7_1 4096 -8192 6144 -6144 +dantooine_7_2 4096 -6144 6144 -4096 +dantooine_7_3 4096 -4096 6144 -2048 +dantooine_7_4 4096 -2048 6144 0 +dantooine_7_5 4096 0 6144 2048 +dantooine_7_6 4096 2048 6144 4096 +dantooine_7_7 4096 4096 6144 6144 +dantooine_7_8 4096 6144 6144 8192 +dantooine_8_1 6144 -8192 8192 -6144 +dantooine_8_2 6144 -6144 8192 -4096 +dantooine_8_3 6144 -4096 8192 -2048 +dantooine_8_4 6144 -2048 8192 0 +dantooine_8_5 6144 0 8192 2048 +dantooine_8_6 6144 2048 8192 4096 +dantooine_8_7 6144 4096 8192 6144 +dantooine_8_8 6144 6144 8192 8192 +dantooine_1_1_ws -8192 -8192 -6144 -6144 +dantooine_1_2_ws -8192 -6144 -6144 -4096 +dantooine_1_3_ws -8192 -4096 -6144 -2048 +dantooine_1_4_ws -8192 -2048 -6144 0 +dantooine_1_5_ws -8192 0 -6144 2048 +dantooine_1_6_ws -8192 2048 -6144 4096 +dantooine_1_7_ws -8192 4096 -6144 6144 +dantooine_1_8_ws -8192 6144 -6144 8192 +dantooine_2_1_ws -6144 -8192 -4096 -6144 +dantooine_2_2_ws -6144 -6144 -4096 -4096 +dantooine_2_3_ws -6144 -4096 -4096 -2048 +dantooine_2_4_ws -6144 -2048 -4096 0 +dantooine_2_5_ws -6144 0 -4096 2048 +dantooine_2_6_ws -6144 2048 -4096 4096 +dantooine_2_7_ws -6144 4096 -4096 6144 +dantooine_2_8_ws -6144 6144 -4096 8192 +dantooine_3_1_ws -4096 -8192 -2048 -6144 +dantooine_3_2_ws -4096 -6144 -2048 -4096 +dantooine_3_3_ws -4096 -4096 -2048 -2048 +dantooine_3_4_ws -4096 -2048 -2048 0 +dantooine_3_5_ws -4096 0 -2048 2048 +dantooine_3_6_ws -4096 2048 -2048 4096 +dantooine_3_7_ws -4096 4096 -2048 6144 +dantooine_3_8_ws -4096 6144 -2048 8192 +dantooine_4_1_ws -2048 -8192 0 -6144 +dantooine_4_2_ws -2048 -6144 0 -4096 +dantooine_4_3_ws -2048 -4096 0 -2048 +dantooine_4_4_ws -2048 -2048 0 0 +dantooine_4_5_ws -2048 0 0 2048 +dantooine_4_6_ws -2048 2048 0 4096 +dantooine_4_7_ws -2048 4096 0 6144 +dantooine_4_8_ws -2048 6144 0 8192 +dantooine_5_1_ws 0 -8192 2048 -6144 +dantooine_5_2_ws 0 -6144 2048 -4096 +dantooine_5_3_ws 0 -4096 2048 -2048 +dantooine_5_4_ws 0 -2048 2048 0 +dantooine_5_5_ws 0 0 2048 2048 +dantooine_5_6_ws 0 2048 2048 4096 +dantooine_5_7_ws 0 4096 2048 6144 +dantooine_5_8_ws 0 6144 2048 8192 +dantooine_6_1_ws 2048 -8192 4096 -6144 +dantooine_6_2_ws 2048 -6144 4096 -4096 +dantooine_6_3_ws 2048 -4096 4096 -2048 +dantooine_6_4_ws 2048 -2048 4096 0 +dantooine_6_5_ws 2048 0 4096 2048 +dantooine_6_6_ws 2048 2048 4096 4096 +dantooine_6_7_ws 2048 4096 4096 6144 +dantooine_6_8_ws 2048 6144 4096 8192 +dantooine_7_1_ws 4096 -8192 6144 -6144 +dantooine_7_2_ws 4096 -6144 6144 -4096 +dantooine_7_3_ws 4096 -4096 6144 -2048 +dantooine_7_4_ws 4096 -2048 6144 0 +dantooine_7_5_ws 4096 0 6144 2048 +dantooine_7_6_ws 4096 2048 6144 4096 +dantooine_7_7_ws 4096 4096 6144 6144 +dantooine_7_8_ws 4096 6144 6144 8192 +dantooine_8_1_ws 6144 -8192 8192 -6144 +dantooine_8_2_ws 6144 -6144 8192 -4096 +dantooine_8_3_ws 6144 -4096 8192 -2048 +dantooine_8_4_ws 6144 -2048 8192 0 +dantooine_8_5_ws 6144 0 8192 2048 +dantooine_8_6_ws 6144 2048 8192 4096 +dantooine_8_7_ws 6144 4096 8192 6144 +dantooine_8_8_ws 6144 6144 8192 8192 diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_dathomir.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_dathomir.tab index 6101d59aa..1ac345d23 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_dathomir.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_dathomir.tab @@ -1,130 +1,130 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s -dathomir_1_1 -8192 -8192 -6144 -6144 -dathomir_1_2 -8192 -6144 -6144 -4096 -dathomir_1_3 -8192 -4096 -6144 -2048 -dathomir_1_4 -8192 -2048 -6144 0 -dathomir_1_5 -8192 0 -6144 2048 -dathomir_1_6 -8192 2048 -6144 4096 -dathomir_1_7 -8192 4096 -6144 6144 -dathomir_1_8 -8192 6144 -6144 8192 -dathomir_2_1 -6144 -8192 -4096 -6144 -dathomir_2_2 -6144 -6144 -4096 -4096 -dathomir_2_3 -6144 -4096 -4096 -2048 -dathomir_2_4 -6144 -2048 -4096 0 -dathomir_2_5 -6144 0 -4096 2048 -dathomir_2_6 -6144 2048 -4096 4096 -dathomir_2_7 -6144 4096 -4096 6144 -dathomir_2_8 -6144 6144 -4096 8192 -dathomir_3_1 -4096 -8192 -2048 -6144 -dathomir_3_2 -4096 -6144 -2048 -4096 -dathomir_3_3 -4096 -4096 -2048 -2048 -dathomir_3_4 -4096 -2048 -2048 0 -dathomir_3_5 -4096 0 -2048 2048 -dathomir_3_6 -4096 2048 -2048 4096 -dathomir_3_7 -4096 4096 -2048 6144 -dathomir_3_8 -4096 6144 -2048 8192 -dathomir_4_1 -2048 -8192 0 -6144 -dathomir_4_2 -2048 -6144 0 -4096 -dathomir_4_3 -2048 -4096 0 -2048 -dathomir_4_4 -2048 -2048 0 0 -dathomir_4_5 -2048 0 0 2048 -dathomir_4_6 -2048 2048 0 4096 -dathomir_4_7 -2048 4096 0 6144 -dathomir_4_8 -2048 6144 0 8192 -dathomir_5_1 0 -8192 2048 -6144 -dathomir_5_2 0 -6144 2048 -4096 -dathomir_5_3 0 -4096 2048 -2048 -dathomir_5_4 0 -2048 2048 0 -dathomir_5_5 0 0 2048 2048 -dathomir_5_6 0 2048 2048 4096 -dathomir_5_7 0 4096 2048 6144 -dathomir_5_8 0 6144 2048 8192 -dathomir_6_1 2048 -8192 4096 -6144 -dathomir_6_2 2048 -6144 4096 -4096 -dathomir_6_3 2048 -4096 4096 -2048 -dathomir_6_4 2048 -2048 4096 0 -dathomir_6_5 2048 0 4096 2048 -dathomir_6_6 2048 2048 4096 4096 -dathomir_6_7 2048 4096 4096 6144 -dathomir_6_8 2048 6144 4096 8192 -dathomir_7_1 4096 -8192 6144 -6144 -dathomir_7_2 4096 -6144 6144 -4096 -dathomir_7_3 4096 -4096 6144 -2048 -dathomir_7_4 4096 -2048 6144 0 -dathomir_7_5 4096 0 6144 2048 -dathomir_7_6 4096 2048 6144 4096 -dathomir_7_7 4096 4096 6144 6144 -dathomir_7_8 4096 6144 6144 8192 -dathomir_8_1 6144 -8192 8192 -6144 -dathomir_8_2 6144 -6144 8192 -4096 -dathomir_8_3 6144 -4096 8192 -2048 -dathomir_8_4 6144 -2048 8192 0 -dathomir_8_5 6144 0 8192 2048 -dathomir_8_6 6144 2048 8192 4096 -dathomir_8_7 6144 4096 8192 6144 -dathomir_8_8 6144 6144 8192 8192 -dathomir_1_1_ws -8192 -8192 -6144 -6144 -dathomir_1_2_ws -8192 -6144 -6144 -4096 -dathomir_1_3_ws -8192 -4096 -6144 -2048 -dathomir_1_4_ws -8192 -2048 -6144 0 -dathomir_1_5_ws -8192 0 -6144 2048 -dathomir_1_6_ws -8192 2048 -6144 4096 -dathomir_1_7_ws -8192 4096 -6144 6144 -dathomir_1_8_ws -8192 6144 -6144 8192 -dathomir_2_1_ws -6144 -8192 -4096 -6144 -dathomir_2_2_ws -6144 -6144 -4096 -4096 -dathomir_2_3_ws -6144 -4096 -4096 -2048 -dathomir_2_4_ws -6144 -2048 -4096 0 -dathomir_2_5_ws -6144 0 -4096 2048 -dathomir_2_6_ws -6144 2048 -4096 4096 -dathomir_2_7_ws -6144 4096 -4096 6144 -dathomir_2_8_ws -6144 6144 -4096 8192 -dathomir_3_1_ws -4096 -8192 -2048 -6144 -dathomir_3_2_ws -4096 -6144 -2048 -4096 -dathomir_3_3_ws -4096 -4096 -2048 -2048 -dathomir_3_4_ws -4096 -2048 -2048 0 -dathomir_3_5_ws -4096 0 -2048 2048 -dathomir_3_6_ws -4096 2048 -2048 4096 -dathomir_3_7_ws -4096 4096 -2048 6144 -dathomir_3_8_ws -4096 6144 -2048 8192 -dathomir_4_1_ws -2048 -8192 0 -6144 -dathomir_4_2_ws -2048 -6144 0 -4096 -dathomir_4_3_ws -2048 -4096 0 -2048 -dathomir_4_4_ws -2048 -2048 0 0 -dathomir_4_5_ws -2048 0 0 2048 -dathomir_4_6_ws -2048 2048 0 4096 -dathomir_4_7_ws -2048 4096 0 6144 -dathomir_4_8_ws -2048 6144 0 8192 -dathomir_5_1_ws 0 -8192 2048 -6144 -dathomir_5_2_ws 0 -6144 2048 -4096 -dathomir_5_3_ws 0 -4096 2048 -2048 -dathomir_5_4_ws 0 -2048 2048 0 -dathomir_5_5_ws 0 0 2048 2048 -dathomir_5_6_ws 0 2048 2048 4096 -dathomir_5_7_ws 0 4096 2048 6144 -dathomir_5_8_ws 0 6144 2048 8192 -dathomir_6_1_ws 2048 -8192 4096 -6144 -dathomir_6_2_ws 2048 -6144 4096 -4096 -dathomir_6_3_ws 2048 -4096 4096 -2048 -dathomir_6_4_ws 2048 -2048 4096 0 -dathomir_6_5_ws 2048 0 4096 2048 -dathomir_6_6_ws 2048 2048 4096 4096 -dathomir_6_7_ws 2048 4096 4096 6144 -dathomir_6_8_ws 2048 6144 4096 8192 -dathomir_7_1_ws 4096 -8192 6144 -6144 -dathomir_7_2_ws 4096 -6144 6144 -4096 -dathomir_7_3_ws 4096 -4096 6144 -2048 -dathomir_7_4_ws 4096 -2048 6144 0 -dathomir_7_5_ws 4096 0 6144 2048 -dathomir_7_6_ws 4096 2048 6144 4096 -dathomir_7_7_ws 4096 4096 6144 6144 -dathomir_7_8_ws 4096 6144 6144 8192 -dathomir_8_1_ws 6144 -8192 8192 -6144 -dathomir_8_2_ws 6144 -6144 8192 -4096 -dathomir_8_3_ws 6144 -4096 8192 -2048 -dathomir_8_4_ws 6144 -2048 8192 0 -dathomir_8_5_ws 6144 0 8192 2048 -dathomir_8_6_ws 6144 2048 8192 4096 -dathomir_8_7_ws 6144 4096 8192 6144 -dathomir_8_8_ws 6144 6144 8192 8192 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s s +dathomir_1_1 -8192 -8192 -6144 -6144 +dathomir_1_2 -8192 -6144 -6144 -4096 +dathomir_1_3 -8192 -4096 -6144 -2048 +dathomir_1_4 -8192 -2048 -6144 0 +dathomir_1_5 -8192 0 -6144 2048 +dathomir_1_6 -8192 2048 -6144 4096 +dathomir_1_7 -8192 4096 -6144 6144 +dathomir_1_8 -8192 6144 -6144 8192 +dathomir_2_1 -6144 -8192 -4096 -6144 +dathomir_2_2 -6144 -6144 -4096 -4096 +dathomir_2_3 -6144 -4096 -4096 -2048 +dathomir_2_4 -6144 -2048 -4096 0 +dathomir_2_5 -6144 0 -4096 2048 +dathomir_2_6 -6144 2048 -4096 4096 +dathomir_2_7 -6144 4096 -4096 6144 +dathomir_2_8 -6144 6144 -4096 8192 +dathomir_3_1 -4096 -8192 -2048 -6144 +dathomir_3_2 -4096 -6144 -2048 -4096 +dathomir_3_3 -4096 -4096 -2048 -2048 +dathomir_3_4 -4096 -2048 -2048 0 +dathomir_3_5 -4096 0 -2048 2048 +dathomir_3_6 -4096 2048 -2048 4096 +dathomir_3_7 -4096 4096 -2048 6144 +dathomir_3_8 -4096 6144 -2048 8192 +dathomir_4_1 -2048 -8192 0 -6144 +dathomir_4_2 -2048 -6144 0 -4096 +dathomir_4_3 -2048 -4096 0 -2048 +dathomir_4_4 -2048 -2048 0 0 +dathomir_4_5 -2048 0 0 2048 +dathomir_4_6 -2048 2048 0 4096 +dathomir_4_7 -2048 4096 0 6144 +dathomir_4_8 -2048 6144 0 8192 +dathomir_5_1 0 -8192 2048 -6144 +dathomir_5_2 0 -6144 2048 -4096 +dathomir_5_3 0 -4096 2048 -2048 +dathomir_5_4 0 -2048 2048 0 +dathomir_5_5 0 0 2048 2048 +dathomir_5_6 0 2048 2048 4096 +dathomir_5_7 0 4096 2048 6144 +dathomir_5_8 0 6144 2048 8192 +dathomir_6_1 2048 -8192 4096 -6144 +dathomir_6_2 2048 -6144 4096 -4096 +dathomir_6_3 2048 -4096 4096 -2048 +dathomir_6_4 2048 -2048 4096 0 +dathomir_6_5 2048 0 4096 2048 +dathomir_6_6 2048 2048 4096 4096 +dathomir_6_7 2048 4096 4096 6144 +dathomir_6_8 2048 6144 4096 8192 +dathomir_7_1 4096 -8192 6144 -6144 +dathomir_7_2 4096 -6144 6144 -4096 +dathomir_7_3 4096 -4096 6144 -2048 +dathomir_7_4 4096 -2048 6144 0 +dathomir_7_5 4096 0 6144 2048 +dathomir_7_6 4096 2048 6144 4096 +dathomir_7_7 4096 4096 6144 6144 +dathomir_7_8 4096 6144 6144 8192 +dathomir_8_1 6144 -8192 8192 -6144 +dathomir_8_2 6144 -6144 8192 -4096 +dathomir_8_3 6144 -4096 8192 -2048 +dathomir_8_4 6144 -2048 8192 0 +dathomir_8_5 6144 0 8192 2048 +dathomir_8_6 6144 2048 8192 4096 +dathomir_8_7 6144 4096 8192 6144 +dathomir_8_8 6144 6144 8192 8192 +dathomir_1_1_ws -8192 -8192 -6144 -6144 +dathomir_1_2_ws -8192 -6144 -6144 -4096 +dathomir_1_3_ws -8192 -4096 -6144 -2048 +dathomir_1_4_ws -8192 -2048 -6144 0 +dathomir_1_5_ws -8192 0 -6144 2048 +dathomir_1_6_ws -8192 2048 -6144 4096 +dathomir_1_7_ws -8192 4096 -6144 6144 +dathomir_1_8_ws -8192 6144 -6144 8192 +dathomir_2_1_ws -6144 -8192 -4096 -6144 +dathomir_2_2_ws -6144 -6144 -4096 -4096 +dathomir_2_3_ws -6144 -4096 -4096 -2048 +dathomir_2_4_ws -6144 -2048 -4096 0 +dathomir_2_5_ws -6144 0 -4096 2048 +dathomir_2_6_ws -6144 2048 -4096 4096 +dathomir_2_7_ws -6144 4096 -4096 6144 +dathomir_2_8_ws -6144 6144 -4096 8192 +dathomir_3_1_ws -4096 -8192 -2048 -6144 +dathomir_3_2_ws -4096 -6144 -2048 -4096 +dathomir_3_3_ws -4096 -4096 -2048 -2048 +dathomir_3_4_ws -4096 -2048 -2048 0 +dathomir_3_5_ws -4096 0 -2048 2048 +dathomir_3_6_ws -4096 2048 -2048 4096 +dathomir_3_7_ws -4096 4096 -2048 6144 +dathomir_3_8_ws -4096 6144 -2048 8192 +dathomir_4_1_ws -2048 -8192 0 -6144 +dathomir_4_2_ws -2048 -6144 0 -4096 +dathomir_4_3_ws -2048 -4096 0 -2048 +dathomir_4_4_ws -2048 -2048 0 0 +dathomir_4_5_ws -2048 0 0 2048 +dathomir_4_6_ws -2048 2048 0 4096 +dathomir_4_7_ws -2048 4096 0 6144 +dathomir_4_8_ws -2048 6144 0 8192 +dathomir_5_1_ws 0 -8192 2048 -6144 +dathomir_5_2_ws 0 -6144 2048 -4096 +dathomir_5_3_ws 0 -4096 2048 -2048 +dathomir_5_4_ws 0 -2048 2048 0 +dathomir_5_5_ws 0 0 2048 2048 +dathomir_5_6_ws 0 2048 2048 4096 +dathomir_5_7_ws 0 4096 2048 6144 +dathomir_5_8_ws 0 6144 2048 8192 +dathomir_6_1_ws 2048 -8192 4096 -6144 +dathomir_6_2_ws 2048 -6144 4096 -4096 +dathomir_6_3_ws 2048 -4096 4096 -2048 +dathomir_6_4_ws 2048 -2048 4096 0 +dathomir_6_5_ws 2048 0 4096 2048 +dathomir_6_6_ws 2048 2048 4096 4096 +dathomir_6_7_ws 2048 4096 4096 6144 +dathomir_6_8_ws 2048 6144 4096 8192 +dathomir_7_1_ws 4096 -8192 6144 -6144 +dathomir_7_2_ws 4096 -6144 6144 -4096 +dathomir_7_3_ws 4096 -4096 6144 -2048 +dathomir_7_4_ws 4096 -2048 6144 0 +dathomir_7_5_ws 4096 0 6144 2048 +dathomir_7_6_ws 4096 2048 6144 4096 +dathomir_7_7_ws 4096 4096 6144 6144 +dathomir_7_8_ws 4096 6144 6144 8192 +dathomir_8_1_ws 6144 -8192 8192 -6144 +dathomir_8_2_ws 6144 -6144 8192 -4096 +dathomir_8_3_ws 6144 -4096 8192 -2048 +dathomir_8_4_ws 6144 -2048 8192 0 +dathomir_8_5_ws 6144 0 8192 2048 +dathomir_8_6_ws 6144 2048 8192 4096 +dathomir_8_7_ws 6144 4096 8192 6144 +dathomir_8_8_ws 6144 6144 8192 8192 diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_dungeon1.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_dungeon1.tab index 8f1752e9c..3f13f4093 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_dungeon1.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_dungeon1.tab @@ -1,69 +1,69 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s -npe_shared_station -300 0 0 300 -npe_shared_station -1200 0 -900 300 -npe_shared_station -2100 0 -1800 300 -npe_shared_station -3000 0 -2700 300 -npe_shared_station -3900 0 -3600 300 -npe_shared_station -4800 0 -4500 300 -nova_orion_station -5700 0 -5400 300 -npe_dungeon -400 800 0 1350 -npe_dungeon -1300 800 -900 1350 -npe_dungeon -2200 800 -1800 1350 -npe_dungeon -3100 800 -2700 1350 -npe_dungeon -4000 800 -3600 1350 -npe_dungeon -4900 800 -4500 1350 -heroic_axkva_min -7000 -7000 -6500 -6500 -heroic_axkva_min -6000 -7000 -5500 -6500 -heroic_axkva_min -5000 -7000 -4500 -6500 -heroic_axkva_min -4000 -7000 -3500 -6500 -heroic_axkva_min -3000 -7000 -2500 -6500 -heroic_axkva_min -2000 -7000 -1500 -6500 -heroic_axkva_min -1000 -7000 -500 -6500 -heroic_axkva_min 0 -7000 500 -6500 -heroic_axkva_min 1000 -7000 1500 -6500 -heroic_axkva_min 2000 -7000 2500 -6500 -heroic_ig88 -7000 -6000 -6500 -5500 -heroic_ig88 -6000 -6000 -5500 -5500 -heroic_ig88 -5000 -6000 -4500 -5500 -heroic_ig88 -4000 -6000 -3500 -5500 -heroic_ig88 -3000 -6000 -2500 -5500 -heroic_ig88 -2000 -6000 -1500 -5500 -heroic_ig88 -1000 -6000 -500 -5500 -heroic_ig88 0 -6000 500 -5500 -heroic_ig88 1000 -6000 1500 -5500 -heroic_ig88 2000 -6000 2500 -5500 -heroic_star_destroyer -7750 5500 -6750 7000 -heroic_star_destroyer -6150 5500 -5150 7000 -heroic_star_destroyer -4550 5500 -3550 7000 -heroic_star_destroyer -2950 5500 -1950 7000 -heroic_star_destroyer -1350 5500 -350 7000 -heroic_star_destroyer 250 5500 1250 7000 -heroic_star_destroyer 1850 5500 2850 7000 -heroic_star_destroyer 3450 5500 4450 7000 -heroic_star_destroyer 5050 5500 6050 7000 -heroic_star_destroyer 6650 5500 7650 7000 -heroic_exar_kun -7000 -4000 -6000 -3000 -heroic_exar_kun -5500 -4000 -4500 -3000 -heroic_exar_kun -4000 -4000 -3000 -3000 -heroic_exar_kun -2500 -4000 -1500 -3000 -heroic_exar_kun -1000 -4000 0 -3000 -heroic_exar_kun 500 -4000 1500 -3000 -heroic_exar_kun 2000 -4000 3000 -3000 -heroic_exar_kun 3500 -4000 4500 -3000 -heroic_exar_kun 5000 -4000 6000 -3000 -heroic_exar_kun 6500 -4000 7500 -3000 -mtp_hideout_instance 7284 2590 7584 2890 -mtp_hideout_instance 7284 2050 7584 2350 -mtp_hideout_instance 7284 1510 7584 1810 -mtp_hideout_instance 7284 970 7584 1270 -mtp_hideout_instance 7284 430 7584 730 -mtp_hideout_instance 7284 -110 7584 190 -mtp_hideout_instance 7284 -650 7584 -350 -mtp_hideout_instance 7284 -1190 7584 -890 -mtp_hideout_instance 7284 -1730 7584 -1430 -mtp_hideout_instance 7284 -2270 7584 -1970 -dungeon1_5_5_ws 0 0 2048 2048 -dungeon1_5_6_ws 0 2048 2048 4096 -dungeon1_6_5_ws 2048 0 4096 2048 -dungeon1_6_6_ws 2048 2048 4096 4096 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s s +npe_shared_station -300 0 0 300 light +npe_shared_station -1200 0 -900 300 medium +npe_shared_station -2100 0 -1800 300 medium +npe_shared_station -3000 0 -2700 300 heavy +npe_shared_station -3900 0 -3600 300 heavy +npe_shared_station -4800 0 -4500 300 heavy +nova_orion_station -5700 0 -5400 300 +npe_dungeon -400 800 0 1350 light +npe_dungeon -1300 800 -900 1350 medium +npe_dungeon -2200 800 -1800 1350 medium +npe_dungeon -3100 800 -2700 1350 heavy +npe_dungeon -4000 800 -3600 1350 heavy +npe_dungeon -4900 800 -4500 1350 heavy +heroic_axkva_min -7000 -7000 -6500 -6500 light +heroic_axkva_min -6000 -7000 -5500 -6500 medium +heroic_axkva_min -5000 -7000 -4500 -6500 medium +heroic_axkva_min -4000 -7000 -3500 -6500 medium +heroic_axkva_min -3000 -7000 -2500 -6500 medium +heroic_axkva_min -2000 -7000 -1500 -6500 heavy +heroic_axkva_min -1000 -7000 -500 -6500 heavy +heroic_axkva_min 0 -7000 500 -6500 heavy +heroic_axkva_min 1000 -7000 1500 -6500 heavy +heroic_axkva_min 2000 -7000 2500 -6500 heavy +heroic_ig88 -7000 -6000 -6500 -5500 light +heroic_ig88 -6000 -6000 -5500 -5500 medium +heroic_ig88 -5000 -6000 -4500 -5500 medium +heroic_ig88 -4000 -6000 -3500 -5500 medium +heroic_ig88 -3000 -6000 -2500 -5500 medium +heroic_ig88 -2000 -6000 -1500 -5500 heavy +heroic_ig88 -1000 -6000 -500 -5500 heavy +heroic_ig88 0 -6000 500 -5500 heavy +heroic_ig88 1000 -6000 1500 -5500 heavy +heroic_ig88 2000 -6000 2500 -5500 heavy +heroic_star_destroyer -7750 5500 -6750 7000 light +heroic_star_destroyer -6150 5500 -5150 7000 medium +heroic_star_destroyer -4550 5500 -3550 7000 medium +heroic_star_destroyer -2950 5500 -1950 7000 medium +heroic_star_destroyer -1350 5500 -350 7000 medium +heroic_star_destroyer 250 5500 1250 7000 heavy +heroic_star_destroyer 1850 5500 2850 7000 heavy +heroic_star_destroyer 3450 5500 4450 7000 heavy +heroic_star_destroyer 5050 5500 6050 7000 heavy +heroic_star_destroyer 6650 5500 7650 7000 heavy +heroic_exar_kun -7000 -4000 -6000 -3000 light +heroic_exar_kun -5500 -4000 -4500 -3000 medium +heroic_exar_kun -4000 -4000 -3000 -3000 medium +heroic_exar_kun -2500 -4000 -1500 -3000 medium +heroic_exar_kun -1000 -4000 0 -3000 medium +heroic_exar_kun 500 -4000 1500 -3000 heavy +heroic_exar_kun 2000 -4000 3000 -3000 heavy +heroic_exar_kun 3500 -4000 4500 -3000 heavy +heroic_exar_kun 5000 -4000 6000 -3000 heavy +heroic_exar_kun 6500 -4000 7500 -3000 heavy +mtp_hideout_instance 7284 2590 7584 2890 light +mtp_hideout_instance 7284 2050 7584 2350 medium +mtp_hideout_instance 7284 1510 7584 1810 medium +mtp_hideout_instance 7284 970 7584 1270 medium +mtp_hideout_instance 7284 430 7584 730 medium +mtp_hideout_instance 7284 -110 7584 190 heavy +mtp_hideout_instance 7284 -650 7584 -350 heavy +mtp_hideout_instance 7284 -1190 7584 -890 heavy +mtp_hideout_instance 7284 -1730 7584 -1430 heavy +mtp_hideout_instance 7284 -2270 7584 -1970 heavy +dungeon1_5_5_ws 0 0 2048 2048 +dungeon1_5_6_ws 0 2048 2048 4096 +dungeon1_6_5_ws 2048 0 4096 2048 +dungeon1_6_6_ws 2048 2048 4096 4096 diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_endor.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_endor.tab index 0796451f7..c024fe95f 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_endor.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_endor.tab @@ -1,131 +1,131 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s -endor_1_1 -8192 -8192 -6144 -6144 -endor_1_2 -8192 -6144 -6144 -4096 -endor_1_3 -8192 -4096 -6144 -2048 -endor_1_4 -8192 -2048 -6144 0 -endor_1_5 -8192 0 -6144 2048 -endor_1_6 -8192 2048 -6144 4096 -endor_1_7 -8192 4096 -6144 6144 -endor_1_8 -8192 6144 -6144 8192 -endor_2_1 -6144 -8192 -4096 -6144 -endor_2_2 -6144 -6144 -4096 -4096 -endor_2_3 -6144 -4096 -4096 -2048 -endor_2_4 -6144 -2048 -4096 0 -endor_2_5 -6144 0 -4096 2048 -endor_2_6 -6144 2048 -4096 4096 -endor_2_7 -6144 4096 -4096 6144 -endor_2_8 -6144 6144 -4096 8192 -endor_3_1 -4096 -8192 -2048 -6144 -endor_3_2 -4096 -6144 -2048 -4096 -endor_3_3 -4096 -4096 -2048 -2048 -endor_3_4 -4096 -2048 -2048 0 -endor_3_5 -4096 0 -2048 2048 -endor_3_6 -4096 2048 -2048 4096 -endor_3_7 -4096 4096 -2048 6144 -endor_3_8 -4096 6144 -2048 8192 -endor_4_1 -2048 -8192 0 -6144 -endor_4_2 -2048 -6144 0 -4096 -loveday_endor -2048 -6144 0 -4096 loveday -endor_4_3 -2048 -4096 0 -2048 -endor_4_4 -2048 -2048 0 0 -endor_4_5 -2048 0 0 2048 -endor_4_6 -2048 2048 0 4096 -endor_4_7 -2048 4096 0 6144 -endor_4_8 -2048 6144 0 8192 -endor_5_1 0 -8192 2048 -6144 -endor_5_2 0 -6144 2048 -4096 -endor_5_3 0 -4096 2048 -2048 -endor_5_4 0 -2048 2048 0 -endor_5_5 0 0 2048 2048 -endor_5_6 0 2048 2048 4096 -endor_5_7 0 4096 2048 6144 -endor_5_8 0 6144 2048 8192 -endor_6_1 2048 -8192 4096 -6144 -endor_6_2 2048 -6144 4096 -4096 -endor_6_3 2048 -4096 4096 -2048 -endor_6_4 2048 -2048 4096 0 -endor_6_5 2048 0 4096 2048 -endor_6_6 2048 2048 4096 4096 -endor_6_7 2048 4096 4096 6144 -endor_6_8 2048 6144 4096 8192 -endor_7_1 4096 -8192 6144 -6144 -endor_7_2 4096 -6144 6144 -4096 -endor_7_3 4096 -4096 6144 -2048 -endor_7_4 4096 -2048 6144 0 -endor_7_5 4096 0 6144 2048 -endor_7_6 4096 2048 6144 4096 -endor_7_7 4096 4096 6144 6144 -endor_7_8 4096 6144 6144 8192 -endor_8_1 6144 -8192 8192 -6144 -endor_8_2 6144 -6144 8192 -4096 -endor_8_3 6144 -4096 8192 -2048 -endor_8_4 6144 -2048 8192 0 -endor_8_5 6144 0 8192 2048 -endor_8_6 6144 2048 8192 4096 -endor_8_7 6144 4096 8192 6144 -endor_8_8 6144 6144 8192 8192 -endor_1_1_ws -8192 -8192 -6144 -6144 -endor_1_2_ws -8192 -6144 -6144 -4096 -endor_1_3_ws -8192 -4096 -6144 -2048 -endor_1_4_ws -8192 -2048 -6144 0 -endor_1_5_ws -8192 0 -6144 2048 -endor_1_6_ws -8192 2048 -6144 4096 -endor_1_7_ws -8192 4096 -6144 6144 -endor_1_8_ws -8192 6144 -6144 8192 -endor_2_1_ws -6144 -8192 -4096 -6144 -endor_2_2_ws -6144 -6144 -4096 -4096 -endor_2_3_ws -6144 -4096 -4096 -2048 -endor_2_4_ws -6144 -2048 -4096 0 -endor_2_5_ws -6144 0 -4096 2048 -endor_2_6_ws -6144 2048 -4096 4096 -endor_2_7_ws -6144 4096 -4096 6144 -endor_2_8_ws -6144 6144 -4096 8192 -endor_3_1_ws -4096 -8192 -2048 -6144 -endor_3_2_ws -4096 -6144 -2048 -4096 -endor_3_3_ws -4096 -4096 -2048 -2048 -endor_3_4_ws -4096 -2048 -2048 0 -endor_3_5_ws -4096 0 -2048 2048 -endor_3_6_ws -4096 2048 -2048 4096 -endor_3_7_ws -4096 4096 -2048 6144 -endor_3_8_ws -4096 6144 -2048 8192 -endor_4_1_ws -2048 -8192 0 -6144 -endor_4_2_ws -2048 -6144 0 -4096 -endor_4_3_ws -2048 -4096 0 -2048 -endor_4_4_ws -2048 -2048 0 0 -endor_4_5_ws -2048 0 0 2048 -endor_4_6_ws -2048 2048 0 4096 -endor_4_7_ws -2048 4096 0 6144 -endor_4_8_ws -2048 6144 0 8192 -endor_5_1_ws 0 -8192 2048 -6144 -endor_5_2_ws 0 -6144 2048 -4096 -endor_5_3_ws 0 -4096 2048 -2048 -endor_5_4_ws 0 -2048 2048 0 -endor_5_5_ws 0 0 2048 2048 -endor_5_6_ws 0 2048 2048 4096 -endor_5_7_ws 0 4096 2048 6144 -endor_5_8_ws 0 6144 2048 8192 -endor_6_1_ws 2048 -8192 4096 -6144 -endor_6_2_ws 2048 -6144 4096 -4096 -endor_6_3_ws 2048 -4096 4096 -2048 -endor_6_4_ws 2048 -2048 4096 0 -endor_6_5_ws 2048 0 4096 2048 -endor_6_6_ws 2048 2048 4096 4096 -endor_6_7_ws 2048 4096 4096 6144 -endor_6_8_ws 2048 6144 4096 8192 -endor_7_1_ws 4096 -8192 6144 -6144 -endor_7_2_ws 4096 -6144 6144 -4096 -endor_7_3_ws 4096 -4096 6144 -2048 -endor_7_4_ws 4096 -2048 6144 0 -endor_7_5_ws 4096 0 6144 2048 -endor_7_6_ws 4096 2048 6144 4096 -endor_7_7_ws 4096 4096 6144 6144 -endor_7_8_ws 4096 6144 6144 8192 -endor_8_1_ws 6144 -8192 8192 -6144 -endor_8_2_ws 6144 -6144 8192 -4096 -endor_8_3_ws 6144 -4096 8192 -2048 -endor_8_4_ws 6144 -2048 8192 0 -endor_8_5_ws 6144 0 8192 2048 -endor_8_6_ws 6144 2048 8192 4096 -endor_8_7_ws 6144 4096 8192 6144 -endor_8_8_ws 6144 6144 8192 8192 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s s +endor_1_1 -8192 -8192 -6144 -6144 +endor_1_2 -8192 -6144 -6144 -4096 +endor_1_3 -8192 -4096 -6144 -2048 +endor_1_4 -8192 -2048 -6144 0 +endor_1_5 -8192 0 -6144 2048 +endor_1_6 -8192 2048 -6144 4096 +endor_1_7 -8192 4096 -6144 6144 +endor_1_8 -8192 6144 -6144 8192 +endor_2_1 -6144 -8192 -4096 -6144 +endor_2_2 -6144 -6144 -4096 -4096 +endor_2_3 -6144 -4096 -4096 -2048 +endor_2_4 -6144 -2048 -4096 0 +endor_2_5 -6144 0 -4096 2048 +endor_2_6 -6144 2048 -4096 4096 +endor_2_7 -6144 4096 -4096 6144 +endor_2_8 -6144 6144 -4096 8192 +endor_3_1 -4096 -8192 -2048 -6144 +endor_3_2 -4096 -6144 -2048 -4096 +endor_3_3 -4096 -4096 -2048 -2048 +endor_3_4 -4096 -2048 -2048 0 +endor_3_5 -4096 0 -2048 2048 +endor_3_6 -4096 2048 -2048 4096 +endor_3_7 -4096 4096 -2048 6144 +endor_3_8 -4096 6144 -2048 8192 +endor_4_1 -2048 -8192 0 -6144 +endor_4_2 -2048 -6144 0 -4096 +loveday_endor -2048 -6144 0 -4096 loveday +endor_4_3 -2048 -4096 0 -2048 +endor_4_4 -2048 -2048 0 0 +endor_4_5 -2048 0 0 2048 +endor_4_6 -2048 2048 0 4096 +endor_4_7 -2048 4096 0 6144 +endor_4_8 -2048 6144 0 8192 +endor_5_1 0 -8192 2048 -6144 +endor_5_2 0 -6144 2048 -4096 +endor_5_3 0 -4096 2048 -2048 +endor_5_4 0 -2048 2048 0 +endor_5_5 0 0 2048 2048 +endor_5_6 0 2048 2048 4096 +endor_5_7 0 4096 2048 6144 +endor_5_8 0 6144 2048 8192 +endor_6_1 2048 -8192 4096 -6144 +endor_6_2 2048 -6144 4096 -4096 +endor_6_3 2048 -4096 4096 -2048 +endor_6_4 2048 -2048 4096 0 +endor_6_5 2048 0 4096 2048 +endor_6_6 2048 2048 4096 4096 +endor_6_7 2048 4096 4096 6144 +endor_6_8 2048 6144 4096 8192 +endor_7_1 4096 -8192 6144 -6144 +endor_7_2 4096 -6144 6144 -4096 +endor_7_3 4096 -4096 6144 -2048 +endor_7_4 4096 -2048 6144 0 +endor_7_5 4096 0 6144 2048 +endor_7_6 4096 2048 6144 4096 +endor_7_7 4096 4096 6144 6144 +endor_7_8 4096 6144 6144 8192 +endor_8_1 6144 -8192 8192 -6144 +endor_8_2 6144 -6144 8192 -4096 +endor_8_3 6144 -4096 8192 -2048 +endor_8_4 6144 -2048 8192 0 +endor_8_5 6144 0 8192 2048 +endor_8_6 6144 2048 8192 4096 +endor_8_7 6144 4096 8192 6144 +endor_8_8 6144 6144 8192 8192 +endor_1_1_ws -8192 -8192 -6144 -6144 +endor_1_2_ws -8192 -6144 -6144 -4096 +endor_1_3_ws -8192 -4096 -6144 -2048 +endor_1_4_ws -8192 -2048 -6144 0 +endor_1_5_ws -8192 0 -6144 2048 +endor_1_6_ws -8192 2048 -6144 4096 +endor_1_7_ws -8192 4096 -6144 6144 +endor_1_8_ws -8192 6144 -6144 8192 +endor_2_1_ws -6144 -8192 -4096 -6144 +endor_2_2_ws -6144 -6144 -4096 -4096 +endor_2_3_ws -6144 -4096 -4096 -2048 +endor_2_4_ws -6144 -2048 -4096 0 +endor_2_5_ws -6144 0 -4096 2048 +endor_2_6_ws -6144 2048 -4096 4096 +endor_2_7_ws -6144 4096 -4096 6144 +endor_2_8_ws -6144 6144 -4096 8192 +endor_3_1_ws -4096 -8192 -2048 -6144 +endor_3_2_ws -4096 -6144 -2048 -4096 +endor_3_3_ws -4096 -4096 -2048 -2048 +endor_3_4_ws -4096 -2048 -2048 0 +endor_3_5_ws -4096 0 -2048 2048 +endor_3_6_ws -4096 2048 -2048 4096 +endor_3_7_ws -4096 4096 -2048 6144 +endor_3_8_ws -4096 6144 -2048 8192 +endor_4_1_ws -2048 -8192 0 -6144 +endor_4_2_ws -2048 -6144 0 -4096 +endor_4_3_ws -2048 -4096 0 -2048 +endor_4_4_ws -2048 -2048 0 0 +endor_4_5_ws -2048 0 0 2048 +endor_4_6_ws -2048 2048 0 4096 +endor_4_7_ws -2048 4096 0 6144 +endor_4_8_ws -2048 6144 0 8192 +endor_5_1_ws 0 -8192 2048 -6144 +endor_5_2_ws 0 -6144 2048 -4096 +endor_5_3_ws 0 -4096 2048 -2048 +endor_5_4_ws 0 -2048 2048 0 +endor_5_5_ws 0 0 2048 2048 +endor_5_6_ws 0 2048 2048 4096 +endor_5_7_ws 0 4096 2048 6144 +endor_5_8_ws 0 6144 2048 8192 +endor_6_1_ws 2048 -8192 4096 -6144 +endor_6_2_ws 2048 -6144 4096 -4096 +endor_6_3_ws 2048 -4096 4096 -2048 +endor_6_4_ws 2048 -2048 4096 0 +endor_6_5_ws 2048 0 4096 2048 +endor_6_6_ws 2048 2048 4096 4096 +endor_6_7_ws 2048 4096 4096 6144 +endor_6_8_ws 2048 6144 4096 8192 +endor_7_1_ws 4096 -8192 6144 -6144 +endor_7_2_ws 4096 -6144 6144 -4096 +endor_7_3_ws 4096 -4096 6144 -2048 +endor_7_4_ws 4096 -2048 6144 0 +endor_7_5_ws 4096 0 6144 2048 +endor_7_6_ws 4096 2048 6144 4096 +endor_7_7_ws 4096 4096 6144 6144 +endor_7_8_ws 4096 6144 6144 8192 +endor_8_1_ws 6144 -8192 8192 -6144 +endor_8_2_ws 6144 -6144 8192 -4096 +endor_8_3_ws 6144 -4096 8192 -2048 +endor_8_4_ws 6144 -2048 8192 0 +endor_8_5_ws 6144 0 8192 2048 +endor_8_6_ws 6144 2048 8192 4096 +endor_8_7_ws 6144 4096 8192 6144 +endor_8_8_ws 6144 6144 8192 8192 diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_dead_forest.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_dead_forest.tab index 7e6e0a3a4..dc49e21da 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_dead_forest.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_dead_forest.tab @@ -1,3 +1,3 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s -kashyyyk_dead_forest -2048 -2048 2048 2048 -500 -500 500 500 kashyyyk_dead_forest +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s s +kashyyyk_dead_forest -2048 -2048 2048 2048 -500 -500 500 500 kashyyyk_dead_forest diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_hunting.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_hunting.tab index b5ddf7514..a51d86e63 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_hunting.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_hunting.tab @@ -1,3 +1,3 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s -kashyyyk_hunting -2048 -2048 2048 2048 -1422 -1422 1422 1422 kashyyyk_hunting +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s s +kashyyyk_hunting -2048 -2048 2048 2048 -1422 -1422 1422 1422 kashyyyk_hunting diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_main.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_main.tab index f5fb2193b..1f24ed73f 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_main.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_main.tab @@ -1,3 +1,3 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s -kashyyyk_main -4096 -4096 4096 4096 1 -1024 -824 1024 1024 -1024 -1024 1024 1024 kashyyyk_main +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s s +kashyyyk_main -4096 -4096 4096 4096 1 -1024 -824 1024 1024 -1024 -1024 1024 1024 kashyyyk_main diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_north_dungeons.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_north_dungeons.tab index 5d515e42e..5d894475e 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_north_dungeons.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_north_dungeons.tab @@ -1,18 +1,18 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s -slaver -3840 2816 -2816 3840 1 -slaver -2560 2816 -1536 3840 1 -slaver -1280 2816 -256 3840 1 -slaver 0 2816 1024 3840 1 -slaver 1280 2816 2304 3840 1 -slaver 2560 2816 3584 3840 1 -slaver -3840 1536 -2816 2560 1 -slaver -2560 1536 -1536 2560 1 -slaver -1280 1536 -256 2560 1 -slaver 0 1536 1024 2560 1 -slaver 1280 1536 2304 2560 1 -slaver 2560 1536 3584 2560 1 -arena 88 -2192 936 -1392 1 -arena 1352 -2192 2200 -1392 1 -arena 88 -3480 936 -2680 1 -arena 1352 -3480 2200 -2680 1 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s s +slaver -3840 2816 -2816 3840 1 light +slaver -2560 2816 -1536 3840 1 medium +slaver -1280 2816 -256 3840 1 medium +slaver 0 2816 1024 3840 1 medium +slaver 1280 2816 2304 3840 1 medium +slaver 2560 2816 3584 3840 1 medium +slaver -3840 1536 -2816 2560 1 heavy +slaver -2560 1536 -1536 2560 1 heavy +slaver -1280 1536 -256 2560 1 heavy +slaver 0 1536 1024 2560 1 heavy +slaver 1280 1536 2304 2560 1 heavy +slaver 2560 1536 3584 2560 1 heavy +arena 88 -2192 936 -1392 1 light +arena 1352 -2192 2200 -1392 1 medium +arena 88 -3480 936 -2680 1 heavy +arena 1352 -3480 2200 -2680 1 heavy diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_pob_dungeons.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_pob_dungeons.tab index 9ae11ec6a..b8c28e199 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_pob_dungeons.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_pob_dungeons.tab @@ -1,32 +1,32 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s -avatar_platform 1024 1024 2048 2048 0 -avatar_platform 2048 1024 3072 2048 0 -avatar_platform 3072 1024 4096 2048 0 -avatar_platform 4096 1024 5120 2048 0 -avatar_platform 5120 1024 6144 2048 0 -avatar_platform 1024 2048 2048 3072 0 -avatar_platform 2048 2048 3072 3072 0 -avatar_platform 3072 2048 4096 3072 0 -avatar_platform 4096 2048 5120 3072 0 -avatar_platform 5120 2048 6144 3072 0 -avatar_platform -2048 1024 -1024 2048 0 -avatar_platform -3072 1024 -2048 2048 0 -avatar_platform -4096 1024 -3072 2048 0 -avatar_platform -5120 1024 -4096 2048 0 -avatar_platform -6144 1024 -5120 2048 0 -avatar_platform -2048 2048 -1024 3072 0 -avatar_platform -3072 2048 -2048 3072 0 -avatar_platform -4096 2048 -3072 3072 0 -avatar_platform -5120 2048 -4096 3072 0 -avatar_platform -6144 2048 -5120 3072 0 -myyydril_caverns 1024 -2048 2048 -1024 0 -myyydril_caverns 2048 -2048 3072 -1024 0 -myyydril_caverns 3072 -2048 4096 -1024 0 -myyydril_caverns 4096 -2048 5120 -1024 0 -myyydril_caverns 5120 -2048 6144 -1024 0 -myyydril_caverns 1024 -3072 2048 -2048 0 -myyydril_caverns 2048 -3072 3072 -2048 0 -myyydril_caverns 3072 -3072 4096 -2048 0 -myyydril_caverns 4096 -3072 5120 -2048 0 -myyydril_caverns 5120 -3072 6144 -2048 0 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s s +avatar_platform 1024 1024 2048 2048 0 light +avatar_platform 2048 1024 3072 2048 0 medium +avatar_platform 3072 1024 4096 2048 0 medium +avatar_platform 4096 1024 5120 2048 0 medium +avatar_platform 5120 1024 6144 2048 0 medium +avatar_platform 1024 2048 2048 3072 0 medium +avatar_platform 2048 2048 3072 3072 0 medium +avatar_platform 3072 2048 4096 3072 0 medium +avatar_platform 4096 2048 5120 3072 0 medium +avatar_platform 5120 2048 6144 3072 0 heavy +avatar_platform -2048 1024 -1024 2048 0 heavy +avatar_platform -3072 1024 -2048 2048 0 heavy +avatar_platform -4096 1024 -3072 2048 0 heavy +avatar_platform -5120 1024 -4096 2048 0 heavy +avatar_platform -6144 1024 -5120 2048 0 heavy +avatar_platform -2048 2048 -1024 3072 0 heavy +avatar_platform -3072 2048 -2048 3072 0 heavy +avatar_platform -4096 2048 -3072 3072 0 heavy +avatar_platform -5120 2048 -4096 3072 0 heavy +avatar_platform -6144 2048 -5120 3072 0 heavy +myyydril_caverns 1024 -2048 2048 -1024 0 light +myyydril_caverns 2048 -2048 3072 -1024 0 medium +myyydril_caverns 3072 -2048 4096 -1024 0 medium +myyydril_caverns 4096 -2048 5120 -1024 0 medium +myyydril_caverns 5120 -2048 6144 -1024 0 medium +myyydril_caverns 1024 -3072 2048 -2048 0 heavy +myyydril_caverns 2048 -3072 3072 -2048 0 heavy +myyydril_caverns 3072 -3072 4096 -2048 0 heavy +myyydril_caverns 4096 -3072 5120 -2048 0 heavy +myyydril_caverns 5120 -3072 6144 -2048 0 heavy diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_rryatt_trail.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_rryatt_trail.tab index db11be769..cf3190346 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_rryatt_trail.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_rryatt_trail.tab @@ -1,26 +1,26 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s -kashyyyk_rryatt_trail_lvl_1_and_2 -3908 3114 -2208 4614 -kashyyyk_rryatt_trail_lvl_3 -2208 2614 -408 4614 -kashyyyk_rryatt_trail_lvl_4 -3908 1864 -2208 3114 -kashyyyk_rryatt_trail_lvl_5 -2208 1864 -708 2614 -kashyyyk_rryatt_trail_lvl_1_and_2 444 3130 2144 4630 -kashyyyk_rryatt_trail_lvl_3 2144 2630 3944 4630 -kashyyyk_rryatt_trail_lvl_4 444 1880 2144 3130 -kashyyyk_rryatt_trail_lvl_5 2144 1880 3644 2630 -kashyyyk_rryatt_trail_lvl_1_and_2 -3892 -182 -2192 1318 -kashyyyk_rryatt_trail_lvl_3 -2192 -682 -392 1318 -kashyyyk_rryatt_trail_lvl_4 -3892 -1432 -2192 -182 -kashyyyk_rryatt_trail_lvl_5 -2192 -1432 -692 -682 -kashyyyk_rryatt_trail_lvl_1_and_2 460 -166 2160 1334 -kashyyyk_rryatt_trail_lvl_3 2160 -666 3960 1334 -kashyyyk_rryatt_trail_lvl_4 460 -1416 2160 -166 -kashyyyk_rryatt_trail_lvl_5 2160 -1416 3660 -666 -kashyyyk_rryatt_trail_lvl_1_and_2 -3924 -3622 -2224 -2122 -kashyyyk_rryatt_trail_lvl_3 -2224 -4122 -424 -2122 -kashyyyk_rryatt_trail_lvl_4 -3924 -4872 -2224 -3622 -kashyyyk_rryatt_trail_lvl_5 -2224 -4872 -724 -4122 -kashyyyk_rryatt_trail_lvl_1_and_2 428 -3606 2128 -2106 -kashyyyk_rryatt_trail_lvl_3 2128 -4106 3928 -2106 -kashyyyk_rryatt_trail_lvl_4 428 -4856 2128 -3606 -kashyyyk_rryatt_trail_lvl_5 2128 -4856 3628 -4106 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s s +kashyyyk_rryatt_trail_lvl_1_and_2 -3908 3114 -2208 4614 light +kashyyyk_rryatt_trail_lvl_3 -2208 2614 -408 4614 light +kashyyyk_rryatt_trail_lvl_4 -3908 1864 -2208 3114 light +kashyyyk_rryatt_trail_lvl_5 -2208 1864 -708 2614 light +kashyyyk_rryatt_trail_lvl_1_and_2 444 3130 2144 4630 medium +kashyyyk_rryatt_trail_lvl_3 2144 2630 3944 4630 medium +kashyyyk_rryatt_trail_lvl_4 444 1880 2144 3130 medium +kashyyyk_rryatt_trail_lvl_5 2144 1880 3644 2630 medium +kashyyyk_rryatt_trail_lvl_1_and_2 -3892 -182 -2192 1318 medium +kashyyyk_rryatt_trail_lvl_3 -2192 -682 -392 1318 medium +kashyyyk_rryatt_trail_lvl_4 -3892 -1432 -2192 -182 medium +kashyyyk_rryatt_trail_lvl_5 -2192 -1432 -692 -682 medium +kashyyyk_rryatt_trail_lvl_1_and_2 460 -166 2160 1334 heavy +kashyyyk_rryatt_trail_lvl_3 2160 -666 3960 1334 heavy +kashyyyk_rryatt_trail_lvl_4 460 -1416 2160 -166 heavy +kashyyyk_rryatt_trail_lvl_5 2160 -1416 3660 -666 heavy +kashyyyk_rryatt_trail_lvl_1_and_2 -3924 -3622 -2224 -2122 heavy +kashyyyk_rryatt_trail_lvl_3 -2224 -4122 -424 -2122 heavy +kashyyyk_rryatt_trail_lvl_4 -3924 -4872 -2224 -3622 heavy +kashyyyk_rryatt_trail_lvl_5 -2224 -4872 -724 -4122 heavy +kashyyyk_rryatt_trail_lvl_1_and_2 428 -3606 2128 -2106 heavy +kashyyyk_rryatt_trail_lvl_3 2128 -4106 3928 -2106 heavy +kashyyyk_rryatt_trail_lvl_4 428 -4856 2128 -3606 heavy +kashyyyk_rryatt_trail_lvl_5 2128 -4856 3628 -4106 heavy diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_south_dungeons.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_south_dungeons.tab index b6b6a84ca..394c8d999 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_south_dungeons.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_kashyyyk_south_dungeons.tab @@ -1,26 +1,26 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s -hracca -3968 2944 -2944 3968 1 -hracca -2816 2944 -1792 3968 1 -hracca -1664 2944 -640 3968 1 -hracca -3968 1792 -2944 2816 1 -hracca -2816 1792 -1792 2816 1 -hracca -1664 1792 -640 2816 1 -hracca -3968 640 -2944 1664 1 -hracca -2816 640 -1792 1664 1 -hracca -1664 640 -640 1664 1 -hracca -3968 -512 -2944 512 1 -hracca -2816 -512 -1792 512 1 -hracca -1664 -512 -640 512 1 -bocctyyy 128 -256 640 256 1 -bocctyyy 768 -256 1284 256 1 -bocctyyy 1412 -256 1924 256 1 -bocctyyy 2052 -256 2564 256 1 -bocctyyy 128 -896 640 -384 1 -bocctyyy 768 -896 1284 -384 1 -bocctyyy 1412 -896 1924 -384 1 -bocctyyy 2052 -896 2564 -384 1 -bocctyyy 128 -1536 640 -1024 1 -bocctyyy 768 -1536 1284 -1024 1 -bocctyyy 1408 -1536 1928 -1024 1 -bocctyyy 2052 -1536 2564 -1024 1 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s s +hracca -3968 2944 -2944 3968 1 light +hracca -2816 2944 -1792 3968 1 medium +hracca -1664 2944 -640 3968 1 medium +hracca -3968 1792 -2944 2816 1 medium +hracca -2816 1792 -1792 2816 1 medium +hracca -1664 1792 -640 2816 1 medium +hracca -3968 640 -2944 1664 1 heavy +hracca -2816 640 -1792 1664 1 heavy +hracca -1664 640 -640 1664 1 heavy +hracca -3968 -512 -2944 512 1 heavy +hracca -2816 -512 -1792 512 1 heavy +hracca -1664 -512 -640 512 1 heavy +bocctyyy 128 -256 640 256 1 light +bocctyyy 768 -256 1284 256 1 medium +bocctyyy 1412 -256 1924 256 1 medium +bocctyyy 2052 -256 2564 256 1 medium +bocctyyy 128 -896 640 -384 1 medium +bocctyyy 768 -896 1284 -384 1 medium +bocctyyy 1412 -896 1924 -384 1 heavy +bocctyyy 2052 -896 2564 -384 1 heavy +bocctyyy 128 -1536 640 -1024 1 heavy +bocctyyy 768 -1536 1284 -1024 1 heavy +bocctyyy 1408 -1536 1928 -1024 1 heavy +bocctyyy 2052 -1536 2564 -1024 1 heavy diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_lok.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_lok.tab index 638cc9920..9ea22e5f3 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_lok.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_lok.tab @@ -1,132 +1,132 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s -lok_1_1 -8192 -8192 -6144 -6144 -lok_1_2 -8192 -6144 -6144 -4096 -lok_1_3 -8192 -4096 -6144 -2048 -lok_1_4 -8192 -2048 -6144 0 -lok_1_5 -8192 0 -6144 2048 -lok_1_6 -8192 2048 -6144 4096 -lok_1_7 -8192 4096 -6144 6144 -lok_1_8 -8192 6144 -6144 8192 -lok_2_1 -6144 -8192 -4096 -6144 -lok_2_2 -6144 -6144 -4096 -4096 -lok_2_3 -6144 -4096 -4096 -2048 -lok_2_4 -6144 -2048 -4096 0 -lok_2_5 -6144 0 -4096 2048 -lok_2_6 -6144 2048 -4096 4096 -lok_2_7 -6144 4096 -4096 6144 -lok_2_8 -6144 6144 -4096 8192 -lok_3_1 -4096 -8192 -2048 -6144 -lok_3_2 -4096 -6144 -2048 -4096 -lok_3_3 -4096 -4096 -2048 -2048 -lok_3_4 -4096 -2048 -2048 0 -lok_3_5 -4096 0 -2048 2048 -lok_3_6 -4096 2048 -2048 4096 -lok_3_7 -4096 4096 -2048 6144 -lok_3_8 -4096 6144 -2048 8192 -lok_4_1 -2048 -8192 0 -6144 -lok_4_2 -2048 -6144 0 -4096 -lok_4_3 -2048 -4096 0 -2048 -empireday_imp_outpost -2048 -4096 0 -2048 empireday_ceremony -lok_4_4 -2048 -2048 0 0 -lok_4_5 -2048 0 0 2048 -lok_4_6 -2048 2048 0 4096 -lok_4_7 -2048 4096 0 6144 -lok_4_8 -2048 6144 0 8192 -lok_5_1 0 -8192 2048 -6144 -lok_5_2 0 -6144 2048 -4096 -lok_5_3 0 -4096 2048 -2048 -lok_5_4 0 -2048 2048 0 -lok_5_5 0 0 2048 2048 -lok_5_6 0 2048 2048 4096 -lok_5_7 0 4096 2048 6144 -remembranceday_nyms 0 4096 2048 6144 empireday_ceremony -lok_5_8 0 6144 2048 8192 -lok_6_1 2048 -8192 4096 -6144 -lok_6_2 2048 -6144 4096 -4096 -lok_6_3 2048 -4096 4096 -2048 -lok_6_4 2048 -2048 4096 0 -lok_6_5 2048 0 4096 2048 -lok_6_6 2048 2048 4096 4096 -lok_6_7 2048 4096 4096 6144 -lok_6_8 2048 6144 4096 8192 -lok_7_1 4096 -8192 6144 -6144 -lok_7_2 4096 -6144 6144 -4096 -lok_7_3 4096 -4096 6144 -2048 -lok_7_4 4096 -2048 6144 0 -lok_7_5 4096 0 6144 2048 -lok_7_6 4096 2048 6144 4096 -lok_7_7 4096 4096 6144 6144 -lok_7_8 4096 6144 6144 8192 -lok_8_1 6144 -8192 8192 -6144 -lok_8_2 6144 -6144 8192 -4096 -lok_8_3 6144 -4096 8192 -2048 -lok_8_4 6144 -2048 8192 0 -lok_8_5 6144 0 8192 2048 -lok_8_6 6144 2048 8192 4096 -lok_8_7 6144 4096 8192 6144 -lok_8_8 6144 6144 8192 8192 -lok_1_1_ws -8192 -8192 -6144 -6144 -lok_1_2_ws -8192 -6144 -6144 -4096 -lok_1_3_ws -8192 -4096 -6144 -2048 -lok_1_4_ws -8192 -2048 -6144 0 -lok_1_5_ws -8192 0 -6144 2048 -lok_1_6_ws -8192 2048 -6144 4096 -lok_1_7_ws -8192 4096 -6144 6144 -lok_1_8_ws -8192 6144 -6144 8192 -lok_2_1_ws -6144 -8192 -4096 -6144 -lok_2_2_ws -6144 -6144 -4096 -4096 -lok_2_3_ws -6144 -4096 -4096 -2048 -lok_2_4_ws -6144 -2048 -4096 0 -lok_2_5_ws -6144 0 -4096 2048 -lok_2_6_ws -6144 2048 -4096 4096 -lok_2_7_ws -6144 4096 -4096 6144 -lok_2_8_ws -6144 6144 -4096 8192 -lok_3_1_ws -4096 -8192 -2048 -6144 -lok_3_2_ws -4096 -6144 -2048 -4096 -lok_3_3_ws -4096 -4096 -2048 -2048 -lok_3_4_ws -4096 -2048 -2048 0 -lok_3_5_ws -4096 0 -2048 2048 -lok_3_6_ws -4096 2048 -2048 4096 -lok_3_7_ws -4096 4096 -2048 6144 -lok_3_8_ws -4096 6144 -2048 8192 -lok_4_1_ws -2048 -8192 0 -6144 -lok_4_2_ws -2048 -6144 0 -4096 -lok_4_3_ws -2048 -4096 0 -2048 -lok_4_4_ws -2048 -2048 0 0 -lok_4_5_ws -2048 0 0 2048 -lok_4_6_ws -2048 2048 0 4096 -lok_4_7_ws -2048 4096 0 6144 -lok_4_8_ws -2048 6144 0 8192 -lok_5_1_ws 0 -8192 2048 -6144 -lok_5_2_ws 0 -6144 2048 -4096 -lok_5_3_ws 0 -4096 2048 -2048 -lok_5_4_ws 0 -2048 2048 0 -lok_5_5_ws 0 0 2048 2048 -lok_5_6_ws 0 2048 2048 4096 -lok_5_7_ws 0 4096 2048 6144 -lok_5_8_ws 0 6144 2048 8192 -lok_6_1_ws 2048 -8192 4096 -6144 -lok_6_2_ws 2048 -6144 4096 -4096 -lok_6_3_ws 2048 -4096 4096 -2048 -lok_6_4_ws 2048 -2048 4096 0 -lok_6_5_ws 2048 0 4096 2048 -lok_6_6_ws 2048 2048 4096 4096 -lok_6_7_ws 2048 4096 4096 6144 -lok_6_8_ws 2048 6144 4096 8192 -lok_7_1_ws 4096 -8192 6144 -6144 -lok_7_2_ws 4096 -6144 6144 -4096 -lok_7_3_ws 4096 -4096 6144 -2048 -lok_7_4_ws 4096 -2048 6144 0 -lok_7_5_ws 4096 0 6144 2048 -lok_7_6_ws 4096 2048 6144 4096 -lok_7_7_ws 4096 4096 6144 6144 -lok_7_8_ws 4096 6144 6144 8192 -lok_8_1_ws 6144 -8192 8192 -6144 -lok_8_2_ws 6144 -6144 8192 -4096 -lok_8_3_ws 6144 -4096 8192 -2048 -lok_8_4_ws 6144 -2048 8192 0 -lok_8_5_ws 6144 0 8192 2048 -lok_8_6_ws 6144 2048 8192 4096 -lok_8_7_ws 6144 4096 8192 6144 -lok_8_8_ws 6144 6144 8192 8192 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s s +lok_1_1 -8192 -8192 -6144 -6144 +lok_1_2 -8192 -6144 -6144 -4096 +lok_1_3 -8192 -4096 -6144 -2048 +lok_1_4 -8192 -2048 -6144 0 +lok_1_5 -8192 0 -6144 2048 +lok_1_6 -8192 2048 -6144 4096 +lok_1_7 -8192 4096 -6144 6144 +lok_1_8 -8192 6144 -6144 8192 +lok_2_1 -6144 -8192 -4096 -6144 +lok_2_2 -6144 -6144 -4096 -4096 +lok_2_3 -6144 -4096 -4096 -2048 +lok_2_4 -6144 -2048 -4096 0 +lok_2_5 -6144 0 -4096 2048 +lok_2_6 -6144 2048 -4096 4096 +lok_2_7 -6144 4096 -4096 6144 +lok_2_8 -6144 6144 -4096 8192 +lok_3_1 -4096 -8192 -2048 -6144 +lok_3_2 -4096 -6144 -2048 -4096 +lok_3_3 -4096 -4096 -2048 -2048 +lok_3_4 -4096 -2048 -2048 0 +lok_3_5 -4096 0 -2048 2048 +lok_3_6 -4096 2048 -2048 4096 +lok_3_7 -4096 4096 -2048 6144 +lok_3_8 -4096 6144 -2048 8192 +lok_4_1 -2048 -8192 0 -6144 +lok_4_2 -2048 -6144 0 -4096 +lok_4_3 -2048 -4096 0 -2048 +empireday_imp_outpost -2048 -4096 0 -2048 empireday_ceremony +lok_4_4 -2048 -2048 0 0 +lok_4_5 -2048 0 0 2048 +lok_4_6 -2048 2048 0 4096 +lok_4_7 -2048 4096 0 6144 +lok_4_8 -2048 6144 0 8192 +lok_5_1 0 -8192 2048 -6144 +lok_5_2 0 -6144 2048 -4096 +lok_5_3 0 -4096 2048 -2048 +lok_5_4 0 -2048 2048 0 +lok_5_5 0 0 2048 2048 +lok_5_6 0 2048 2048 4096 +lok_5_7 0 4096 2048 6144 +remembranceday_nyms 0 4096 2048 6144 empireday_ceremony +lok_5_8 0 6144 2048 8192 +lok_6_1 2048 -8192 4096 -6144 +lok_6_2 2048 -6144 4096 -4096 +lok_6_3 2048 -4096 4096 -2048 +lok_6_4 2048 -2048 4096 0 +lok_6_5 2048 0 4096 2048 +lok_6_6 2048 2048 4096 4096 +lok_6_7 2048 4096 4096 6144 +lok_6_8 2048 6144 4096 8192 +lok_7_1 4096 -8192 6144 -6144 +lok_7_2 4096 -6144 6144 -4096 +lok_7_3 4096 -4096 6144 -2048 +lok_7_4 4096 -2048 6144 0 +lok_7_5 4096 0 6144 2048 +lok_7_6 4096 2048 6144 4096 +lok_7_7 4096 4096 6144 6144 +lok_7_8 4096 6144 6144 8192 +lok_8_1 6144 -8192 8192 -6144 +lok_8_2 6144 -6144 8192 -4096 +lok_8_3 6144 -4096 8192 -2048 +lok_8_4 6144 -2048 8192 0 +lok_8_5 6144 0 8192 2048 +lok_8_6 6144 2048 8192 4096 +lok_8_7 6144 4096 8192 6144 +lok_8_8 6144 6144 8192 8192 +lok_1_1_ws -8192 -8192 -6144 -6144 +lok_1_2_ws -8192 -6144 -6144 -4096 +lok_1_3_ws -8192 -4096 -6144 -2048 +lok_1_4_ws -8192 -2048 -6144 0 +lok_1_5_ws -8192 0 -6144 2048 +lok_1_6_ws -8192 2048 -6144 4096 +lok_1_7_ws -8192 4096 -6144 6144 +lok_1_8_ws -8192 6144 -6144 8192 +lok_2_1_ws -6144 -8192 -4096 -6144 +lok_2_2_ws -6144 -6144 -4096 -4096 +lok_2_3_ws -6144 -4096 -4096 -2048 +lok_2_4_ws -6144 -2048 -4096 0 +lok_2_5_ws -6144 0 -4096 2048 +lok_2_6_ws -6144 2048 -4096 4096 +lok_2_7_ws -6144 4096 -4096 6144 +lok_2_8_ws -6144 6144 -4096 8192 +lok_3_1_ws -4096 -8192 -2048 -6144 +lok_3_2_ws -4096 -6144 -2048 -4096 +lok_3_3_ws -4096 -4096 -2048 -2048 +lok_3_4_ws -4096 -2048 -2048 0 +lok_3_5_ws -4096 0 -2048 2048 +lok_3_6_ws -4096 2048 -2048 4096 +lok_3_7_ws -4096 4096 -2048 6144 +lok_3_8_ws -4096 6144 -2048 8192 +lok_4_1_ws -2048 -8192 0 -6144 +lok_4_2_ws -2048 -6144 0 -4096 +lok_4_3_ws -2048 -4096 0 -2048 +lok_4_4_ws -2048 -2048 0 0 +lok_4_5_ws -2048 0 0 2048 +lok_4_6_ws -2048 2048 0 4096 +lok_4_7_ws -2048 4096 0 6144 +lok_4_8_ws -2048 6144 0 8192 +lok_5_1_ws 0 -8192 2048 -6144 +lok_5_2_ws 0 -6144 2048 -4096 +lok_5_3_ws 0 -4096 2048 -2048 +lok_5_4_ws 0 -2048 2048 0 +lok_5_5_ws 0 0 2048 2048 +lok_5_6_ws 0 2048 2048 4096 +lok_5_7_ws 0 4096 2048 6144 +lok_5_8_ws 0 6144 2048 8192 +lok_6_1_ws 2048 -8192 4096 -6144 +lok_6_2_ws 2048 -6144 4096 -4096 +lok_6_3_ws 2048 -4096 4096 -2048 +lok_6_4_ws 2048 -2048 4096 0 +lok_6_5_ws 2048 0 4096 2048 +lok_6_6_ws 2048 2048 4096 4096 +lok_6_7_ws 2048 4096 4096 6144 +lok_6_8_ws 2048 6144 4096 8192 +lok_7_1_ws 4096 -8192 6144 -6144 +lok_7_2_ws 4096 -6144 6144 -4096 +lok_7_3_ws 4096 -4096 6144 -2048 +lok_7_4_ws 4096 -2048 6144 0 +lok_7_5_ws 4096 0 6144 2048 +lok_7_6_ws 4096 2048 6144 4096 +lok_7_7_ws 4096 4096 6144 6144 +lok_7_8_ws 4096 6144 6144 8192 +lok_8_1_ws 6144 -8192 8192 -6144 +lok_8_2_ws 6144 -6144 8192 -4096 +lok_8_3_ws 6144 -4096 8192 -2048 +lok_8_4_ws 6144 -2048 8192 0 +lok_8_5_ws 6144 0 8192 2048 +lok_8_6_ws 6144 2048 8192 4096 +lok_8_7_ws 6144 4096 8192 6144 +lok_8_8_ws 6144 6144 8192 8192 diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_mustafar.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_mustafar.tab index bfdb54143..9b4a2471c 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_mustafar.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_mustafar.tab @@ -1,90 +1,90 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s -mustafar_main_nw -6880 2848 -2304 6976 1 -6880 -1024 1120 6976 1 -2304 2848 -6880 -1024 1120 6976 mustafar_main -mustafar_main_ne -2304 2848 1120 6976 1 -6880 -1024 1120 6976 1 -2304 2848 -6880 -1024 1120 6976 mustafar_main -mustafar_main_sw -6880 -1024 -3480 2848 1 -6880 -1024 1120 6976 1 -2304 2848 -6880 -1024 1120 6976 mustafar_main -mustafar_main_se -3480 -1024 1120 2848 1 -6880 -1024 1120 6976 1 -2304 2848 -6880 -1024 1120 6976 mustafar_main -mustafar_volcano 1552 6016 2576 7040 1 0x1 0 -mustafar_volcano 1552 4592 2576 5616 1 0x1 0 -mustafar_volcano 1552 3168 2576 4192 1 0x1 0 -mustafar_volcano 1552 1744 2576 2768 1 0x1 0 -mustafar_volcano 1552 320 2576 1344 1 0x1 0 -mustafar_volcano 1552 -1104 2576 -80 1 0x1 0 -mustafar_volcano 3040 6014 4064 7038 1 0 -mustafar_volcano 3040 4590 4064 5614 1 0 -mustafar_volcano 3040 3166 4064 4190 1 0 -mustafar_volcano 3040 1742 4064 2766 1 0 -mustafar_volcano 3040 318 4064 1342 1 0 -mustafar_volcano 3040 -1106 4064 -82 1 0 -mustafar_droid_army 4560 5952 5072 6464 1 0 -mustafar_droid_army 4560 5020 5072 5532 1 0 -mustafar_droid_army 4560 4032 5072 4544 1 0 -mustafar_droid_army 4560 3088 5072 3600 1 0 -mustafar_droid_army 4560 2160 5072 2672 1 0 -mustafar_droid_army 4560 1168 5072 1680 1 0 -mustafar_droid_army 4560 192 5072 704 1 0 -mustafar_droid_army 4560 -741 5072 -229 1 0 -uplink_cave 5700 6000 6200 6500 1 0 0 -uplink_cave 5700 5300 6200 5800 1 0 0 -uplink_cave 5700 4600 6200 5100 1 0 0 -uplink_cave 5700 3900 6200 4400 1 0 0 -uplink_cave 5700 3200 6200 3700 1 0 0 -uplink_cave 5700 2500 6200 3000 1 0 0 -uplink_cave 5700 1800 6200 2300 1 0 0 -uplink_cave 5700 1100 6200 1600 1 0 0 -obiwan_crystal_cave 6500 6700 7000 7200 1 0 0 -obiwan_crystal_cave 6500 6000 7000 6500 1 0 0 -obiwan_crystal_cave 6500 5300 7000 5800 1 0 0 -obiwan_crystal_cave 6500 4600 7000 5100 1 0 0 -obiwan_crystal_cave 6500 3900 7000 4400 1 0 0 -obiwan_crystal_cave 6500 3200 7000 3700 1 0 0 -obiwan_crystal_cave 6500 2500 7000 3000 1 0 0 -obiwan_crystal_cave 6500 1800 7000 2300 1 0 0 -obiwan_crystal_cave 6500 1100 7000 1600 1 0 0 -obiwan_crystal_cave 6500 400 7000 900 1 0 0 -obiwan_crystal_cave 6500 -300 7000 200 1 0 0 -obiwan_crystal_cave 6500 -1000 7000 -500 1 0 0 -decrepit_droid_factory -7000 -3000 -6500 -2500 1 0 0 -decrepit_droid_factory -6300 -3000 -5800 -2500 1 0 0 -decrepit_droid_factory -5600 -3000 -5100 -2500 1 0 0 -decrepit_droid_factory -4900 -3000 -4400 -2500 1 0 0 -decrepit_droid_factory -4200 -3000 -3700 -2500 1 0 0 -decrepit_droid_factory -3500 -3000 -3000 -2500 1 0 0 -decrepit_droid_factory -2800 -3000 -2300 -2500 1 0 0 -decrepit_droid_factory -2100 -3000 -1600 -2500 1 0 0 -working_droid_factory -7000 -4000 -6500 -3500 1 0 0 -working_droid_factory -6300 -4000 -5800 -3500 1 0 0 -working_droid_factory -5600 -4000 -5100 -3500 1 0 0 -working_droid_factory -4900 -4000 -4400 -3500 1 0 0 -working_droid_factory -4200 -4000 -3700 -3500 1 0 0 -working_droid_factory -3500 -4000 -3000 -3500 1 0 0 -working_droid_factory -2800 -4000 -2300 -3500 1 0 0 -working_droid_factory -2100 -4000 -1600 -3500 1 0 0 -working_droid_factory -1400 -4000 -900 -3500 1 0 0 -working_droid_factory -700 -4000 -200 -3500 1 0 0 -working_droid_factory 0 -4000 500 -3500 1 0 0 -working_droid_factory 700 -4000 1200 -3500 1 0 0 -old_republic_facility -7000 -5000 -6500 -4500 1 0 0 -old_republic_facility -6300 -5000 -5800 -4500 1 0 0 -old_republic_facility -5600 -5000 -5100 -4500 1 0 0 -old_republic_facility -4900 -5000 -4400 -4500 1 0 0 -old_republic_facility -4200 -5000 -3700 -4500 1 0 0 -old_republic_facility -3500 -5000 -3000 -4500 1 0 0 -old_republic_facility -2800 -5000 -2300 -4500 1 0 0 -old_republic_facility -2100 -5000 -1600 -4500 1 0 0 -old_republic_facility -1400 -5000 -900 -4500 1 0 0 -old_republic_facility -700 -5000 -200 -4500 1 0 0 -old_republic_facility 0 -5000 500 -4500 1 0 0 -old_republic_facility 700 -5000 1200 -4500 1 0 0 -sher_kar_cave -7000 -6000 -6500 -5500 1 0 0 -sher_kar_cave -6300 -6000 -5800 -5500 1 0 0 -sher_kar_cave -5600 -6000 -5100 -5500 1 0 0 -sher_kar_cave -4900 -6000 -4400 -5500 1 0 0 -sher_kar_cave -4200 -6000 -3700 -5500 1 0 0 -sher_kar_cave -3500 -6000 -3000 -5500 1 0 0 -sher_kar_cave -2800 -6000 -2300 -5500 1 0 0 -sher_kar_cave -2100 -6000 -1600 -5500 1 0 0 -sher_kar_cave -1400 -6000 -900 -5500 1 0 0 -sher_kar_cave -700 -6000 -200 -5500 1 0 0 -sher_kar_cave 0 -6000 500 -5500 1 0 0 -sher_kar_cave 700 -6000 1200 -5500 1 0 0 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[1] b[1] b[0] b[1] s s +mustafar_main_nw -6880 2848 -2304 6976 1 -6880 -1024 1120 6976 1 -2304 2848 -6880 -1024 1120 6976 mustafar_main +mustafar_main_ne -2304 2848 1120 6976 1 -6880 -1024 1120 6976 1 -2304 2848 -6880 -1024 1120 6976 mustafar_main +mustafar_main_sw -6880 -1024 -3480 2848 1 -6880 -1024 1120 6976 1 -2304 2848 -6880 -1024 1120 6976 mustafar_main +mustafar_main_se -3480 -1024 1120 2848 1 -6880 -1024 1120 6976 1 -2304 2848 -6880 -1024 1120 6976 mustafar_main +mustafar_volcano 1552 6016 2576 7040 1 0x1 0 light +mustafar_volcano 1552 4592 2576 5616 1 0x1 0 medium +mustafar_volcano 1552 3168 2576 4192 1 0x1 0 medium +mustafar_volcano 1552 1744 2576 2768 1 0x1 0 medium +mustafar_volcano 1552 320 2576 1344 1 0x1 0 medium +mustafar_volcano 1552 -1104 2576 -80 1 0x1 0 medium +mustafar_volcano 3040 6014 4064 7038 1 0 heavy +mustafar_volcano 3040 4590 4064 5614 1 0 heavy +mustafar_volcano 3040 3166 4064 4190 1 0 heavy +mustafar_volcano 3040 1742 4064 2766 1 0 heavy +mustafar_volcano 3040 318 4064 1342 1 0 heavy +mustafar_volcano 3040 -1106 4064 -82 1 0 heavy +mustafar_droid_army 4560 5952 5072 6464 1 0 light +mustafar_droid_army 4560 5020 5072 5532 1 0 medium +mustafar_droid_army 4560 4032 5072 4544 1 0 medium +mustafar_droid_army 4560 3088 5072 3600 1 0 medium +mustafar_droid_army 4560 2160 5072 2672 1 0 heavy +mustafar_droid_army 4560 1168 5072 1680 1 0 heavy +mustafar_droid_army 4560 192 5072 704 1 0 heavy +mustafar_droid_army 4560 -741 5072 -229 1 0 heavy +uplink_cave 5700 6000 6200 6500 1 0 0 light +uplink_cave 5700 5300 6200 5800 1 0 0 medium +uplink_cave 5700 4600 6200 5100 1 0 0 medium +uplink_cave 5700 3900 6200 4400 1 0 0 medium +uplink_cave 5700 3200 6200 3700 1 0 0 heavy +uplink_cave 5700 2500 6200 3000 1 0 0 heavy +uplink_cave 5700 1800 6200 2300 1 0 0 heavy +uplink_cave 5700 1100 6200 1600 1 0 0 heavy +obiwan_crystal_cave 6500 6700 7000 7200 1 0 0 light +obiwan_crystal_cave 6500 6000 7000 6500 1 0 0 medium +obiwan_crystal_cave 6500 5300 7000 5800 1 0 0 medium +obiwan_crystal_cave 6500 4600 7000 5100 1 0 0 medium +obiwan_crystal_cave 6500 3900 7000 4400 1 0 0 medium +obiwan_crystal_cave 6500 3200 7000 3700 1 0 0 medium +obiwan_crystal_cave 6500 2500 7000 3000 1 0 0 heavy +obiwan_crystal_cave 6500 1800 7000 2300 1 0 0 heavy +obiwan_crystal_cave 6500 1100 7000 1600 1 0 0 heavy +obiwan_crystal_cave 6500 400 7000 900 1 0 0 heavy +obiwan_crystal_cave 6500 -300 7000 200 1 0 0 heavy +obiwan_crystal_cave 6500 -1000 7000 -500 1 0 0 heavy +decrepit_droid_factory -7000 -3000 -6500 -2500 1 0 0 light +decrepit_droid_factory -6300 -3000 -5800 -2500 1 0 0 medium +decrepit_droid_factory -5600 -3000 -5100 -2500 1 0 0 medium +decrepit_droid_factory -4900 -3000 -4400 -2500 1 0 0 medium +decrepit_droid_factory -4200 -3000 -3700 -2500 1 0 0 heavy +decrepit_droid_factory -3500 -3000 -3000 -2500 1 0 0 heavy +decrepit_droid_factory -2800 -3000 -2300 -2500 1 0 0 heavy +decrepit_droid_factory -2100 -3000 -1600 -2500 1 0 0 heavy +working_droid_factory -7000 -4000 -6500 -3500 1 0 0 light +working_droid_factory -6300 -4000 -5800 -3500 1 0 0 medium +working_droid_factory -5600 -4000 -5100 -3500 1 0 0 medium +working_droid_factory -4900 -4000 -4400 -3500 1 0 0 medium +working_droid_factory -4200 -4000 -3700 -3500 1 0 0 medium +working_droid_factory -3500 -4000 -3000 -3500 1 0 0 medium +working_droid_factory -2800 -4000 -2300 -3500 1 0 0 heavy +working_droid_factory -2100 -4000 -1600 -3500 1 0 0 heavy +working_droid_factory -1400 -4000 -900 -3500 1 0 0 heavy +working_droid_factory -700 -4000 -200 -3500 1 0 0 heavy +working_droid_factory 0 -4000 500 -3500 1 0 0 heavy +working_droid_factory 700 -4000 1200 -3500 1 0 0 heavy +old_republic_facility -7000 -5000 -6500 -4500 1 0 0 light +old_republic_facility -6300 -5000 -5800 -4500 1 0 0 medium +old_republic_facility -5600 -5000 -5100 -4500 1 0 0 medium +old_republic_facility -4900 -5000 -4400 -4500 1 0 0 medium +old_republic_facility -4200 -5000 -3700 -4500 1 0 0 medium +old_republic_facility -3500 -5000 -3000 -4500 1 0 0 medium +old_republic_facility -2800 -5000 -2300 -4500 1 0 0 heavy +old_republic_facility -2100 -5000 -1600 -4500 1 0 0 heavy +old_republic_facility -1400 -5000 -900 -4500 1 0 0 heavy +old_republic_facility -700 -5000 -200 -4500 1 0 0 heavy +old_republic_facility 0 -5000 500 -4500 1 0 0 heavy +old_republic_facility 700 -5000 1200 -4500 1 0 0 heavy +sher_kar_cave -7000 -6000 -6500 -5500 1 0 0 light +sher_kar_cave -6300 -6000 -5800 -5500 1 0 0 medium +sher_kar_cave -5600 -6000 -5100 -5500 1 0 0 medium +sher_kar_cave -4900 -6000 -4400 -5500 1 0 0 medium +sher_kar_cave -4200 -6000 -3700 -5500 1 0 0 medium +sher_kar_cave -3500 -6000 -3000 -5500 1 0 0 medium +sher_kar_cave -2800 -6000 -2300 -5500 1 0 0 heavy +sher_kar_cave -2100 -6000 -1600 -5500 1 0 0 heavy +sher_kar_cave -1400 -6000 -900 -5500 1 0 0 heavy +sher_kar_cave -700 -6000 -200 -5500 1 0 0 heavy +sher_kar_cave 0 -6000 500 -5500 1 0 0 heavy +sher_kar_cave 700 -6000 1200 -5500 1 0 0 heavy diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_naboo.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_naboo.tab index 342690825..4916b0fcb 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_naboo.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_naboo.tab @@ -1,134 +1,134 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s -naboo_1_1 -8192 -8192 -6144 -6144 -naboo_1_2 -8192 -6144 -6144 -4096 -naboo_1_3 -8192 -4096 -6144 -2048 -naboo_1_4 -8192 -2048 -6144 0 -naboo_1_5 -8192 0 -6144 2048 -naboo_1_6 -8192 2048 -6144 4096 -naboo_1_7 -8192 4096 -6144 6144 -naboo_1_8 -8192 6144 -6144 8192 -naboo_2_1 -6144 -8192 -4096 -6144 -naboo_2_2 -6144 -6144 -4096 -4096 -naboo_2_3 -6144 -4096 -4096 -2048 -naboo_2_4 -6144 -2048 -4096 0 -naboo_2_5 -6144 0 -4096 2048 -naboo_2_6 -6144 2048 -4096 4096 -naboo_2_7 -6144 4096 -4096 6144 -empireday_theed -6144 4096 -4096 6144 empireday_ceremony -naboo_2_8 -6144 6144 -4096 8192 -naboo_3_1 -4096 -8192 -2048 -6144 -naboo_3_2 -4096 -6144 -2048 -4096 -naboo_3_3 -4096 -4096 -2048 -2048 -naboo_3_4 -4096 -2048 -2048 0 -naboo_3_5 -4096 0 -2048 2048 -naboo_3_6 -4096 2048 -2048 4096 -naboo_3_7 -4096 4096 -2048 6144 -naboo_3_8 -4096 6144 -2048 8192 -naboo_4_1 -2048 -8192 0 -6144 -naboo_4_2 -2048 -6144 0 -4096 -naboo_4_3 -2048 -4096 0 -2048 -naboo_4_4 -2048 -2048 0 0 -naboo_4_5 -2048 0 0 2048 -naboo_4_6 -2048 2048 0 4096 -naboo_4_7 -2048 4096 0 6144 -naboo_4_8 -2048 6144 0 8192 -naboo_5_1 0 -8192 2048 -6144 -naboo_5_2 0 -6144 2048 -4096 -naboo_5_3 0 -4096 2048 -2048 -naboo_5_4 0 -2048 2048 0 -naboo_5_5 0 0 2048 2048 -naboo_5_6 0 2048 2048 4096 -naboo_5_7 0 4096 2048 6144 -naboo_5_8 0 6144 2048 8192 -naboo_6_1 2048 -8192 4096 -6144 -naboo_6_2 2048 -6144 4096 -4096 -naboo_6_3 2048 -4096 4096 -2048 -naboo_6_4 2048 -2048 4096 0 -naboo_6_5 2048 0 4096 2048 -naboo_6_6 2048 2048 4096 4096 -naboo_6_7 2048 4096 4096 6144 -naboo_6_8 2048 6144 4096 8192 -naboo_7_1 4096 -8192 6144 -6144 -naboo_7_2 4096 -6144 6144 -4096 -server_halloween_moenia 4096 -6144 6144 -4096 halloween -naboo_7_3 4096 -4096 6144 -2048 -naboo_7_4 4096 -2048 6144 0 -naboo_7_5 4096 0 6144 2048 -naboo_7_6 4096 2048 6144 4096 -naboo_7_7 4096 4096 6144 6144 -naboo_7_8 4096 6144 6144 8192 -loveday_kaadara 4096 6144 6144 8192 loveday -naboo_8_1 6144 -8192 8192 -6144 -naboo_8_2 6144 -6144 8192 -4096 -naboo_8_3 6144 -4096 8192 -2048 -naboo_8_4 6144 -2048 8192 0 -naboo_8_5 6144 0 8192 2048 -naboo_8_6 6144 2048 8192 4096 -naboo_8_7 6144 4096 8192 6144 -naboo_8_8 6144 6144 8192 8192 -naboo_1_1_ws -8192 -8192 -6144 -6144 -naboo_1_2_ws -8192 -6144 -6144 -4096 -naboo_1_3_ws -8192 -4096 -6144 -2048 -naboo_1_4_ws -8192 -2048 -6144 0 -naboo_1_5_ws -8192 0 -6144 2048 -naboo_1_6_ws -8192 2048 -6144 4096 -naboo_1_7_ws -8192 4096 -6144 6144 -naboo_1_8_ws -8192 6144 -6144 8192 -naboo_2_1_ws -6144 -8192 -4096 -6144 -naboo_2_2_ws -6144 -6144 -4096 -4096 -naboo_2_3_ws -6144 -4096 -4096 -2048 -naboo_2_4_ws -6144 -2048 -4096 0 -naboo_2_5_ws -6144 0 -4096 2048 -naboo_2_6_ws -6144 2048 -4096 4096 -naboo_2_7_ws -6144 4096 -4096 6144 -naboo_2_8_ws -6144 6144 -4096 8192 -naboo_3_1_ws -4096 -8192 -2048 -6144 -naboo_3_2_ws -4096 -6144 -2048 -4096 -naboo_3_3_ws -4096 -4096 -2048 -2048 -naboo_3_4_ws -4096 -2048 -2048 0 -naboo_3_5_ws -4096 0 -2048 2048 -naboo_3_6_ws -4096 2048 -2048 4096 -naboo_3_7_ws -4096 4096 -2048 6144 -naboo_3_8_ws -4096 6144 -2048 8192 -naboo_4_1_ws -2048 -8192 0 -6144 -naboo_4_2_ws -2048 -6144 0 -4096 -naboo_4_3_ws -2048 -4096 0 -2048 -naboo_4_4_ws -2048 -2048 0 0 -naboo_4_5_ws -2048 0 0 2048 -naboo_4_6_ws -2048 2048 0 4096 -naboo_4_7_ws -2048 4096 0 6144 -naboo_4_8_ws -2048 6144 0 8192 -naboo_5_1_ws 0 -8192 2048 -6144 -naboo_5_2_ws 0 -6144 2048 -4096 -naboo_5_3_ws 0 -4096 2048 -2048 -naboo_5_4_ws 0 -2048 2048 0 -naboo_5_5_ws 0 0 2048 2048 -naboo_5_6_ws 0 2048 2048 4096 -naboo_5_7_ws 0 4096 2048 6144 -naboo_5_8_ws 0 6144 2048 8192 -naboo_6_1_ws 2048 -8192 4096 -6144 -naboo_6_2_ws 2048 -6144 4096 -4096 -naboo_6_3_ws 2048 -4096 4096 -2048 -naboo_6_4_ws 2048 -2048 4096 0 -naboo_6_5_ws 2048 0 4096 2048 -naboo_6_6_ws 2048 2048 4096 4096 -naboo_6_7_ws 2048 4096 4096 6144 -naboo_6_8_ws 2048 6144 4096 8192 -naboo_7_1_ws 4096 -8192 6144 -6144 -naboo_7_2_ws 4096 -6144 6144 -4096 -naboo_7_3_ws 4096 -4096 6144 -2048 -naboo_7_4_ws 4096 -2048 6144 0 -naboo_7_5_ws 4096 0 6144 2048 -naboo_7_6_ws 4096 2048 6144 4096 -naboo_7_7_ws 4096 4096 6144 6144 -naboo_7_8_ws 4096 6144 6144 8192 -naboo_8_1_ws 6144 -8192 8192 -6144 -naboo_8_2_ws 6144 -6144 8192 -4096 -naboo_8_3_ws 6144 -4096 8192 -2048 -naboo_8_4_ws 6144 -2048 8192 0 -naboo_8_5_ws 6144 0 8192 2048 -naboo_8_6_ws 6144 2048 8192 4096 -naboo_8_7_ws 6144 4096 8192 6144 -naboo_8_8_ws 6144 6144 8192 8192 -naboo_player_tribute_kimaria -6144 -2048 -4096 0 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s s +naboo_1_1 -8192 -8192 -6144 -6144 +naboo_1_2 -8192 -6144 -6144 -4096 +naboo_1_3 -8192 -4096 -6144 -2048 +naboo_1_4 -8192 -2048 -6144 0 +naboo_1_5 -8192 0 -6144 2048 +naboo_1_6 -8192 2048 -6144 4096 +naboo_1_7 -8192 4096 -6144 6144 +naboo_1_8 -8192 6144 -6144 8192 +naboo_2_1 -6144 -8192 -4096 -6144 +naboo_2_2 -6144 -6144 -4096 -4096 +naboo_2_3 -6144 -4096 -4096 -2048 +naboo_2_4 -6144 -2048 -4096 0 +naboo_2_5 -6144 0 -4096 2048 +naboo_2_6 -6144 2048 -4096 4096 +naboo_2_7 -6144 4096 -4096 6144 +empireday_theed -6144 4096 -4096 6144 empireday_ceremony +naboo_2_8 -6144 6144 -4096 8192 +naboo_3_1 -4096 -8192 -2048 -6144 +naboo_3_2 -4096 -6144 -2048 -4096 +naboo_3_3 -4096 -4096 -2048 -2048 +naboo_3_4 -4096 -2048 -2048 0 +naboo_3_5 -4096 0 -2048 2048 +naboo_3_6 -4096 2048 -2048 4096 +naboo_3_7 -4096 4096 -2048 6144 +naboo_3_8 -4096 6144 -2048 8192 +naboo_4_1 -2048 -8192 0 -6144 +naboo_4_2 -2048 -6144 0 -4096 +naboo_4_3 -2048 -4096 0 -2048 +naboo_4_4 -2048 -2048 0 0 +naboo_4_5 -2048 0 0 2048 +naboo_4_6 -2048 2048 0 4096 +naboo_4_7 -2048 4096 0 6144 +naboo_4_8 -2048 6144 0 8192 +naboo_5_1 0 -8192 2048 -6144 +naboo_5_2 0 -6144 2048 -4096 +naboo_5_3 0 -4096 2048 -2048 +naboo_5_4 0 -2048 2048 0 +naboo_5_5 0 0 2048 2048 +naboo_5_6 0 2048 2048 4096 +naboo_5_7 0 4096 2048 6144 +naboo_5_8 0 6144 2048 8192 +naboo_6_1 2048 -8192 4096 -6144 +naboo_6_2 2048 -6144 4096 -4096 +naboo_6_3 2048 -4096 4096 -2048 +naboo_6_4 2048 -2048 4096 0 +naboo_6_5 2048 0 4096 2048 +naboo_6_6 2048 2048 4096 4096 +naboo_6_7 2048 4096 4096 6144 +naboo_6_8 2048 6144 4096 8192 +naboo_7_1 4096 -8192 6144 -6144 +naboo_7_2 4096 -6144 6144 -4096 +server_halloween_moenia 4096 -6144 6144 -4096 halloween +naboo_7_3 4096 -4096 6144 -2048 +naboo_7_4 4096 -2048 6144 0 +naboo_7_5 4096 0 6144 2048 +naboo_7_6 4096 2048 6144 4096 +naboo_7_7 4096 4096 6144 6144 +naboo_7_8 4096 6144 6144 8192 +loveday_kaadara 4096 6144 6144 8192 loveday +naboo_8_1 6144 -8192 8192 -6144 +naboo_8_2 6144 -6144 8192 -4096 +naboo_8_3 6144 -4096 8192 -2048 +naboo_8_4 6144 -2048 8192 0 +naboo_8_5 6144 0 8192 2048 +naboo_8_6 6144 2048 8192 4096 +naboo_8_7 6144 4096 8192 6144 +naboo_8_8 6144 6144 8192 8192 +naboo_1_1_ws -8192 -8192 -6144 -6144 +naboo_1_2_ws -8192 -6144 -6144 -4096 +naboo_1_3_ws -8192 -4096 -6144 -2048 +naboo_1_4_ws -8192 -2048 -6144 0 +naboo_1_5_ws -8192 0 -6144 2048 +naboo_1_6_ws -8192 2048 -6144 4096 +naboo_1_7_ws -8192 4096 -6144 6144 +naboo_1_8_ws -8192 6144 -6144 8192 +naboo_2_1_ws -6144 -8192 -4096 -6144 +naboo_2_2_ws -6144 -6144 -4096 -4096 +naboo_2_3_ws -6144 -4096 -4096 -2048 +naboo_2_4_ws -6144 -2048 -4096 0 +naboo_2_5_ws -6144 0 -4096 2048 +naboo_2_6_ws -6144 2048 -4096 4096 +naboo_2_7_ws -6144 4096 -4096 6144 +naboo_2_8_ws -6144 6144 -4096 8192 +naboo_3_1_ws -4096 -8192 -2048 -6144 +naboo_3_2_ws -4096 -6144 -2048 -4096 +naboo_3_3_ws -4096 -4096 -2048 -2048 +naboo_3_4_ws -4096 -2048 -2048 0 +naboo_3_5_ws -4096 0 -2048 2048 +naboo_3_6_ws -4096 2048 -2048 4096 +naboo_3_7_ws -4096 4096 -2048 6144 +naboo_3_8_ws -4096 6144 -2048 8192 +naboo_4_1_ws -2048 -8192 0 -6144 +naboo_4_2_ws -2048 -6144 0 -4096 +naboo_4_3_ws -2048 -4096 0 -2048 +naboo_4_4_ws -2048 -2048 0 0 +naboo_4_5_ws -2048 0 0 2048 +naboo_4_6_ws -2048 2048 0 4096 +naboo_4_7_ws -2048 4096 0 6144 +naboo_4_8_ws -2048 6144 0 8192 +naboo_5_1_ws 0 -8192 2048 -6144 +naboo_5_2_ws 0 -6144 2048 -4096 +naboo_5_3_ws 0 -4096 2048 -2048 +naboo_5_4_ws 0 -2048 2048 0 +naboo_5_5_ws 0 0 2048 2048 +naboo_5_6_ws 0 2048 2048 4096 +naboo_5_7_ws 0 4096 2048 6144 +naboo_5_8_ws 0 6144 2048 8192 +naboo_6_1_ws 2048 -8192 4096 -6144 +naboo_6_2_ws 2048 -6144 4096 -4096 +naboo_6_3_ws 2048 -4096 4096 -2048 +naboo_6_4_ws 2048 -2048 4096 0 +naboo_6_5_ws 2048 0 4096 2048 +naboo_6_6_ws 2048 2048 4096 4096 +naboo_6_7_ws 2048 4096 4096 6144 +naboo_6_8_ws 2048 6144 4096 8192 +naboo_7_1_ws 4096 -8192 6144 -6144 +naboo_7_2_ws 4096 -6144 6144 -4096 +naboo_7_3_ws 4096 -4096 6144 -2048 +naboo_7_4_ws 4096 -2048 6144 0 +naboo_7_5_ws 4096 0 6144 2048 +naboo_7_6_ws 4096 2048 6144 4096 +naboo_7_7_ws 4096 4096 6144 6144 +naboo_7_8_ws 4096 6144 6144 8192 +naboo_8_1_ws 6144 -8192 8192 -6144 +naboo_8_2_ws 6144 -6144 8192 -4096 +naboo_8_3_ws 6144 -4096 8192 -2048 +naboo_8_4_ws 6144 -2048 8192 0 +naboo_8_5_ws 6144 0 8192 2048 +naboo_8_6_ws 6144 2048 8192 4096 +naboo_8_7_ws 6144 4096 8192 6144 +naboo_8_8_ws 6144 6144 8192 8192 +naboo_player_tribute_kimaria -6144 -2048 -4096 0 diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_rori.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_rori.tab index 59ed20e42..ca19c71de 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_rori.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_rori.tab @@ -1,134 +1,134 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s -rori_1_1 -8192 -8192 -6144 -6144 -empireday_imp_crashsite_03 -8192 -8192 -6144 -6144 empireday_ceremony -rori_1_2 -8192 -6144 -6144 -4096 -rori_1_3 -8192 -4096 -6144 -2048 -rori_1_4 -8192 -2048 -6144 0 -rori_1_5 -8192 0 -6144 2048 -rori_1_6 -8192 2048 -6144 4096 -rori_1_7 -8192 4096 -6144 6144 -rori_1_8 -8192 6144 -6144 8192 -rori_2_1 -6144 -8192 -4096 -6144 -rori_2_2 -6144 -6144 -4096 -4096 -rori_2_3 -6144 -4096 -4096 -2048 -rori_2_4 -6144 -2048 -4096 0 -rori_2_5 -6144 0 -4096 2048 -rori_2_6 -6144 2048 -4096 4096 -rori_2_7 -6144 4096 -4096 6144 -rori_2_8 -6144 6144 -4096 8192 -rori_3_1 -4096 -8192 -2048 -6144 -rori_3_2 -4096 -6144 -2048 -4096 -rori_3_3 -4096 -4096 -2048 -2048 -rori_3_4 -4096 -2048 -2048 0 -rori_3_5 -4096 0 -2048 2048 -rori_3_6 -4096 2048 -2048 4096 -rori_3_7 -4096 4096 -2048 6144 -rori_3_8 -4096 6144 -2048 8192 -rori_4_1 -2048 -8192 0 -6144 -rori_4_2 -2048 -6144 0 -4096 -rori_4_3 -2048 -4096 0 -2048 -rori_4_4 -2048 -2048 0 0 -rori_4_5 -2048 0 0 2048 -rori_4_6 -2048 2048 0 4096 -rori_4_7 -2048 4096 0 6144 -rori_4_8 -2048 6144 0 8192 -rori_5_1 0 -8192 2048 -6144 -rori_5_2 0 -6144 2048 -4096 -rori_5_3 0 -4096 2048 -2048 -rori_5_4 0 -2048 2048 0 -rori_5_5 0 0 2048 2048 -rori_5_6 0 2048 2048 4096 -rori_5_7 0 4096 2048 6144 -rori_5_8 0 6144 2048 8192 -empireday_imp_crashsite_01 0 6144 2048 8192 empireday_ceremony -rori_6_1 2048 -8192 4096 -6144 -rori_6_2 2048 -6144 4096 -4096 -rori_6_3 2048 -4096 4096 -2048 -rori_6_4 2048 -2048 4096 0 -rori_6_5 2048 0 4096 2048 -rori_6_6 2048 2048 4096 4096 -rori_6_7 2048 4096 4096 6144 -rori_6_8 2048 6144 4096 8192 -rori_7_1 4096 -8192 6144 -6144 -rori_7_2 4096 -6144 6144 -4096 -rori_7_3 4096 -4096 6144 -2048 -rori_7_4 4096 -2048 6144 0 -rori_7_5 4096 0 6144 2048 -rori_7_6 4096 2048 6144 4096 -rori_7_7 4096 4096 6144 6144 -rori_7_8 4096 6144 6144 8192 -rori_8_1 6144 -8192 8192 -6144 -rori_8_2 6144 -6144 8192 -4096 -rori_8_3 6144 -4096 8192 -2048 -rori_8_4 6144 -2048 8192 0 -empireday_imp_crashsite_02 6144 -2048 8192 0 empireday_ceremony -rori_8_5 6144 0 8192 2048 -rori_8_6 6144 2048 8192 4096 -rori_8_7 6144 4096 8192 6144 -rori_8_8 6144 6144 8192 8192 -rori_1_1 -8192 -8192 -6144 -6144 -empireday_imp_crashsite_03 -8192 -8192 -6144 -6144 empireday_ceremony -rori_1_2_ws -8192 -6144 -6144 -4096 -rori_1_3_ws -8192 -4096 -6144 -2048 -rori_1_4_ws -8192 -2048 -6144 0 -rori_1_5_ws -8192 0 -6144 2048 -rori_1_6_ws -8192 2048 -6144 4096 -rori_1_7_ws -8192 4096 -6144 6144 -rori_1_8_ws -8192 6144 -6144 8192 -rori_2_1_ws -6144 -8192 -4096 -6144 -rori_2_2_ws -6144 -6144 -4096 -4096 -rori_2_3_ws -6144 -4096 -4096 -2048 -rori_2_4_ws -6144 -2048 -4096 0 -rori_2_5_ws -6144 0 -4096 2048 -rori_2_6_ws -6144 2048 -4096 4096 -rori_2_7_ws -6144 4096 -4096 6144 -rori_2_8_ws -6144 6144 -4096 8192 -rori_3_1_ws -4096 -8192 -2048 -6144 -rori_3_2_ws -4096 -6144 -2048 -4096 -rori_3_3_ws -4096 -4096 -2048 -2048 -rori_3_4_ws -4096 -2048 -2048 0 -rori_3_5_ws -4096 0 -2048 2048 -rori_3_6_ws -4096 2048 -2048 4096 -rori_3_7_ws -4096 4096 -2048 6144 -rori_3_8_ws -4096 6144 -2048 8192 -rori_4_1_ws -2048 -8192 0 -6144 -rori_4_2_ws -2048 -6144 0 -4096 -rori_4_3_ws -2048 -4096 0 -2048 -rori_4_4_ws -2048 -2048 0 0 -rori_4_5_ws -2048 0 0 2048 -rori_4_6_ws -2048 2048 0 4096 -rori_4_7_ws -2048 4096 0 6144 -rori_4_8_ws -2048 6144 0 8192 -rori_5_1_ws 0 -8192 2048 -6144 -rori_5_2_ws 0 -6144 2048 -4096 -rori_5_3_ws 0 -4096 2048 -2048 -rori_5_4_ws 0 -2048 2048 0 -rori_5_5_ws 0 0 2048 2048 -rori_5_6_ws 0 2048 2048 4096 -rori_5_7_ws 0 4096 2048 6144 -rori_5_8_ws 0 6144 2048 8192 -rori_6_1_ws 2048 -8192 4096 -6144 -rori_6_2_ws 2048 -6144 4096 -4096 -rori_6_3_ws 2048 -4096 4096 -2048 -rori_6_4_ws 2048 -2048 4096 0 -rori_6_5_ws 2048 0 4096 2048 -rori_6_6_ws 2048 2048 4096 4096 -rori_6_7_ws 2048 4096 4096 6144 -rori_6_8_ws 2048 6144 4096 8192 -rori_7_1_ws 4096 -8192 6144 -6144 -rori_7_2_ws 4096 -6144 6144 -4096 -rori_7_3_ws 4096 -4096 6144 -2048 -rori_7_4_ws 4096 -2048 6144 0 -rori_7_5_ws 4096 0 6144 2048 -rori_7_6_ws 4096 2048 6144 4096 -rori_7_7_ws 4096 4096 6144 6144 -rori_7_8_ws 4096 6144 6144 8192 -rori_8_1_ws 6144 -8192 8192 -6144 -rori_8_2_ws 6144 -6144 8192 -4096 -rori_8_3_ws 6144 -4096 8192 -2048 -rori_8_4_ws 6144 -2048 8192 0 -rori_8_5_ws 6144 0 8192 2048 -rori_8_6_ws 6144 2048 8192 4096 -rori_8_7_ws 6144 4096 8192 6144 -rori_8_8_ws 6144 6144 8192 8192 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s s +rori_1_1 -8192 -8192 -6144 -6144 +empireday_imp_crashsite_03 -8192 -8192 -6144 -6144 empireday_ceremony +rori_1_2 -8192 -6144 -6144 -4096 +rori_1_3 -8192 -4096 -6144 -2048 +rori_1_4 -8192 -2048 -6144 0 +rori_1_5 -8192 0 -6144 2048 +rori_1_6 -8192 2048 -6144 4096 +rori_1_7 -8192 4096 -6144 6144 +rori_1_8 -8192 6144 -6144 8192 +rori_2_1 -6144 -8192 -4096 -6144 +rori_2_2 -6144 -6144 -4096 -4096 +rori_2_3 -6144 -4096 -4096 -2048 +rori_2_4 -6144 -2048 -4096 0 +rori_2_5 -6144 0 -4096 2048 +rori_2_6 -6144 2048 -4096 4096 +rori_2_7 -6144 4096 -4096 6144 +rori_2_8 -6144 6144 -4096 8192 +rori_3_1 -4096 -8192 -2048 -6144 +rori_3_2 -4096 -6144 -2048 -4096 +rori_3_3 -4096 -4096 -2048 -2048 +rori_3_4 -4096 -2048 -2048 0 +rori_3_5 -4096 0 -2048 2048 +rori_3_6 -4096 2048 -2048 4096 +rori_3_7 -4096 4096 -2048 6144 +rori_3_8 -4096 6144 -2048 8192 +rori_4_1 -2048 -8192 0 -6144 +rori_4_2 -2048 -6144 0 -4096 +rori_4_3 -2048 -4096 0 -2048 +rori_4_4 -2048 -2048 0 0 +rori_4_5 -2048 0 0 2048 +rori_4_6 -2048 2048 0 4096 +rori_4_7 -2048 4096 0 6144 +rori_4_8 -2048 6144 0 8192 +rori_5_1 0 -8192 2048 -6144 +rori_5_2 0 -6144 2048 -4096 +rori_5_3 0 -4096 2048 -2048 +rori_5_4 0 -2048 2048 0 +rori_5_5 0 0 2048 2048 +rori_5_6 0 2048 2048 4096 +rori_5_7 0 4096 2048 6144 +rori_5_8 0 6144 2048 8192 +empireday_imp_crashsite_01 0 6144 2048 8192 empireday_ceremony +rori_6_1 2048 -8192 4096 -6144 +rori_6_2 2048 -6144 4096 -4096 +rori_6_3 2048 -4096 4096 -2048 +rori_6_4 2048 -2048 4096 0 +rori_6_5 2048 0 4096 2048 +rori_6_6 2048 2048 4096 4096 +rori_6_7 2048 4096 4096 6144 +rori_6_8 2048 6144 4096 8192 +rori_7_1 4096 -8192 6144 -6144 +rori_7_2 4096 -6144 6144 -4096 +rori_7_3 4096 -4096 6144 -2048 +rori_7_4 4096 -2048 6144 0 +rori_7_5 4096 0 6144 2048 +rori_7_6 4096 2048 6144 4096 +rori_7_7 4096 4096 6144 6144 +rori_7_8 4096 6144 6144 8192 +rori_8_1 6144 -8192 8192 -6144 +rori_8_2 6144 -6144 8192 -4096 +rori_8_3 6144 -4096 8192 -2048 +rori_8_4 6144 -2048 8192 0 +empireday_imp_crashsite_02 6144 -2048 8192 0 empireday_ceremony +rori_8_5 6144 0 8192 2048 +rori_8_6 6144 2048 8192 4096 +rori_8_7 6144 4096 8192 6144 +rori_8_8 6144 6144 8192 8192 +rori_1_1 -8192 -8192 -6144 -6144 +empireday_imp_crashsite_03 -8192 -8192 -6144 -6144 empireday_ceremony +rori_1_2_ws -8192 -6144 -6144 -4096 +rori_1_3_ws -8192 -4096 -6144 -2048 +rori_1_4_ws -8192 -2048 -6144 0 +rori_1_5_ws -8192 0 -6144 2048 +rori_1_6_ws -8192 2048 -6144 4096 +rori_1_7_ws -8192 4096 -6144 6144 +rori_1_8_ws -8192 6144 -6144 8192 +rori_2_1_ws -6144 -8192 -4096 -6144 +rori_2_2_ws -6144 -6144 -4096 -4096 +rori_2_3_ws -6144 -4096 -4096 -2048 +rori_2_4_ws -6144 -2048 -4096 0 +rori_2_5_ws -6144 0 -4096 2048 +rori_2_6_ws -6144 2048 -4096 4096 +rori_2_7_ws -6144 4096 -4096 6144 +rori_2_8_ws -6144 6144 -4096 8192 +rori_3_1_ws -4096 -8192 -2048 -6144 +rori_3_2_ws -4096 -6144 -2048 -4096 +rori_3_3_ws -4096 -4096 -2048 -2048 +rori_3_4_ws -4096 -2048 -2048 0 +rori_3_5_ws -4096 0 -2048 2048 +rori_3_6_ws -4096 2048 -2048 4096 +rori_3_7_ws -4096 4096 -2048 6144 +rori_3_8_ws -4096 6144 -2048 8192 +rori_4_1_ws -2048 -8192 0 -6144 +rori_4_2_ws -2048 -6144 0 -4096 +rori_4_3_ws -2048 -4096 0 -2048 +rori_4_4_ws -2048 -2048 0 0 +rori_4_5_ws -2048 0 0 2048 +rori_4_6_ws -2048 2048 0 4096 +rori_4_7_ws -2048 4096 0 6144 +rori_4_8_ws -2048 6144 0 8192 +rori_5_1_ws 0 -8192 2048 -6144 +rori_5_2_ws 0 -6144 2048 -4096 +rori_5_3_ws 0 -4096 2048 -2048 +rori_5_4_ws 0 -2048 2048 0 +rori_5_5_ws 0 0 2048 2048 +rori_5_6_ws 0 2048 2048 4096 +rori_5_7_ws 0 4096 2048 6144 +rori_5_8_ws 0 6144 2048 8192 +rori_6_1_ws 2048 -8192 4096 -6144 +rori_6_2_ws 2048 -6144 4096 -4096 +rori_6_3_ws 2048 -4096 4096 -2048 +rori_6_4_ws 2048 -2048 4096 0 +rori_6_5_ws 2048 0 4096 2048 +rori_6_6_ws 2048 2048 4096 4096 +rori_6_7_ws 2048 4096 4096 6144 +rori_6_8_ws 2048 6144 4096 8192 +rori_7_1_ws 4096 -8192 6144 -6144 +rori_7_2_ws 4096 -6144 6144 -4096 +rori_7_3_ws 4096 -4096 6144 -2048 +rori_7_4_ws 4096 -2048 6144 0 +rori_7_5_ws 4096 0 6144 2048 +rori_7_6_ws 4096 2048 6144 4096 +rori_7_7_ws 4096 4096 6144 6144 +rori_7_8_ws 4096 6144 6144 8192 +rori_8_1_ws 6144 -8192 8192 -6144 +rori_8_2_ws 6144 -6144 8192 -4096 +rori_8_3_ws 6144 -4096 8192 -2048 +rori_8_4_ws 6144 -2048 8192 0 +rori_8_5_ws 6144 0 8192 2048 +rori_8_6_ws 6144 2048 8192 4096 +rori_8_7_ws 6144 4096 8192 6144 +rori_8_8_ws 6144 6144 8192 8192 diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_simple.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_simple.tab index 604756e33..ba31087b8 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_simple.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_simple.tab @@ -1,3 +1,3 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[0] b[1] s -simple -4096 -4096 4096 4096 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0x00] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[0] b[1] s s +simple -4096 -4096 4096 4096 diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_talus.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_talus.tab index 9723de00b..a5ceaffd1 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_talus.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_talus.tab @@ -1,134 +1,134 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s -talus_1_1 -8192 -8192 -6144 -6144 -talus_1_2 -8192 -6144 -6144 -4096 -empireday_imp_crashsite_05 -8192 -6144 -6144 -4096 empireday_ceremony -talus_1_3 -8192 -4096 -6144 -2048 -talus_1_4 -8192 -2048 -6144 0 -talus_1_5 -8192 0 -6144 2048 -talus_1_6 -8192 2048 -6144 4096 -talus_1_7 -8192 4096 -6144 6144 -empireday_imp_crashsite_04 -8192 4096 -6144 6144 empireday_ceremony -talus_1_8 -8192 6144 -6144 8192 -talus_2_1 -6144 -8192 -4096 -6144 -talus_2_2 -6144 -6144 -4096 -4096 -talus_2_3 -6144 -4096 -4096 -2048 -talus_2_4 -6144 -2048 -4096 0 -talus_2_5 -6144 0 -4096 2048 -talus_2_6 -6144 2048 -4096 4096 -talus_2_7 -6144 4096 -4096 6144 -talus_2_8 -6144 6144 -4096 8192 -talus_3_1 -4096 -8192 -2048 -6144 -talus_3_2 -4096 -6144 -2048 -4096 -talus_3_3 -4096 -4096 -2048 -2048 -talus_3_4 -4096 -2048 -2048 0 -talus_3_5 -4096 0 -2048 2048 -talus_3_6 -4096 2048 -2048 4096 -talus_3_7 -4096 4096 -2048 6144 -talus_3_8 -4096 6144 -2048 8192 -talus_4_1 -2048 -8192 0 -6144 -talus_4_2 -2048 -6144 0 -4096 -talus_4_3 -2048 -4096 0 -2048 -talus_4_4 -2048 -2048 0 0 -talus_4_5 -2048 0 0 2048 -talus_4_6 -2048 2048 0 4096 -talus_4_7 -2048 4096 0 6144 -talus_4_8 -2048 6144 0 8192 -talus_5_1 0 -8192 2048 -6144 -talus_5_2 0 -6144 2048 -4096 -talus_5_3 0 -4096 2048 -2048 -lifeday_dearic 0 -4096 2048 -2048 lifeday -talus_5_4 0 -2048 2048 0 -talus_5_5 0 0 2048 2048 -talus_5_6 0 2048 2048 4096 -talus_5_7 0 4096 2048 6144 -talus_5_8 0 6144 2048 8192 -talus_6_1 2048 -8192 4096 -6144 -talus_6_2 2048 -6144 4096 -4096 -talus_6_3 2048 -4096 4096 -2048 -talus_6_4 2048 -2048 4096 0 -talus_6_5 2048 0 4096 2048 -talus_6_6 2048 2048 4096 4096 -talus_6_7 2048 4096 4096 6144 -talus_6_8 2048 6144 4096 8192 -talus_7_1 4096 -8192 6144 -6144 -talus_7_2 4096 -6144 6144 -4096 -talus_7_3 4096 -4096 6144 -2048 -talus_7_4 4096 -2048 6144 0 -talus_7_5 4096 0 6144 2048 -talus_7_6 4096 2048 6144 4096 -talus_7_7 4096 4096 6144 6144 -talus_7_8 4096 6144 6144 8192 -talus_8_1 6144 -8192 8192 -6144 -talus_8_2 6144 -6144 8192 -4096 -empireday_imp_crashsite_06 6144 -6144 8192 -4096 empireday_ceremony -talus_8_3 6144 -4096 8192 -2048 -talus_8_4 6144 -2048 8192 0 -talus_8_5 6144 0 8192 2048 -talus_8_6 6144 2048 8192 4096 -talus_8_7 6144 4096 8192 6144 -talus_8_8 6144 6144 8192 8192 -talus_1_1_ws -8192 -8192 -6144 -6144 -talus_1_2_ws -8192 -6144 -6144 -4096 -talus_1_3_ws -8192 -4096 -6144 -2048 -talus_1_4_ws -8192 -2048 -6144 0 -talus_1_5_ws -8192 0 -6144 2048 -talus_1_6_ws -8192 2048 -6144 4096 -talus_1_7_ws -8192 4096 -6144 6144 -talus_1_8_ws -8192 6144 -6144 8192 -talus_2_1_ws -6144 -8192 -4096 -6144 -talus_2_2_ws -6144 -6144 -4096 -4096 -talus_2_3_ws -6144 -4096 -4096 -2048 -talus_2_4_ws -6144 -2048 -4096 0 -talus_2_5_ws -6144 0 -4096 2048 -talus_2_6_ws -6144 2048 -4096 4096 -talus_2_7_ws -6144 4096 -4096 6144 -talus_2_8_ws -6144 6144 -4096 8192 -talus_3_1_ws -4096 -8192 -2048 -6144 -talus_3_2_ws -4096 -6144 -2048 -4096 -talus_3_3_ws -4096 -4096 -2048 -2048 -talus_3_4_ws -4096 -2048 -2048 0 -talus_3_5_ws -4096 0 -2048 2048 -talus_3_6_ws -4096 2048 -2048 4096 -talus_3_7_ws -4096 4096 -2048 6144 -talus_3_8_ws -4096 6144 -2048 8192 -talus_4_1_ws -2048 -8192 0 -6144 -talus_4_2_ws -2048 -6144 0 -4096 -talus_4_3_ws -2048 -4096 0 -2048 -talus_4_4_ws -2048 -2048 0 0 -talus_4_5_ws -2048 0 0 2048 -talus_4_6_ws -2048 2048 0 4096 -talus_4_7_ws -2048 4096 0 6144 -talus_4_8_ws -2048 6144 0 8192 -talus_5_1_ws 0 -8192 2048 -6144 -talus_5_2_ws 0 -6144 2048 -4096 -talus_5_3_ws 0 -4096 2048 -2048 -talus_5_4_ws 0 -2048 2048 0 -talus_5_5_ws 0 0 2048 2048 -talus_5_6_ws 0 2048 2048 4096 -talus_5_7_ws 0 4096 2048 6144 -talus_5_8_ws 0 6144 2048 8192 -talus_6_1_ws 2048 -8192 4096 -6144 -talus_6_2_ws 2048 -6144 4096 -4096 -talus_6_3_ws 2048 -4096 4096 -2048 -talus_6_4_ws 2048 -2048 4096 0 -talus_6_5_ws 2048 0 4096 2048 -talus_6_6_ws 2048 2048 4096 4096 -talus_6_7_ws 2048 4096 4096 6144 -talus_6_8_ws 2048 6144 4096 8192 -talus_7_1_ws 4096 -8192 6144 -6144 -talus_7_2_ws 4096 -6144 6144 -4096 -talus_7_3_ws 4096 -4096 6144 -2048 -talus_7_4_ws 4096 -2048 6144 0 -talus_7_5_ws 4096 0 6144 2048 -talus_7_6_ws 4096 2048 6144 4096 -talus_7_7_ws 4096 4096 6144 6144 -talus_7_8_ws 4096 6144 6144 8192 -talus_8_1_ws 6144 -8192 8192 -6144 -talus_8_2_ws 6144 -6144 8192 -4096 -talus_8_3_ws 6144 -4096 8192 -2048 -talus_8_4_ws 6144 -2048 8192 0 -talus_8_5_ws 6144 0 8192 2048 -talus_8_6_ws 6144 2048 8192 4096 -talus_8_7_ws 6144 4096 8192 6144 -talus_8_8_ws 6144 6144 8192 8192 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s s +talus_1_1 -8192 -8192 -6144 -6144 +talus_1_2 -8192 -6144 -6144 -4096 +empireday_imp_crashsite_05 -8192 -6144 -6144 -4096 empireday_ceremony +talus_1_3 -8192 -4096 -6144 -2048 +talus_1_4 -8192 -2048 -6144 0 +talus_1_5 -8192 0 -6144 2048 +talus_1_6 -8192 2048 -6144 4096 +talus_1_7 -8192 4096 -6144 6144 +empireday_imp_crashsite_04 -8192 4096 -6144 6144 empireday_ceremony +talus_1_8 -8192 6144 -6144 8192 +talus_2_1 -6144 -8192 -4096 -6144 +talus_2_2 -6144 -6144 -4096 -4096 +talus_2_3 -6144 -4096 -4096 -2048 +talus_2_4 -6144 -2048 -4096 0 +talus_2_5 -6144 0 -4096 2048 +talus_2_6 -6144 2048 -4096 4096 +talus_2_7 -6144 4096 -4096 6144 +talus_2_8 -6144 6144 -4096 8192 +talus_3_1 -4096 -8192 -2048 -6144 +talus_3_2 -4096 -6144 -2048 -4096 +talus_3_3 -4096 -4096 -2048 -2048 +talus_3_4 -4096 -2048 -2048 0 +talus_3_5 -4096 0 -2048 2048 +talus_3_6 -4096 2048 -2048 4096 +talus_3_7 -4096 4096 -2048 6144 +talus_3_8 -4096 6144 -2048 8192 +talus_4_1 -2048 -8192 0 -6144 +talus_4_2 -2048 -6144 0 -4096 +talus_4_3 -2048 -4096 0 -2048 +talus_4_4 -2048 -2048 0 0 +talus_4_5 -2048 0 0 2048 +talus_4_6 -2048 2048 0 4096 +talus_4_7 -2048 4096 0 6144 +talus_4_8 -2048 6144 0 8192 +talus_5_1 0 -8192 2048 -6144 +talus_5_2 0 -6144 2048 -4096 +talus_5_3 0 -4096 2048 -2048 +lifeday_dearic 0 -4096 2048 -2048 lifeday +talus_5_4 0 -2048 2048 0 +talus_5_5 0 0 2048 2048 +talus_5_6 0 2048 2048 4096 +talus_5_7 0 4096 2048 6144 +talus_5_8 0 6144 2048 8192 +talus_6_1 2048 -8192 4096 -6144 +talus_6_2 2048 -6144 4096 -4096 +talus_6_3 2048 -4096 4096 -2048 +talus_6_4 2048 -2048 4096 0 +talus_6_5 2048 0 4096 2048 +talus_6_6 2048 2048 4096 4096 +talus_6_7 2048 4096 4096 6144 +talus_6_8 2048 6144 4096 8192 +talus_7_1 4096 -8192 6144 -6144 +talus_7_2 4096 -6144 6144 -4096 +talus_7_3 4096 -4096 6144 -2048 +talus_7_4 4096 -2048 6144 0 +talus_7_5 4096 0 6144 2048 +talus_7_6 4096 2048 6144 4096 +talus_7_7 4096 4096 6144 6144 +talus_7_8 4096 6144 6144 8192 +talus_8_1 6144 -8192 8192 -6144 +talus_8_2 6144 -6144 8192 -4096 +empireday_imp_crashsite_06 6144 -6144 8192 -4096 empireday_ceremony +talus_8_3 6144 -4096 8192 -2048 +talus_8_4 6144 -2048 8192 0 +talus_8_5 6144 0 8192 2048 +talus_8_6 6144 2048 8192 4096 +talus_8_7 6144 4096 8192 6144 +talus_8_8 6144 6144 8192 8192 +talus_1_1_ws -8192 -8192 -6144 -6144 +talus_1_2_ws -8192 -6144 -6144 -4096 +talus_1_3_ws -8192 -4096 -6144 -2048 +talus_1_4_ws -8192 -2048 -6144 0 +talus_1_5_ws -8192 0 -6144 2048 +talus_1_6_ws -8192 2048 -6144 4096 +talus_1_7_ws -8192 4096 -6144 6144 +talus_1_8_ws -8192 6144 -6144 8192 +talus_2_1_ws -6144 -8192 -4096 -6144 +talus_2_2_ws -6144 -6144 -4096 -4096 +talus_2_3_ws -6144 -4096 -4096 -2048 +talus_2_4_ws -6144 -2048 -4096 0 +talus_2_5_ws -6144 0 -4096 2048 +talus_2_6_ws -6144 2048 -4096 4096 +talus_2_7_ws -6144 4096 -4096 6144 +talus_2_8_ws -6144 6144 -4096 8192 +talus_3_1_ws -4096 -8192 -2048 -6144 +talus_3_2_ws -4096 -6144 -2048 -4096 +talus_3_3_ws -4096 -4096 -2048 -2048 +talus_3_4_ws -4096 -2048 -2048 0 +talus_3_5_ws -4096 0 -2048 2048 +talus_3_6_ws -4096 2048 -2048 4096 +talus_3_7_ws -4096 4096 -2048 6144 +talus_3_8_ws -4096 6144 -2048 8192 +talus_4_1_ws -2048 -8192 0 -6144 +talus_4_2_ws -2048 -6144 0 -4096 +talus_4_3_ws -2048 -4096 0 -2048 +talus_4_4_ws -2048 -2048 0 0 +talus_4_5_ws -2048 0 0 2048 +talus_4_6_ws -2048 2048 0 4096 +talus_4_7_ws -2048 4096 0 6144 +talus_4_8_ws -2048 6144 0 8192 +talus_5_1_ws 0 -8192 2048 -6144 +talus_5_2_ws 0 -6144 2048 -4096 +talus_5_3_ws 0 -4096 2048 -2048 +talus_5_4_ws 0 -2048 2048 0 +talus_5_5_ws 0 0 2048 2048 +talus_5_6_ws 0 2048 2048 4096 +talus_5_7_ws 0 4096 2048 6144 +talus_5_8_ws 0 6144 2048 8192 +talus_6_1_ws 2048 -8192 4096 -6144 +talus_6_2_ws 2048 -6144 4096 -4096 +talus_6_3_ws 2048 -4096 4096 -2048 +talus_6_4_ws 2048 -2048 4096 0 +talus_6_5_ws 2048 0 4096 2048 +talus_6_6_ws 2048 2048 4096 4096 +talus_6_7_ws 2048 4096 4096 6144 +talus_6_8_ws 2048 6144 4096 8192 +talus_7_1_ws 4096 -8192 6144 -6144 +talus_7_2_ws 4096 -6144 6144 -4096 +talus_7_3_ws 4096 -4096 6144 -2048 +talus_7_4_ws 4096 -2048 6144 0 +talus_7_5_ws 4096 0 6144 2048 +talus_7_6_ws 4096 2048 6144 4096 +talus_7_7_ws 4096 4096 6144 6144 +talus_7_8_ws 4096 6144 6144 8192 +talus_8_1_ws 6144 -8192 8192 -6144 +talus_8_2_ws 6144 -6144 8192 -4096 +talus_8_3_ws 6144 -4096 8192 -2048 +talus_8_4_ws 6144 -2048 8192 0 +talus_8_5_ws 6144 0 8192 2048 +talus_8_6_ws 6144 2048 8192 4096 +talus_8_7_ws 6144 4096 8192 6144 +talus_8_8_ws 6144 6144 8192 8192 diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_tatooine.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_tatooine.tab index 2ad4c6ce6..586e1d32f 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_tatooine.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_tatooine.tab @@ -1,130 +1,130 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s -tatooine_1_1 -8192 -8192 -6144 -6144 -tatooine_1_2 -8192 -6144 -6144 -4096 -tatooine_1_3 -8192 -4096 -6144 -2048 -tatooine_1_4 -8192 -2048 -6144 0 -tatooine_1_5 -8192 0 -6144 2048 -tatooine_1_6 -8192 2048 -6144 4096 -tatooine_1_7 -8192 4096 -6144 6144 -tatooine_1_8 -8192 6144 -6144 8192 -tatooine_2_1 -6144 -8192 -4096 -6144 -lifeday_wayfar -6144 -8192 -4096 -6144 lifeday -tatooine_2_2 -6144 -6144 -4096 -4096 -tatooine_2_3 -6144 -4096 -4096 -2048 -tatooine_2_4 -6144 -2048 -4096 0 -tatooine_2_5 -6144 0 -4096 2048 -tatooine_2_6 -6144 2048 -4096 4096 -tatooine_2_7 -6144 4096 -4096 6144 -tatooine_2_8 -6144 6144 -4096 8192 -tatooine_3_1 -4096 -8192 -2048 -6144 -tatooine_3_2 -4096 -6144 -2048 -4096 -tatooine_3_3 -4096 -4096 -2048 -2048 -tatooine_3_4 -4096 -2048 -2048 0 -tatooine_3_5 -4096 0 -2048 2048 -tatooine_3_6 -4096 2048 -2048 4096 -lifeday_mos_espa -4096 2048 -2048 4096 lifeday -tatooine_3_7 -4096 4096 -2048 6144 -tatooine_3_8 -4096 6144 -2048 8192 -tatooine_4_1 -2048 -8192 0 -6144 -tatooine_4_2 -2048 -6144 0 -4096 -tatooine_4_3 -2048 -4096 0 -2048 -tatooine_4_4 -2048 -2048 0 0 -tatooine_4_5 -2048 0 0 2048 -tatooine_4_6 -2048 2048 0 4096 -tatooine_4_7 -2048 4096 0 6144 -tatooine_4_8 -2048 6144 0 8192 -tatooine_5_1 0 -8192 2048 -6144 -tatooine_5_2 0 -6144 2048 -4096 -tatooine_5_3 0 -4096 2048 -2048 -tatooine_5_4 0 -2048 2048 0 -tatooine_5_5 0 0 2048 2048 -tatooine_5_6 0 2048 2048 4096 -tatooine_5_7 0 4096 2048 6144 -tatooine_5_8 0 6144 2048 8192 -tatooine_6_1 2048 -8192 4096 -6144 -tatooine_6_2 2048 -6144 4096 -4096 -server_halloween_mos_eisley 2048 -6144 4096 -4096 halloween -tatooine_6_3 2048 -4096 4096 -2048 -tatooine_6_4 2048 -2048 4096 0 -tatooine_6_5 2048 0 4096 2048 -tatooine_6_6 2048 2048 4096 4096 -tatooine_6_7 2048 4096 4096 6144 -tatooine_6_8 2048 6144 4096 8192 -tatooine_7_1 4096 -8192 6144 -6144 -tatooine_7_2 4096 -6144 6144 -4096 -tatooine_7_3 4096 -4096 6144 -2048 -tatooine_7_4 4096 -2048 6144 0 -tatooine_7_5 4096 0 6144 2048 -tatooine_7_6 4096 2048 6144 4096 -tatooine_7_7 4096 4096 6144 6144 -tatooine_7_8 4096 6144 6144 8192 -tatooine_8_1 6144 -8192 8192 -6144 -tatooine_8_2 6144 -6144 8192 -4096 -tatooine_8_3 6144 -4096 8192 -2048 -tatooine_8_4 6144 -2048 8192 0 -tatooine_8_5 6144 0 8192 2048 -tatooine_8_6 6144 2048 8192 4096 -tatooine_8_7 6144 4096 8192 6144 -tatooine_8_8 6144 6144 8192 8192 -tatooine_1_1_ws -8192 -8192 -6144 -6144 -tatooine_1_2_ws -8192 -6144 -6144 -4096 -tatooine_1_3_ws -8192 -4096 -6144 -2048 -tatooine_1_4_ws -8192 -2048 -6144 0 -tatooine_1_5_ws -8192 0 -6144 2048 -tatooine_1_6_ws -8192 2048 -6144 4096 -tatooine_1_7_ws -8192 4096 -6144 6144 -tatooine_1_8_ws -8192 6144 -6144 8192 -tatooine_2_1_ws -6144 -8192 -4096 -6144 -tatooine_2_2_ws -6144 -6144 -4096 -4096 -tatooine_2_3_ws -6144 -4096 -4096 -2048 -tatooine_2_4_ws -6144 -2048 -4096 0 -tatooine_2_5_ws -6144 0 -4096 2048 -tatooine_2_6_ws -6144 2048 -4096 4096 -tatooine_3_1_ws -4096 -8192 -2048 -6144 -tatooine_3_2_ws -4096 -6144 -2048 -4096 -tatooine_3_3_ws -4096 -4096 -2048 -2048 -tatooine_3_4_ws -4096 -2048 -2048 0 -tatooine_3_5_ws -4096 0 -2048 2048 -tatooine_3_6_ws -4096 2048 -2048 4096 -tatooine_3_7_ws -4096 4096 -2048 6144 -tatooine_3_8_ws -4096 6144 -2048 8192 -tatooine_4_1_ws -2048 -8192 0 -6144 -tatooine_4_2_ws -2048 -6144 0 -4096 -tatooine_4_3_ws -2048 -4096 0 -2048 -tatooine_4_4_ws -2048 -2048 0 0 -tatooine_4_5_ws -2048 0 0 2048 -tatooine_4_6_ws -2048 2048 0 4096 -tatooine_4_7_ws -2048 4096 0 6144 -tatooine_4_8_ws -2048 6144 0 8192 -tatooine_5_1_ws 0 -8192 2048 -6144 -tatooine_5_2_ws 0 -6144 2048 -4096 -tatooine_5_3_ws 0 -4096 2048 -2048 -tatooine_5_4_ws 0 -2048 2048 0 -tatooine_5_5_ws 0 0 2048 2048 -tatooine_5_6_ws 0 2048 2048 4096 -tatooine_5_7_ws 0 4096 2048 6144 -tatooine_5_8_ws 0 6144 2048 8192 -tatooine_6_1_ws 2048 -8192 4096 -6144 -tatooine_6_2_ws 2048 -6144 4096 -4096 -tatooine_6_3_ws 2048 -4096 4096 -2048 -tatooine_6_4_ws 2048 -2048 4096 0 -tatooine_6_6_ws 2048 2048 4096 4096 -tatooine_6_7_ws 2048 4096 4096 6144 -tatooine_6_8_ws 2048 6144 4096 8192 -tatooine_7_1_ws 4096 -8192 6144 -6144 -tatooine_7_2_ws 4096 -6144 6144 -4096 -tatooine_7_3_ws 4096 -4096 6144 -2048 -tatooine_7_4_ws 4096 -2048 6144 0 -tatooine_7_5_ws 4096 0 6144 2048 -tatooine_7_6_ws 4096 2048 6144 4096 -tatooine_7_7_ws 4096 4096 6144 6144 -tatooine_7_8_ws 4096 6144 6144 8192 -tatooine_8_1_ws 6144 -8192 8192 -6144 -tatooine_8_2_ws 6144 -6144 8192 -4096 -tatooine_8_3_ws 6144 -4096 8192 -2048 -tatooine_8_4_ws 6144 -2048 8192 0 -tatooine_8_5_ws 6144 0 8192 2048 -tatooine_8_6_ws 6144 2048 8192 4096 -tatooine_8_7_ws 6144 4096 8192 6144 -tatooine_8_8_ws 6144 6144 8192 8192 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s s +tatooine_1_1 -8192 -8192 -6144 -6144 +tatooine_1_2 -8192 -6144 -6144 -4096 +tatooine_1_3 -8192 -4096 -6144 -2048 +tatooine_1_4 -8192 -2048 -6144 0 +tatooine_1_5 -8192 0 -6144 2048 +tatooine_1_6 -8192 2048 -6144 4096 +tatooine_1_7 -8192 4096 -6144 6144 +tatooine_1_8 -8192 6144 -6144 8192 +tatooine_2_1 -6144 -8192 -4096 -6144 +lifeday_wayfar -6144 -8192 -4096 -6144 lifeday +tatooine_2_2 -6144 -6144 -4096 -4096 +tatooine_2_3 -6144 -4096 -4096 -2048 +tatooine_2_4 -6144 -2048 -4096 0 +tatooine_2_5 -6144 0 -4096 2048 +tatooine_2_6 -6144 2048 -4096 4096 +tatooine_2_7 -6144 4096 -4096 6144 +tatooine_2_8 -6144 6144 -4096 8192 +tatooine_3_1 -4096 -8192 -2048 -6144 +tatooine_3_2 -4096 -6144 -2048 -4096 +tatooine_3_3 -4096 -4096 -2048 -2048 +tatooine_3_4 -4096 -2048 -2048 0 +tatooine_3_5 -4096 0 -2048 2048 +tatooine_3_6 -4096 2048 -2048 4096 +lifeday_mos_espa -4096 2048 -2048 4096 lifeday +tatooine_3_7 -4096 4096 -2048 6144 +tatooine_3_8 -4096 6144 -2048 8192 +tatooine_4_1 -2048 -8192 0 -6144 +tatooine_4_2 -2048 -6144 0 -4096 +tatooine_4_3 -2048 -4096 0 -2048 +tatooine_4_4 -2048 -2048 0 0 +tatooine_4_5 -2048 0 0 2048 +tatooine_4_6 -2048 2048 0 4096 +tatooine_4_7 -2048 4096 0 6144 +tatooine_4_8 -2048 6144 0 8192 +tatooine_5_1 0 -8192 2048 -6144 +tatooine_5_2 0 -6144 2048 -4096 +tatooine_5_3 0 -4096 2048 -2048 +tatooine_5_4 0 -2048 2048 0 +tatooine_5_5 0 0 2048 2048 +tatooine_5_6 0 2048 2048 4096 +tatooine_5_7 0 4096 2048 6144 +tatooine_5_8 0 6144 2048 8192 +tatooine_6_1 2048 -8192 4096 -6144 +tatooine_6_2 2048 -6144 4096 -4096 +server_halloween_mos_eisley 2048 -6144 4096 -4096 halloween +tatooine_6_3 2048 -4096 4096 -2048 +tatooine_6_4 2048 -2048 4096 0 +tatooine_6_5 2048 0 4096 2048 +tatooine_6_6 2048 2048 4096 4096 +tatooine_6_7 2048 4096 4096 6144 +tatooine_6_8 2048 6144 4096 8192 +tatooine_7_1 4096 -8192 6144 -6144 +tatooine_7_2 4096 -6144 6144 -4096 +tatooine_7_3 4096 -4096 6144 -2048 +tatooine_7_4 4096 -2048 6144 0 +tatooine_7_5 4096 0 6144 2048 +tatooine_7_6 4096 2048 6144 4096 +tatooine_7_7 4096 4096 6144 6144 +tatooine_7_8 4096 6144 6144 8192 +tatooine_8_1 6144 -8192 8192 -6144 +tatooine_8_2 6144 -6144 8192 -4096 +tatooine_8_3 6144 -4096 8192 -2048 +tatooine_8_4 6144 -2048 8192 0 +tatooine_8_5 6144 0 8192 2048 +tatooine_8_6 6144 2048 8192 4096 +tatooine_8_7 6144 4096 8192 6144 +tatooine_8_8 6144 6144 8192 8192 +tatooine_1_1_ws -8192 -8192 -6144 -6144 +tatooine_1_2_ws -8192 -6144 -6144 -4096 +tatooine_1_3_ws -8192 -4096 -6144 -2048 +tatooine_1_4_ws -8192 -2048 -6144 0 +tatooine_1_5_ws -8192 0 -6144 2048 +tatooine_1_6_ws -8192 2048 -6144 4096 +tatooine_1_7_ws -8192 4096 -6144 6144 +tatooine_1_8_ws -8192 6144 -6144 8192 +tatooine_2_1_ws -6144 -8192 -4096 -6144 +tatooine_2_2_ws -6144 -6144 -4096 -4096 +tatooine_2_3_ws -6144 -4096 -4096 -2048 +tatooine_2_4_ws -6144 -2048 -4096 0 +tatooine_2_5_ws -6144 0 -4096 2048 +tatooine_2_6_ws -6144 2048 -4096 4096 +tatooine_3_1_ws -4096 -8192 -2048 -6144 +tatooine_3_2_ws -4096 -6144 -2048 -4096 +tatooine_3_3_ws -4096 -4096 -2048 -2048 +tatooine_3_4_ws -4096 -2048 -2048 0 +tatooine_3_5_ws -4096 0 -2048 2048 +tatooine_3_6_ws -4096 2048 -2048 4096 +tatooine_3_7_ws -4096 4096 -2048 6144 +tatooine_3_8_ws -4096 6144 -2048 8192 +tatooine_4_1_ws -2048 -8192 0 -6144 +tatooine_4_2_ws -2048 -6144 0 -4096 +tatooine_4_3_ws -2048 -4096 0 -2048 +tatooine_4_4_ws -2048 -2048 0 0 +tatooine_4_5_ws -2048 0 0 2048 +tatooine_4_6_ws -2048 2048 0 4096 +tatooine_4_7_ws -2048 4096 0 6144 +tatooine_4_8_ws -2048 6144 0 8192 +tatooine_5_1_ws 0 -8192 2048 -6144 +tatooine_5_2_ws 0 -6144 2048 -4096 +tatooine_5_3_ws 0 -4096 2048 -2048 +tatooine_5_4_ws 0 -2048 2048 0 +tatooine_5_5_ws 0 0 2048 2048 +tatooine_5_6_ws 0 2048 2048 4096 +tatooine_5_7_ws 0 4096 2048 6144 +tatooine_5_8_ws 0 6144 2048 8192 +tatooine_6_1_ws 2048 -8192 4096 -6144 +tatooine_6_2_ws 2048 -6144 4096 -4096 +tatooine_6_3_ws 2048 -4096 4096 -2048 +tatooine_6_4_ws 2048 -2048 4096 0 +tatooine_6_6_ws 2048 2048 4096 4096 +tatooine_6_7_ws 2048 4096 4096 6144 +tatooine_6_8_ws 2048 6144 4096 8192 +tatooine_7_1_ws 4096 -8192 6144 -6144 +tatooine_7_2_ws 4096 -6144 6144 -4096 +tatooine_7_3_ws 4096 -4096 6144 -2048 +tatooine_7_4_ws 4096 -2048 6144 0 +tatooine_7_5_ws 4096 0 6144 2048 +tatooine_7_6_ws 4096 2048 6144 4096 +tatooine_7_7_ws 4096 4096 6144 6144 +tatooine_7_8_ws 4096 6144 6144 8192 +tatooine_8_1_ws 6144 -8192 8192 -6144 +tatooine_8_2_ws 6144 -6144 8192 -4096 +tatooine_8_3_ws 6144 -4096 8192 -2048 +tatooine_8_4_ws 6144 -2048 8192 0 +tatooine_8_5_ws 6144 0 8192 2048 +tatooine_8_6_ws 6144 2048 8192 4096 +tatooine_8_7_ws 6144 4096 8192 6144 +tatooine_8_8_ws 6144 6144 8192 8192 diff --git a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_yavin4.tab b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_yavin4.tab index 722f775b8..f37ccbd34 100755 --- a/sku.0/sys.shared/compiled/game/datatables/buildout/areas_yavin4.tab +++ b/sku.0/sys.shared/compiled/game/datatables/buildout/areas_yavin4.tab @@ -1,132 +1,132 @@ -area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired -s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s -yavin4_1_1 -8192 -8192 -6144 -6144 -yavin4_1_2 -8192 -6144 -6144 -4096 -yavin4_1_3 -8192 -4096 -6144 -2048 -yavin4_1_4 -8192 -2048 -6144 0 -yavin4_1_5 -8192 0 -6144 2048 -yavin4_1_6 -8192 2048 -6144 4096 -yavin4_1_7 -8192 4096 -6144 6144 -yavin4_1_8 -8192 6144 -6144 8192 -yavin4_2_1 -6144 -8192 -4096 -6144 -yavin4_2_2 -6144 -6144 -4096 -4096 -yavin4_2_3 -6144 -4096 -4096 -2048 -yavin4_2_4 -6144 -2048 -4096 0 -yavin4_2_5 -6144 0 -4096 2048 -yavin4_2_6 -6144 2048 -4096 4096 -yavin4_2_7 -6144 4096 -4096 6144 -yavin4_2_8 -6144 6144 -4096 8192 -yavin4_3_1 -4096 -8192 -2048 -6144 -yavin4_3_2 -4096 -6144 -2048 -4096 -yavin4_3_3 -4096 -4096 -2048 -2048 -yavin4_3_4 -4096 -2048 -2048 0 -yavin4_3_5 -4096 0 -2048 2048 -yavin4_3_6 -4096 2048 -2048 4096 -yavin4_3_7 -4096 4096 -2048 6144 -yavin4_3_8 -4096 6144 -2048 8192 -yavin4_4_1 -2048 -8192 0 -6144 -yavin4_4_2 -2048 -6144 0 -4096 -yavin4_4_3 -2048 -4096 0 -2048 -yavin4_4_4 -2048 -2048 0 0 -yavin4_4_5 -2048 0 0 2048 -yavin4_4_6 -2048 2048 0 4096 -yavin4_4_7 -2048 4096 0 6144 -empireday_mining_outpost -2048 4096 0 6144 empireday_ceremony -yavin4_4_8 -2048 6144 0 8192 -yavin4_5_1 0 -8192 2048 -6144 -yavin4_5_2 0 -6144 2048 -4096 -yavin4_5_3 0 -4096 2048 -2048 -yavin4_5_4 0 -2048 2048 0 -yavin4_5_5 0 0 2048 2048 -yavin4_5_6 0 2048 2048 4096 -yavin4_5_7 0 4096 2048 6144 -yavin4_5_8 0 6144 2048 8192 -yavin4_6_1 2048 -8192 4096 -6144 -empireday_imp_fortress 2048 -8192 4096 -6144 empireday_ceremony -yavin4_6_2 2048 -6144 4096 -4096 -yavin4_6_3 2048 -4096 4096 -2048 -yavin4_6_4 2048 -2048 4096 0 -yavin4_6_5 2048 0 4096 2048 -yavin4_6_6 2048 2048 4096 4096 -yavin4_6_7 2048 4096 4096 6144 -yavin4_6_8 2048 6144 4096 8192 -yavin4_7_1 4096 -8192 6144 -6144 -yavin4_7_2 4096 -6144 6144 -4096 -yavin4_7_3 4096 -4096 6144 -2048 -yavin4_7_4 4096 -2048 6144 0 -yavin4_7_5 4096 0 6144 2048 -yavin4_7_6 4096 2048 6144 4096 -yavin4_7_7 4096 4096 6144 6144 -yavin4_7_8 4096 6144 6144 8192 -yavin4_8_1 6144 -8192 8192 -6144 -yavin4_8_2 6144 -6144 8192 -4096 -yavin4_8_3 6144 -4096 8192 -2048 -yavin4_8_4 6144 -2048 8192 0 -yavin4_8_5 6144 0 8192 2048 -yavin4_8_6 6144 2048 8192 4096 -yavin4_8_7 6144 4096 8192 6144 -yavin4_8_8 6144 6144 8192 8192 -yavin4_1_1_ws -8192 -8192 -6144 -6144 -yavin4_1_2_ws -8192 -6144 -6144 -4096 -yavin4_1_3_ws -8192 -4096 -6144 -2048 -yavin4_1_4_ws -8192 -2048 -6144 0 -yavin4_1_5_ws -8192 0 -6144 2048 -yavin4_1_6_ws -8192 2048 -6144 4096 -yavin4_1_7_ws -8192 4096 -6144 6144 -yavin4_1_8_ws -8192 6144 -6144 8192 -yavin4_2_1_ws -6144 -8192 -4096 -6144 -yavin4_2_2_ws -6144 -6144 -4096 -4096 -yavin4_2_3_ws -6144 -4096 -4096 -2048 -yavin4_2_4_ws -6144 -2048 -4096 0 -yavin4_2_5_ws -6144 0 -4096 2048 -yavin4_2_6_ws -6144 2048 -4096 4096 -yavin4_2_7_ws -6144 4096 -4096 6144 -yavin4_2_8_ws -6144 6144 -4096 8192 -yavin4_3_1_ws -4096 -8192 -2048 -6144 -yavin4_3_2_ws -4096 -6144 -2048 -4096 -yavin4_3_3_ws -4096 -4096 -2048 -2048 -yavin4_3_4_ws -4096 -2048 -2048 0 -yavin4_3_5_ws -4096 0 -2048 2048 -yavin4_3_6_ws -4096 2048 -2048 4096 -yavin4_3_7_ws -4096 4096 -2048 6144 -yavin4_3_8_ws -4096 6144 -2048 8192 -yavin4_4_1_ws -2048 -8192 0 -6144 -yavin4_4_2_ws -2048 -6144 0 -4096 -yavin4_4_3_ws -2048 -4096 0 -2048 -yavin4_4_4_ws -2048 -2048 0 0 -yavin4_4_5_ws -2048 0 0 2048 -yavin4_4_6_ws -2048 2048 0 4096 -yavin4_4_7_ws -2048 4096 0 6144 -yavin4_4_8_ws -2048 6144 0 8192 -yavin4_5_1_ws 0 -8192 2048 -6144 -yavin4_5_2_ws 0 -6144 2048 -4096 -yavin4_5_3_ws 0 -4096 2048 -2048 -yavin4_5_4_ws 0 -2048 2048 0 -yavin4_5_5_ws 0 0 2048 2048 -yavin4_5_6_ws 0 2048 2048 4096 -yavin4_5_7_ws 0 4096 2048 6144 -yavin4_5_8_ws 0 6144 2048 8192 -yavin4_6_1_ws 2048 -8192 4096 -6144 -yavin4_6_2_ws 2048 -6144 4096 -4096 -yavin4_6_3_ws 2048 -4096 4096 -2048 -yavin4_6_4_ws 2048 -2048 4096 0 -yavin4_6_5_ws 2048 0 4096 2048 -yavin4_6_6_ws 2048 2048 4096 4096 -yavin4_6_7_ws 2048 4096 4096 6144 -yavin4_6_8_ws 2048 6144 4096 8192 -yavin4_7_1_ws 4096 -8192 6144 -6144 -yavin4_7_2_ws 4096 -6144 6144 -4096 -yavin4_7_3_ws 4096 -4096 6144 -2048 -yavin4_7_4_ws 4096 -2048 6144 0 -yavin4_7_5_ws 4096 0 6144 2048 -yavin4_7_6_ws 4096 2048 6144 4096 -yavin4_7_7_ws 4096 4096 6144 6144 -yavin4_7_8_ws 4096 6144 6144 8192 -yavin4_8_1_ws 6144 -8192 8192 -6144 -yavin4_8_2_ws 6144 -6144 8192 -4096 -yavin4_8_3_ws 6144 -4096 8192 -2048 -yavin4_8_4_ws 6144 -2048 8192 0 -yavin4_8_5_ws 6144 0 8192 2048 -yavin4_8_6_ws 6144 2048 8192 4096 -yavin4_8_7_ws 6144 4096 8192 6144 -yavin4_8_8_ws 6144 6144 8192 8192 +area x1 z1 x2 z2 useClipRect clipRectX1 clipRectZ1 clipRectX2 clipRectZ2 envFlags envFlagsExclude useOrigin originX originZ compositeX1 compositeZ1 compositeX2 compositeZ2 compositeName isolated allowMap internal allowRadarTerrain eventRequired requiredLoadLevel +s f f f f b[0] f[0] f[0] f[0] f[0] i[0xff] i[0x00] b[0] f[0] f[0] f[0] f[0] f[0] f[0] s b[0] b[1] b[1] b[1] s s +yavin4_1_1 -8192 -8192 -6144 -6144 +yavin4_1_2 -8192 -6144 -6144 -4096 +yavin4_1_3 -8192 -4096 -6144 -2048 +yavin4_1_4 -8192 -2048 -6144 0 +yavin4_1_5 -8192 0 -6144 2048 +yavin4_1_6 -8192 2048 -6144 4096 +yavin4_1_7 -8192 4096 -6144 6144 +yavin4_1_8 -8192 6144 -6144 8192 +yavin4_2_1 -6144 -8192 -4096 -6144 +yavin4_2_2 -6144 -6144 -4096 -4096 +yavin4_2_3 -6144 -4096 -4096 -2048 +yavin4_2_4 -6144 -2048 -4096 0 +yavin4_2_5 -6144 0 -4096 2048 +yavin4_2_6 -6144 2048 -4096 4096 +yavin4_2_7 -6144 4096 -4096 6144 +yavin4_2_8 -6144 6144 -4096 8192 +yavin4_3_1 -4096 -8192 -2048 -6144 +yavin4_3_2 -4096 -6144 -2048 -4096 +yavin4_3_3 -4096 -4096 -2048 -2048 +yavin4_3_4 -4096 -2048 -2048 0 +yavin4_3_5 -4096 0 -2048 2048 +yavin4_3_6 -4096 2048 -2048 4096 +yavin4_3_7 -4096 4096 -2048 6144 +yavin4_3_8 -4096 6144 -2048 8192 +yavin4_4_1 -2048 -8192 0 -6144 +yavin4_4_2 -2048 -6144 0 -4096 +yavin4_4_3 -2048 -4096 0 -2048 +yavin4_4_4 -2048 -2048 0 0 +yavin4_4_5 -2048 0 0 2048 +yavin4_4_6 -2048 2048 0 4096 +yavin4_4_7 -2048 4096 0 6144 +empireday_mining_outpost -2048 4096 0 6144 empireday_ceremony +yavin4_4_8 -2048 6144 0 8192 +yavin4_5_1 0 -8192 2048 -6144 +yavin4_5_2 0 -6144 2048 -4096 +yavin4_5_3 0 -4096 2048 -2048 +yavin4_5_4 0 -2048 2048 0 +yavin4_5_5 0 0 2048 2048 +yavin4_5_6 0 2048 2048 4096 +yavin4_5_7 0 4096 2048 6144 +yavin4_5_8 0 6144 2048 8192 +yavin4_6_1 2048 -8192 4096 -6144 +empireday_imp_fortress 2048 -8192 4096 -6144 empireday_ceremony +yavin4_6_2 2048 -6144 4096 -4096 +yavin4_6_3 2048 -4096 4096 -2048 +yavin4_6_4 2048 -2048 4096 0 +yavin4_6_5 2048 0 4096 2048 +yavin4_6_6 2048 2048 4096 4096 +yavin4_6_7 2048 4096 4096 6144 +yavin4_6_8 2048 6144 4096 8192 +yavin4_7_1 4096 -8192 6144 -6144 +yavin4_7_2 4096 -6144 6144 -4096 +yavin4_7_3 4096 -4096 6144 -2048 +yavin4_7_4 4096 -2048 6144 0 +yavin4_7_5 4096 0 6144 2048 +yavin4_7_6 4096 2048 6144 4096 +yavin4_7_7 4096 4096 6144 6144 +yavin4_7_8 4096 6144 6144 8192 +yavin4_8_1 6144 -8192 8192 -6144 +yavin4_8_2 6144 -6144 8192 -4096 +yavin4_8_3 6144 -4096 8192 -2048 +yavin4_8_4 6144 -2048 8192 0 +yavin4_8_5 6144 0 8192 2048 +yavin4_8_6 6144 2048 8192 4096 +yavin4_8_7 6144 4096 8192 6144 +yavin4_8_8 6144 6144 8192 8192 +yavin4_1_1_ws -8192 -8192 -6144 -6144 +yavin4_1_2_ws -8192 -6144 -6144 -4096 +yavin4_1_3_ws -8192 -4096 -6144 -2048 +yavin4_1_4_ws -8192 -2048 -6144 0 +yavin4_1_5_ws -8192 0 -6144 2048 +yavin4_1_6_ws -8192 2048 -6144 4096 +yavin4_1_7_ws -8192 4096 -6144 6144 +yavin4_1_8_ws -8192 6144 -6144 8192 +yavin4_2_1_ws -6144 -8192 -4096 -6144 +yavin4_2_2_ws -6144 -6144 -4096 -4096 +yavin4_2_3_ws -6144 -4096 -4096 -2048 +yavin4_2_4_ws -6144 -2048 -4096 0 +yavin4_2_5_ws -6144 0 -4096 2048 +yavin4_2_6_ws -6144 2048 -4096 4096 +yavin4_2_7_ws -6144 4096 -4096 6144 +yavin4_2_8_ws -6144 6144 -4096 8192 +yavin4_3_1_ws -4096 -8192 -2048 -6144 +yavin4_3_2_ws -4096 -6144 -2048 -4096 +yavin4_3_3_ws -4096 -4096 -2048 -2048 +yavin4_3_4_ws -4096 -2048 -2048 0 +yavin4_3_5_ws -4096 0 -2048 2048 +yavin4_3_6_ws -4096 2048 -2048 4096 +yavin4_3_7_ws -4096 4096 -2048 6144 +yavin4_3_8_ws -4096 6144 -2048 8192 +yavin4_4_1_ws -2048 -8192 0 -6144 +yavin4_4_2_ws -2048 -6144 0 -4096 +yavin4_4_3_ws -2048 -4096 0 -2048 +yavin4_4_4_ws -2048 -2048 0 0 +yavin4_4_5_ws -2048 0 0 2048 +yavin4_4_6_ws -2048 2048 0 4096 +yavin4_4_7_ws -2048 4096 0 6144 +yavin4_4_8_ws -2048 6144 0 8192 +yavin4_5_1_ws 0 -8192 2048 -6144 +yavin4_5_2_ws 0 -6144 2048 -4096 +yavin4_5_3_ws 0 -4096 2048 -2048 +yavin4_5_4_ws 0 -2048 2048 0 +yavin4_5_5_ws 0 0 2048 2048 +yavin4_5_6_ws 0 2048 2048 4096 +yavin4_5_7_ws 0 4096 2048 6144 +yavin4_5_8_ws 0 6144 2048 8192 +yavin4_6_1_ws 2048 -8192 4096 -6144 +yavin4_6_2_ws 2048 -6144 4096 -4096 +yavin4_6_3_ws 2048 -4096 4096 -2048 +yavin4_6_4_ws 2048 -2048 4096 0 +yavin4_6_5_ws 2048 0 4096 2048 +yavin4_6_6_ws 2048 2048 4096 4096 +yavin4_6_7_ws 2048 4096 4096 6144 +yavin4_6_8_ws 2048 6144 4096 8192 +yavin4_7_1_ws 4096 -8192 6144 -6144 +yavin4_7_2_ws 4096 -6144 6144 -4096 +yavin4_7_3_ws 4096 -4096 6144 -2048 +yavin4_7_4_ws 4096 -2048 6144 0 +yavin4_7_5_ws 4096 0 6144 2048 +yavin4_7_6_ws 4096 2048 6144 4096 +yavin4_7_7_ws 4096 4096 6144 6144 +yavin4_7_8_ws 4096 6144 6144 8192 +yavin4_8_1_ws 6144 -8192 8192 -6144 +yavin4_8_2_ws 6144 -6144 8192 -4096 +yavin4_8_3_ws 6144 -4096 8192 -2048 +yavin4_8_4_ws 6144 -2048 8192 0 +yavin4_8_5_ws 6144 0 8192 2048 +yavin4_8_6_ws 6144 2048 8192 4096 +yavin4_8_7_ws 6144 4096 8192 6144 +yavin4_8_8_ws 6144 6144 8192 8192