Compare commits

...

35 Commits

Author SHA1 Message Date
mrSkortch b5d905fd6e Merge pull request #86 from mrSkortch/development
updatedDBs
2023-11-19 14:01:34 -07:00
mrSkortch 2569b19b40 updatedDBs
Re exported example DB files.
2023-11-19 14:01:03 -07:00
mrSkortch 94629d2cfd Merge pull request #85 from mrSkortch/development
Hotfix for dbInit

FIXED: error checking if table entry doesn't exist when populating mist.DBS.spawnsByBase
FIXED: double check for any missing helipads not returned by world.getAirbases
2023-11-18 22:18:38 -07:00
mrSkortch d57b8c5a03 Hotfix for dbInit
FIXED: error checking if table entry doesn't exist when populating mist.DBS.spawnsByBase
FIXED: double check for any missing helipads not returned by world.getAirbases
2023-11-18 22:17:56 -07:00
mrSkortch 4922d756d5 Merge pull request #84 from mrSkortch/development
All of the fixes from dev branch to main.
2023-11-17 02:39:09 -07:00
mrSkortch e6bdd50e16 Fixed getCategory checks
Fixed getCategory calls for Object.getCategory()
2023-11-17 02:35:09 -07:00
mrSkortch ab55753487 spawnsByBase and other fixes
ADDED: mist.DBs.spawnsByBase table that lists each airbase or unit that has an aircraft set to spawn on it.
MODIFIED: DB to contain the starting helipadId or airdromeId for each unit
MODIFIED: mist.getCurrentGroupData to use an empty table so it doesn't error if nothing is found
MODIFIED: mist.getCurrentGroupData to only call getPosition once.
MODIFIED: mist.getGroupTable to add country and category values to the table returned so it can be directly used in mist.dynAdd without having to dd those vlaue sback.
2023-11-07 17:20:18 -07:00
mrSkortch 2e6f77452c moar updates
MODIFIED: zones DB point.y entry for to be set to ground level at the center of the zone
MODIFIED: zones DB properties to be saved as a string
ADDED: zone.linkUnit info if present
MODIFIED: mist.DBs.missionData to have a countries list indexed by country name and their coalition
FIXED: mist.dynAddStatic heading if not present to convert 360 degress to radians
MODIFIED: mist.tostringBR to return altitude in feet to be 1000s of feet
ADDED: mist.utils.tableShowSorted function that attempts to sort the entries alphanumerically. This is mostly to more easily compare written tables in np++ like with...
MODIFIED: mist.debug.dump_G to use mist.utils.tableShowSorted instead of the older tableShow
FIXED: typo in eventHandler
FIXED: getRandomPointInPoly to use a radius value rather than a fixed value.
2023-06-28 23:55:41 -06:00
mrSkortch b9f6e11d97 Typo of 116 version name
Whoops
2023-01-12 18:13:58 -07:00
mrSkortch be5023e2fd Database Update Changes
ADDED: dbNum entry to unit table to define which index the the unit is at in the unitsByNum DB table
OPTIMIZED: multiple calls of getPosition to just be a single getPoint call
MODIFIED: process for updating and writing DB files. Moved the editing of DB into its own function
ADDED: error messages and handling if a DB entry fails to be updated
ADDED: mist.forceAddToDB function which accepts a groupName or a static objects name to force add it to the databases.
2023-01-12 18:12:41 -07:00
mrSkortch 0c37aaaa09 v115
CHANGED: default unitId and groupId values to start at 70000 instead of 7000
ADDED: linkUnit to database entries
ADDED: linkOffset to database entries
ADDED: mist.DBs.const.nato table for phonetic conversion of letters
CHANGED: mist.getUnitPlayload to return an empty table if nothing found
CHANGE: mist.getGroupPayload to return an empty table if nothing found
FIXED: mist.getLeadPos to check if leader object is accessible and will iterate whole table to find the first one that is accessible
FIXED: mist.groupIsDead to only call Group.getByName once
FIXED: mist.Logger:setLevel to default to warning level.
FIXED: mist.Logger:setLevel to use string.lower in case where one forgets that the formatting.
2023-01-12 01:54:02 -07:00
mrSkortch 2c54802861 Assorted Fixes
ADDED: coalitionId to databases for everything placed in the editor.
FIXED: Bug in getUnitesByAttribute not working when passed a type value
FIXED: Bug in getGroupsByAttribute not working when passed a type value
ADDED: getDeadMapObjectsFromPoint function
MODIFIED: getDeadObjsInZones to call getDeadMapObjectsFromPoint
FIXED: getPointOnSegment doing math on the wrong value
FIXED: getWindBearingAndVel using the wrong math function
ADDED: mist.pointInZone function. Is passed a point and a zone or a zone name.
ADDED: echo to logger class. When called this will print a message to the DCS.log file and display a message via trigger.action.outText for 30 seconds.
2022-07-04 16:39:23 -06:00
mrSkortch a13abdd0e6 Build 4.5.110: Bug fixes
FIXED: Error in databases caused by respawning static objects via mist.dynAddStatic. DB updater was adding a new groupName entry for the static object instead of inheriting it from the missing editor. If the groupName didn't match the unitName then the problem occurred.
FIXED: Loading mistSetting value for dbLog
FIXED: Error in segmentIntersect function. Correctly to return vec2 table rather than entries 2 and 3 being the x, y values
FIXED: Typo in getWindBearingAndVel function
FIXED: locality bug in mist.marker.add where the passed coordinates were still referenced and converted to vec3
2022-04-15 21:26:31 -06:00
mrSkortch 3654aa9a88 Added isExist() to a number of functions
Added isExist() to a number of scripting functions to counteract a bug in DCS due to objects returning when they shouldn't.
2022-03-19 18:05:47 -06:00
mrSkortch 9e38ae5087 Revert display to v4
Reverting message display to v4 of function.
2022-03-07 02:54:50 -07:00
mrSkortch eb0d16b556 Messages hotfix 2
FIXED: But related to sound files not playing if there was no text message updates.
FIXED: typo in getUnitsByAttribute
FIXED: typo in getGroupsByAttribute
2022-03-07 02:16:51 -07:00
mrSkortch 67f2c5f983 Merge pull request #67 from mrSkortch/development
4.5 Release Hotfix 1
2022-03-02 18:12:58 -07:00
mrSkortch 17726628ec 4.5 Release Hotfix 1
FIXED: bug in mist message output where display time failed to be updated.
FIXED: mist.marker.remove to support name values
Modified; mist.marker.add to automatically flip a polygon if the points are anti-clockwise. This is a workaround to a DCS bug.
FIXED: drawing DB entries for lines to support if the line is closed or not. If it is then a point will be inserted to connect the last vertex to the first.
CORRECTED: Included DB example files within release rar download.
2022-03-02 18:12:14 -07:00
mrSkortch 9c3c67817b Merge pull request #66 from mrSkortch/development
Mist 4.5 Release
2022-02-11 03:14:07 -07:00
mrSkortch 45fd759aae Build 106
- Added mist.DBs.drawingsByName and mist.DBs.drawingIndexed. They are a table of points

-Added new callsigns to mist.DBs.const.callsigns
-Added mist.marker.drawShape.
mist.shape.getPointOnSegment
-Added mist.shape.segmentInsersect
-Added mist.mapValue
-Added mist.utils.hexToRGB
-Added mist.getWindBearingAndVel

-Updated mist.messages to only display a message if the messages has been updated. This should prevent spamming the message log.

Fixed: Bug with mist.marker.add() associated with text boxes
Fixed: Zone radius value of verticies present
Updated: DB Sample Files
2022-02-11 01:58:17 -07:00
mrSkortch d1e57e4107 Hotfix some bugs
Fixed: verifyDB to check for empty string from static objects because it apparently can happen.
Fixed: checkSpawnedEventsNew to better handle errors from dbUpdate
Fixed: getUnitsInPolygon was erroneously checking for category 14 instead of 1
Fixed: getUNitsInZones had an incorrectly named variable that defined an entry as nil.
2022-01-17 02:24:39 -07:00
mrSkortch f657c5d5a6 Shape Functions and linkUnit
Added linkUnit value to DB for statics
added shape functions
   insideShape
   circleInCircle
   circleInPoly
   polyInPoly
   polyInCircle
-Added error handling for get2DDist and get3DDist if a value is missing.
2021-10-06 20:51:33 -06:00
mrSkortch 20f49ee454 Build 102
Fixed: bug with mist.getLeadingPos where the position appeared to be reversed from what it was expecting

Added: mist.marker.drawZone. This function is a quick and easy way to render trigger zones on the F10 map.

Modified: mist.marker.add to also accept coa as variable name for markForCoa

Modified: mist.marker.add to accept number value for markForCoa

WIP: Updates to message display code. Currently commented out.
2021-09-07 04:59:23 -06:00
mrSkortch 388d218b4e Build 101. Bug fixes mostly
Changed mist.marker.list to mist.DBs.markList
Added markType and type as valid in mist.marker.add for the type Id
Added mist.groupIsDead function
Removed a log entry I left in.
Updated DB examples.
2021-08-23 03:27:26 -06:00
mrSkortch d9130cb57a Forgot update build num
Forgot to update the build number to 100. Whoops.
2021-08-16 01:50:11 -06:00
mrSkortch 28da804e80 4_5 RC1
FIXED: typo in mist.dynAdd
ADDED: mist.getUnitsByAttribute
ADDED: mist.getGroupsByAttribute
FIXED: typo is mist.teleportToPoint
ADDED: mist.stringCondense
ADDED: mist.debug.changeSetting
ADDED: mist.marker.add
ADDED: mist.marker.getNextId
ADDED: mist.marker.remove
ADDED: mist.marker.get
2021-08-16 01:41:40 -06:00
mrSkortch c4b96b896b Output functions and other changes
ADDED:  properties table to zone entries in database
MODIFIED: mist.dynAdd will now check tasks assigned in route for any beacons and will update the groupId or unitId as needed.
MODIFIED: mist.getGroupData now has optional route boolean. If present it will also return the route. This allows the user to skip a function call.

ADDED: mist.getGroupTable. Returns the verbatim table for a group as defined in the mission editor.

MODIFIED: mist.teleportToPoint, mist.teleportInZone, mist.respawnInZone, mist.cloneInZone to have extra parameters for governing task and custom validTerrain values.

MODIFIED: mist.debug.dump_G now accepts a boolean value that deletes entries that I commonly delete when dumping _G.

ADDED: mist.debug.writeGroup. This function is used to write a group table directly to a file of the groups name.lua. The point of this is to easily get the contents into a separate file.

ADDED: mist.debug.writeTypes This function iterates through units placed in the mission file and writes to a file containing a list of object typeNames, CLSIDs, and liveries

WIP: mist functions to add, remove, query mark panels and shapes.
2021-07-07 03:53:25 -06:00
mrSkortch fb76ec3656 Remove extra file 2021-04-09 14:14:52 -06:00
mrSkortch 1c9e14add3 Fixed Typo
Fixed typo generating error in mist.getRandomPointInZone
2021-04-09 14:14:11 -06:00
mrSkortch fdcbac0ac5 Removed getZone checks
Replaced multiple instances of trigger.misc.getZone to rely on mist.DBs.zonesByName instead.

getRandPointInCircle will default to a radius of 1000 if none is specified.

Added mist.vec.normalize

Added ground level optional value to mist.utils.zoneToVec3 to return that point at ground level.

Some future proofing.
2021-04-02 17:51:36 -06:00
mrSkortch cadde17c84 Build 96
-Fixed DB entry for country names to use the values stored in the country table instead of the localized name within the miz. This fixes a missmatch when spawning units for the third reich

-Added some future proofing
-Added error messages for updating DB
-Added disableRoads variable to grouoToRandomZone and groupRandomDistSelf
2021-02-28 21:04:18 -07:00
mrSkortch ad5af75541 Fairly big oops
Somehow screwed up the same syntax error, failed to noticed, and uplodaed. This is now fixed.
2020-11-19 17:50:36 -07:00
mrSkortch 7829d380b0 Static support for makeUnitTable
-Added support for static objects in makeUnitTable function. It still returns a list of all objects in a single table, so be careful and know that it WILL return static objects.
- Added optional value to mist.makeUnitTable to exclude categories of objects. Can be used to filter out statics or any other type. Input is a string or a table of strings.
-Added/fixed getUnitsInZones, getUnitsInPolygon,  getUnitsInMovingZones, and getUnitsLOS to support static objects. Change was made due to farp objects returning via Unit.getByName() and not checking for object category.
2020-11-17 20:43:01 -07:00
mrSkortch 4e7b4158f4 4_5 build1
-Added some definitions of static objects and model names
-added mist.getPathLength()
    given a table of points it returns the total distance between all of the points. Distance by defualt is "2d" but can be 3d. Can also return the nearest index after a given cutoff distance.
-added mist.getPathInSegments()
    sub divides a passed path into X number of segments. For example generate an on road route between 2 points, pass that table to this function and you can get the coordiantes of points relatively equidistant from each other.
-added mist.getPointAtDistanceOnPath()
    Returns a vec2 or vec3 point at a set distance along a path.
added mist.projectPoint()
      Returns a vec2 or vec 3 based on the point it was passed from that point at the angle of a given theta for a given distance.
-added mist.utils.getHeadingPoints()
   Returns the heading from the first point to the 2nd point.

modified mist.teleportToPoint to have 2 optional new variables.
-- validTerrain is a table of terrain types you wish to force the function to use
-- newGroupName is a optional value to define the new name of the group.
2020-11-01 23:19:22 -07:00
mrSkortch d550180e58 Fix for checking CA slots
-Fixed bug due to mission file adding a string value into a table that is normally just a table of numbers. Added a type check to handle that.
2020-09-30 15:33:47 -06:00
32 changed files with 35946 additions and 20419 deletions
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+225 -54
View File
@@ -1,5 +1,34 @@
const =
{
["nato"] =
{
["a"] = "alpha",
["c"] = "charlie",
["b"] = "bravo",
["e"] = "echo",
["d"] = "delta",
["g"] = "golf",
["f"] = "foxtrot",
["i"] = "india",
["h"] = "hotel",
["k"] = "kilo",
["j"] = "juliett",
["m"] = "mike",
["l"] = "lima",
["o"] = "oscar",
["n"] = "november",
["q"] = "quebec",
["p"] = "papa",
["s"] = "sierra",
["r"] = "romeo",
["u"] = "uniform",
["t"] = "tango",
["w"] = "whiskey",
["v"] = "victor",
["y"] = "yankee",
["x"] = "xray",
["z"] = "zulu",
}, -- end of ["nato"]
["shapeNames"] =
{
["Landmine"] = "landmine",
@@ -8,67 +37,101 @@ const =
["Barracks 2"] = "kazarma2",
["Small house 2C"] = "dom2c",
["Military staff"] = "aviashtab",
["Container 20ft"] = "container_20ft",
["Tanker Elnya 160"] = "elnya",
["Pipes big"] = "pipes_big_cargo",
["Tech hangar A"] = "ceh_ang_a",
["Oil derrick"] = "neftevyshka",
["Tech combine"] = "kombinat",
["Garage B"] = "garage_b",
["Pilot standing"] = "pilot_parashut",
["Airshow_Crowd"] = "Crowd1",
["Airshow_Cone"] = "Comp_cone",
["Hangar A"] = "angar_a",
["Road outpost"] = "block-onroad",
["Repair workshop"] = "tech",
["Subsidiary structure D"] = "saray-d",
["Outpost"] = "block",
["FARP Ammo Dump Coating"] = "SetkaKP",
["Small house 1C area"] = "dom2c-all",
["Tank 2"] = "airbase_tbilisi_tank_01",
["Boiler-house A"] = "kotelnaya_a",
["Parachute"] = "parash",
["Workshop A"] = "tec_a",
["Downed pilot"] = "cadaver",
["Small werehouse 1"] = "s1",
["Bulk Cargo Ship Ivanov"] = "barge-1",
["Fueltank"] = "fueltank_cargo",
["Garage small B"] = "garagh-small-b",
["Small werehouse 4"] = "s4",
["Oiltank"] = "oiltank_cargo",
["Container 40ft"] = "container_40ft",
["Shop"] = "magazin",
["Bunker 2"] = "dot2",
["Subsidiary structure B"] = "saray-b",
["FARP Fuel Depot"] = "GSM Rus",
["FARP Fuel Depot"] = "gsm rus",
["White_Flag"] = "H-Flag_W",
["Coach cargo"] = "wagon-gruz",
["Oil rig"] = "oil_platform",
["Helipad Single"] = "farp",
["Electric power box"] = "tr_budka",
["Tank 3"] = "airbase_tbilisi_tank_02",
["Red_Flag"] = "H-flag_R",
["Gas platform"] = "gas_platform",
["Container red 3"] = "konteiner_red3",
["Garage A"] = "garage_a",
["Hangar B"] = "angar_b",
["Trunks small"] = "trunks_small_cargo",
["Black_Tyre"] = "H-tyre_B",
["Cafe"] = "stolovaya",
["Restaurant 1"] = "restoran1",
["Trunks long"] = "trunks_long_cargo",
["Subsidiary structure A"] = "saray-a",
["Tetrapod"] = "tetrapod_cargo",
["Container white"] = "konteiner_white",
["Warehouse"] = "sklad",
["Tank"] = "bak",
["Oil platform"] = "plavbaza",
["Pipes small"] = "pipes_small_cargo",
["Watch Tower Armed"] = "ohr-vyshka",
["FARP Command Post"] = "kp-ug",
["Railway crossing B"] = "pereezd_small",
["Railway crossing A"] = "pereezd_big",
["Subsidiary structure F"] = "saray-f",
["Gate"] = "gate",
["Farm A"] = "ferma_a",
["FARP"] = "farps",
["Small werehouse 3"] = "s3",
["Passenger boat"] = "zwezdny",
["Water tower A"] = "wodokachka_a",
["F-shape barrier"] = "f_bar_cargo",
["Railway station"] = "r_vok_sd",
["Coach a tank blue"] = "wagon-cisterna_blue",
["Bunker 1"] = "dot",
["Tech Hangar A"] = "ceh_ang_a",
["Supermarket A"] = "uniwersam_a",
["Coach a platform"] = "wagon-platforma",
["Garage small A"] = "garagh-small-a",
["Container brown"] = "konteiner_brown",
["TV tower"] = "tele_bash",
["Airshow_Cone"] = "Comp_cone",
["Bulk Cargo Ship Yakushev"] = "barge-2",
["Pilot F15 Parachute"] = "pilot_f15_parachute",
["Farm B"] = "ferma_b",
["GeneratorF"] = "GeneratorF",
["White_Flag"] = "H-Flag_W",
["Passenger liner"] = "yastrebow",
["Container red 2"] = "konteiner_red2",
["Coach a passenger"] = "wagon-pass",
["WC"] = "WC",
["Black_Tyre_WF"] = "H-tyre_B_WF",
["Electric locomotive"] = "elektrowoz",
["Railway crossing A"] = "pereezd_big",
["Armed house"] = "home1_a",
["Coach a tank yellow"] = "wagon-cisterna_yellow",
["Subsidiary structure 2"] = "hozdomik2",
[".Ammunition depot"] = "SkladC",
["Small werehouse 2"] = "s2",
["Windsock"] = "H-Windsock_RW",
["Small house 1B"] = "domik1b",
["Container brown"] = "konteiner_brown",
["Container camo"] = "bw_container_cargo",
["Locomotive"] = "teplowoz",
["Subsidiary structure 1"] = "hozdomik1",
["Pump station"] = "nasos",
@@ -82,7 +145,7 @@ const =
["Black_Tyre_RF"] = "H-tyre_B_RF",
["Comms tower M"] = "tele_bash_m",
[".Command Center"] = "ComCenter",
["Fuel tank"] = "toplivo-bak",
["Fuel tank"] = "toplivo",
["Cargo1"] = "ab-212_cargo",
["Shelter B"] = "ukrytie_b",
["Chemical tank A"] = "him_bak_a",
@@ -107,58 +170,166 @@ const =
{
["groupLimit"] = 9,
}, -- end of ["rules"]
["aircraft"] =
["TRANSPORT"] =
{
["Uzi"] = 3,
["Pontiac"] = 8,
["Chevy"] = 7,
["Dodge"] = 5,
["Ford"] = 6,
["Enfield"] = 1,
["Colt"] = 4,
["Springfield"] = 2,
}, -- end of ["aircraft"]
["unique"] =
{
["A10"] =
["unique"] =
{
["Boar"] = 10,
["Pig"] = 11,
["rules"] =
["b52"] =
{
["canUseAircraft"] = true,
["appliesTo"] =
["rules"] =
{
[1] = "A-10C",
[2] = "A-10A",
}, -- end of ["appliesTo"]
}, -- end of ["rules"]
["Tusk"] = 12,
["Hawg"] = 9,
}, -- end of ["A10"]
}, -- end of ["unique"]
["JTAC"] =
{
["Ferret"] = 10,
["Finger"] = 8,
["Deathstar"] = 15,
["Pointer"] = 4,
["Anvil"] = 16,
["Darknight"] = 2,
["Whiplash"] = 7,
["Warrior"] = 3,
["Eyeball"] = 5,
["Mantis"] = 18,
["Playboy"] = 12,
["Axeman"] = 1,
["Moonbeam"] = 6,
["Hammer"] = 13,
["Shaba"] = 11,
["Badger"] = 19,
["Jaguar"] = 14,
["Firefly"] = 17,
["Pinpoint"] = 9,
}, -- end of ["JTAC"]
["canUseAircraft"] = true,
["appliesTo"] =
{
[1] = "B-52H",
}, -- end of ["appliesTo"]
}, -- end of ["rules"]
["Dump"] = 10,
["Kenworth"] = 11,
["Buff"] = 9,
}, -- end of ["b52"]
["f15e"] =
{
["Rage"] = 17,
["rules"] =
{
["canUseAircraft"] = true,
["appliesTo"] =
{
[1] = "F-15E",
}, -- end of ["appliesTo"]
}, -- end of ["rules"]
["Trek"] = 12,
["Thud"] = 10,
["Sled"] = 14,
["Gunny"] = 11,
["Dude"] = 9,
["Tahoe"] = 18,
["Jazz"] = 16,
["Best"] = 15,
["Sniper"] = 13,
}, -- end of ["f15e"]
["A10"] =
{
["Boar"] = 10,
["Pig"] = 11,
["rules"] =
{
["canUseAircraft"] = true,
["appliesTo"] =
{
[1] = "A-10C_2",
[2] = "A-10C",
[3] = "A-10A",
}, -- end of ["appliesTo"]
}, -- end of ["rules"]
["Tusk"] = 12,
["Hawg"] = 9,
}, -- end of ["A10"]
["f16"] =
{
["rules"] =
{
["canUseAircraft"] = true,
["appliesTo"] =
{
[1] = "F-16C_50",
[2] = "F-16C bl.52d",
[3] = "F-16C bl.50",
[4] = "F-16A MLU",
[5] = "F-16A",
}, -- end of ["appliesTo"]
}, -- end of ["rules"]
["Panther"] = 15,
["Weasel"] = 17,
["Viper"] = 9,
["Lobo"] = 11,
["Jedi"] = 20,
["Ninja"] = 19,
["Python"] = 13,
["Wild"] = 18,
["Rattler"] = 14,
["Wolf"] = 16,
["Cowboy"] = 12,
["Venom"] = 10,
}, -- end of ["f16"]
["b1"] =
{
["Dark"] = 10,
["rules"] =
{
["canUseAircraft"] = true,
["appliesTo"] =
{
[1] = "B-1B",
}, -- end of ["appliesTo"]
}, -- end of ["rules"]
["Vader"] = 11,
["Bone"] = 9,
}, -- end of ["b1"]
["f18"] =
{
["Jury"] = 14,
["rules"] =
{
["canUseAircraft"] = true,
["appliesTo"] =
{
[1] = "FA-18C_hornet",
[2] = "F/A-18C",
}, -- end of ["appliesTo"]
}, -- end of ["rules"]
["Ram"] = 16,
["Roman"] = 12,
["Hornet"] = 9,
["Squid"] = 10,
["Snake"] = 20,
["Hawk"] = 17,
["Devil"] = 18,
["Check"] = 19,
["Ragin"] = 11,
["Jokey"] = 15,
["Sting"] = 13,
}, -- end of ["f18"]
}, -- end of ["unique"]
["Trash"] = 10,
["aircraft"] =
{
["Uzi"] = 3,
["Pontiac"] = 8,
["Chevy"] = 7,
["Dodge"] = 5,
["Ford"] = 6,
["Enfield"] = 1,
["Colt"] = 4,
["Springfield"] = 2,
}, -- end of ["aircraft"]
["JTAC"] =
{
["Ferret"] = 10,
["Finger"] = 8,
["Deathstar"] = 15,
["Pointer"] = 4,
["Anvil"] = 16,
["Darknight"] = 2,
["Whiplash"] = 7,
["Warrior"] = 3,
["Eyeball"] = 5,
["Mantis"] = 18,
["Playboy"] = 12,
["Axeman"] = 1,
["Moonbeam"] = 6,
["Hammer"] = 13,
["Shaba"] = 11,
["Badger"] = 19,
["Jaguar"] = 14,
["Firefly"] = 17,
["Pinpoint"] = 9,
}, -- end of ["JTAC"]
["Ascot"] = 12,
["Cargo"] = 11,
["Heavy"] = 9,
}, -- end of ["TRANSPORT"]
["TANKER"] =
{
["Texaco"] = 1,
+169 -65
View File
@@ -1,58 +1,60 @@
deadObjects =
{
[16782592] =
[16784128] =
{
["objectPos"] =
{
["y"] = 11.730595023771,
["x"] = -292856.66347804,
["z"] = 654539.58489607,
["y"] = 12.058506043836,
["x"] = -293009.56073812,
["z"] = 654701.4937709,
}, -- end of ["objectPos"]
["objectType"] = "vehicle",
["objectData"] =
{
["point"] =
{
["y"] = 654545.71428571,
["x"] = -292842.85714286,
["y"] = 654705.71428571,
["x"] = -293002.85714286,
}, -- end of ["point"]
["coalitionId"] = 1,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16782592,
["id_"] = 16784128,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "RuBTRs1",
["type"] = "BTR-80",
["unitName"] = "RuBTRs5",
["heading"] = -1.7994767003775,
["dbNum"] = 66,
["groupId"] = 13,
["groupName"] = "RuBTRs",
["countryId"] = 0,
["coalition"] = "red",
["x"] = -292842.85714286,
["y"] = 654545.71428571,
["heading"] = -1.7994767003775,
["unitId"] = 27,
["playerCanDrive"] = true,
["countryId"] = 0,
["x"] = -293002.85714286,
["unitId"] = 31,
["country"] = "russia",
["type"] = "BTR-80",
["playerCanDrive"] = true,
["y"] = 654705.71428571,
["pos"] =
{
["y"] = 11.73456417819,
["x"] = -292855.65589344,
["z"] = 654539.4776362,
["y"] = 12.058476713064,
["x"] = -293009.35827146,
["z"] = 654701.52232138,
}, -- end of ["pos"]
}, -- end of ["objectData"]
["object"] =
{
["id_"] = 16782592,
["id_"] = 16784128,
}, -- end of ["object"]
}, -- end of [16782592]
[16782848] =
}, -- end of [16784128]
[16783360] =
{
["objectPos"] =
{
["y"] = 11.73993894825,
["x"] = -292922.02212464,
["z"] = 654583.90753159,
["y"] = 11.939120905071,
["x"] = -292882.84549677,
["z"] = 654585.68481828,
}, -- end of ["objectPos"]
["objectType"] = "vehicle",
["objectData"] =
@@ -62,43 +64,93 @@ deadObjects =
["y"] = 654585.71428571,
["x"] = -292882.85714286,
}, -- end of ["point"]
["coalitionId"] = 1,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16782848,
["id_"] = 16783360,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "RuBTRs2",
["type"] = "BTR-80",
["heading"] = -1.7994767003775,
["dbNum"] = 63,
["groupId"] = 13,
["groupName"] = "RuBTRs",
["countryId"] = 0,
["coalition"] = "red",
["countryId"] = 0,
["x"] = -292882.85714286,
["y"] = 654585.71428571,
["heading"] = -1.7994767003775,
["unitId"] = 28,
["playerCanDrive"] = true,
["country"] = "russia",
["type"] = "BTR-80",
["playerCanDrive"] = true,
["y"] = 654585.71428571,
["pos"] =
{
["y"] = 11.750775044011,
["x"] = -292918.85355006,
["z"] = 654583.32898538,
["y"] = 11.939120905071,
["x"] = -292882.84549201,
["z"] = 654585.68482559,
}, -- end of ["pos"]
}, -- end of ["objectData"]
["object"] =
{
["id_"] = 16782848,
["id_"] = 16783360,
}, -- end of ["object"]
}, -- end of [16782848]
[16783104] =
}, -- end of [16783360]
[16784384] =
{
["objectPos"] =
{
["y"] = 11.787782375471,
["x"] = -292989.15632544,
["z"] = 654627.05222202,
["y"] = 12.101372694857,
["x"] = -293042.84375775,
["z"] = 654745.68635983,
}, -- end of ["objectPos"]
["objectType"] = "vehicle",
["objectData"] =
{
["point"] =
{
["y"] = 654745.71428571,
["x"] = -293042.85714286,
}, -- end of ["point"]
["coalitionId"] = 1,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16784384,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "RuBTRs6",
["heading"] = -1.7994767003775,
["dbNum"] = 67,
["groupId"] = 13,
["groupName"] = "RuBTRs",
["coalition"] = "red",
["countryId"] = 0,
["x"] = -293042.85714286,
["unitId"] = 32,
["country"] = "russia",
["type"] = "BTR-80",
["playerCanDrive"] = true,
["y"] = 654745.71428571,
["pos"] =
{
["y"] = 12.101372694741,
["x"] = -293042.84375943,
["z"] = 654745.68637548,
}, -- end of ["pos"]
}, -- end of ["objectData"]
["object"] =
{
["id_"] = 16784384,
}, -- end of ["object"]
}, -- end of [16784384]
[16783616] =
{
["objectPos"] =
{
["y"] = 11.767033484092,
["x"] = -292961.34212805,
["z"] = 654613.416917,
}, -- end of ["objectPos"]
["objectType"] = "vehicle",
["objectData"] =
@@ -108,43 +160,45 @@ deadObjects =
["y"] = 654625.71428571,
["x"] = -292922.85714286,
}, -- end of ["point"]
["coalitionId"] = 1,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16783104,
["id_"] = 16783616,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "RuBTRs3",
["type"] = "BTR-80",
["heading"] = -1.7994767003775,
["dbNum"] = 64,
["groupId"] = 13,
["groupName"] = "RuBTRs",
["countryId"] = 0,
["coalition"] = "red",
["countryId"] = 0,
["x"] = -292922.85714286,
["y"] = 654625.71428571,
["heading"] = -1.7994767003775,
["unitId"] = 29,
["playerCanDrive"] = true,
["country"] = "russia",
["type"] = "BTR-80",
["playerCanDrive"] = true,
["y"] = 654625.71428571,
["pos"] =
{
["y"] = 11.784134667198,
["x"] = -292988.34774035,
["z"] = 654626.95184203,
["y"] = 11.77412405724,
["x"] = -292960.22570373,
["z"] = 654613.66784073,
}, -- end of ["pos"]
}, -- end of ["objectData"]
["object"] =
{
["id_"] = 16783104,
["id_"] = 16783616,
}, -- end of ["object"]
}, -- end of [16783104]
[16783360] =
}, -- end of [16783616]
[16783872] =
{
["objectPos"] =
{
["y"] = 12.117786843734,
["x"] = -293044.08971735,
["z"] = 654661.12095178,
["y"] = 11.907341947375,
["x"] = -292992.45904644,
["z"] = 654653.41174751,
}, -- end of ["objectPos"]
["objectType"] = "vehicle",
["objectData"] =
@@ -154,34 +208,84 @@ deadObjects =
["y"] = 654665.71428571,
["x"] = -292962.85714286,
}, -- end of ["point"]
["coalitionId"] = 1,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16783360,
["id_"] = 16783872,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "RuBTRs4",
["type"] = "BTR-80",
["heading"] = -1.7994767003775,
["dbNum"] = 65,
["groupId"] = 13,
["groupName"] = "RuBTRs",
["countryId"] = 0,
["coalition"] = "red",
["countryId"] = 0,
["x"] = -292962.85714286,
["y"] = 654665.71428571,
["heading"] = -1.7994767003775,
["unitId"] = 30,
["playerCanDrive"] = true,
["country"] = "russia",
["type"] = "BTR-80",
["playerCanDrive"] = true,
["y"] = 654665.71428571,
["pos"] =
{
["y"] = 12.104105100501,
["x"] = -293040.29557322,
["z"] = 654661.78361224,
["y"] = 11.924408832715,
["x"] = -292990.14129259,
["z"] = 654654.2600714,
}, -- end of ["pos"]
}, -- end of ["objectData"]
["object"] =
{
["id_"] = 16783360,
["id_"] = 16783872,
}, -- end of ["object"]
}, -- end of [16783360]
}, -- end of [16783872]
[16783104] =
{
["objectPos"] =
{
["y"] = 11.778865118947,
["x"] = -292849.6344168,
["z"] = 654541.5369535,
}, -- end of ["objectPos"]
["objectType"] = "vehicle",
["objectData"] =
{
["point"] =
{
["y"] = 654545.71428571,
["x"] = -292842.85714286,
}, -- end of ["point"]
["coalitionId"] = 1,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16783104,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "RuBTRs1",
["heading"] = -1.7994767003775,
["dbNum"] = 62,
["groupId"] = 13,
["groupName"] = "RuBTRs",
["coalition"] = "red",
["countryId"] = 0,
["x"] = -292842.85714286,
["unitId"] = 27,
["country"] = "russia",
["type"] = "BTR-80",
["playerCanDrive"] = true,
["y"] = 654545.71428571,
["pos"] =
{
["y"] = 11.786822795431,
["x"] = -292848.27535545,
["z"] = 654541.74244488,
}, -- end of ["pos"]
}, -- end of ["objectData"]
["object"] =
{
["id_"] = 16783104,
}, -- end of ["object"]
}, -- end of [16783104]
} -- end of deadObjects
+238
View File
@@ -0,0 +1,238 @@
drawingByName =
{
["Blue Line"] =
{
["visible"] = true,
["mapY"] = 653204.31828899,
["primitiveType"] = "Line",
["layer"] = "Author",
["closed"] = false,
["thickness"] = 8,
["colorString"] = "0x0000ffff",
["style"] = "solid",
["lineMode"] = "segments",
["mapX"] = -91302.340018104,
["points"] =
{
[1] =
{
["y"] = 653204.32,
["x"] = -91302.34,
}, -- end of [1]
[2] =
{
["y"] = 723491.43,
["x"] = -90143.76,
}, -- end of [2]
[3] =
{
["y"] = 725036.2,
["x"] = -129921.63,
}, -- end of [3]
[4] =
{
["y"] = 669810.61,
["x"] = -127604.47,
}, -- end of [4]
[5] =
{
["y"] = 707271.33,
["x"] = -161203.26,
}, -- end of [5]
}, -- end of ["points"]
["name"] = "Blue Line",
["layerName"] = "Author",
}, -- end of ["Blue Line"]
["Text Box 1"] =
{
["visible"] = true,
["borderThickness"] = 4,
["mapY"] = 821584.42983871,
["layerName"] = "Author",
["layer"] = "Author",
["fontSize"] = 24,
["primitiveType"] = "TextBox",
["colorString"] = "0x004040ff",
["name"] = "Text Box 1",
["fillColorString"] = "0x00000080",
["text"] = "Objective HERE",
["angle"] = 0,
["mapX"] = -217973.61659679,
["font"] = "DejaVuLGCSansCondensed.ttf",
}, -- end of ["Text Box 1"]
["Red Line"] =
{
["visible"] = true,
["hiddenOnPlanner"] = false,
["mapY"] = 687961.68076485,
["primitiveType"] = "Line",
["layer"] = "Author",
["closed"] = false,
["thickness"] = 8,
["colorString"] = "0xff0000ff",
["style"] = "solid",
["lineMode"] = "segments",
["mapX"] = -129535.43874155,
["points"] =
{
[1] =
{
["y"] = 687961.68,
["x"] = -129535.44,
}, -- end of [1]
[2] =
{
["y"] = 687961.68,
["x"] = -129535.44,
}, -- end of [2]
[3] =
{
["y"] = 686803.1,
["x"] = -126832.09,
}, -- end of [3]
}, -- end of ["points"]
["name"] = "Red Line",
["layerName"] = "Author",
}, -- end of ["Red Line"]
["ellipse"] =
{
["visible"] = true,
["points"] =
{
[1] =
{
["y"] = 830250.78,
["x"] = 11345.22,
}, -- end of [1]
[2] =
{
["y"] = 830744.08,
["x"] = 5911.66,
}, -- end of [2]
[3] =
{
["y"] = 829981.52,
["x"] = -2199.11,
}, -- end of [3]
[4] =
{
["y"] = 828015.08,
["x"] = -12434.35,
}, -- end of [4]
[5] =
{
["y"] = 824978.75,
["x"] = -24096.56,
}, -- end of [5]
[6] =
{
["y"] = 821079.46,
["x"] = -36390.97,
}, -- end of [6]
[7] =
{
["y"] = 816582.95,
["x"] = -48479.74,
}, -- end of [7]
[8] =
{
["y"] = 811795.63,
["x"] = -59539.04,
}, -- end of [8]
[9] =
{
["y"] = 807043.77,
["x"] = -68815.19,
}, -- end of [9]
[10] =
{
["y"] = 802651.18,
["x"] = -75676.04,
}, -- end of [10]
[11] =
{
["y"] = 798917.22,
["x"] = -79654.04,
}, -- end of [11]
[12] =
{
["y"] = 796096.36,
["x"] = -80478.08,
}, -- end of [12]
[13] =
{
["y"] = 794380.82,
["x"] = -78092.03,
}, -- end of [13]
[14] =
{
["y"] = 793887.52,
["x"] = -72658.47,
}, -- end of [14]
[15] =
{
["y"] = 794650.08,
["x"] = -64547.7,
}, -- end of [15]
[16] =
{
["y"] = 796616.52,
["x"] = -54312.45,
}, -- end of [16]
[17] =
{
["y"] = 799652.85,
["x"] = -42650.24,
}, -- end of [17]
[18] =
{
["y"] = 803552.14,
["x"] = -30355.83,
}, -- end of [18]
[19] =
{
["y"] = 808048.65,
["x"] = -18267.06,
}, -- end of [19]
[20] =
{
["y"] = 812835.97,
["x"] = -7207.77,
}, -- end of [20]
[21] =
{
["y"] = 817587.83,
["x"] = 2068.38,
}, -- end of [21]
[22] =
{
["y"] = 821980.42,
["x"] = 8929.23,
}, -- end of [22]
[23] =
{
["y"] = 825714.38,
["x"] = 12907.23,
}, -- end of [23]
[24] =
{
["y"] = 828535.24,
["x"] = 13731.28,
}, -- end of [24]
}, -- end of ["points"]
["layer"] = "Author",
["primitiveType"] = "Polygon",
["mapY"] = 812315.79984515,
["layerName"] = "Author",
["style"] = "solid",
["angle"] = 19,
["thickness"] = 8,
["polygonMode"] = "oval",
["name"] = "ellipse",
["mapX"] = -33373.402558339,
["colorString"] = "0x008000ff",
["r1"] = 49818.886215397,
["r2"] = 9268.6299935624,
["fillColorString"] = "0xffffff80",
}, -- end of ["ellipse"]
} -- end of drawingByName
+266
View File
@@ -0,0 +1,266 @@
drawingIndexed =
{
[1] =
{
["visible"] = true,
["hiddenOnPlanner"] = false,
["mapY"] = 687961.68076485,
["primitiveType"] = "Line",
["layer"] = "Author",
["closed"] = false,
["thickness"] = 8,
["colorString"] = "0xff0000ff",
["style"] = "solid",
["lineMode"] = "segments",
["mapX"] = -129535.43874155,
["points"] =
{
[1] =
{
["y"] = 687961.68,
["x"] = -129535.44,
}, -- end of [1]
[2] =
{
["y"] = 687961.68,
["x"] = -129535.44,
}, -- end of [2]
[3] =
{
["y"] = 686803.1,
["x"] = -126832.09,
}, -- end of [3]
}, -- end of ["points"]
["name"] = "Red Line",
["layerName"] = "Author",
}, -- end of [1]
[2] =
{
["visible"] = true,
["mapY"] = 624626.04247551,
["primitiveType"] = "Line",
["layer"] = "Author",
["closed"] = false,
["thickness"] = 8,
["colorString"] = "0xff0000ff",
["style"] = "solid",
["lineMode"] = "segment",
["mapX"] = -35304.367140331,
["points"] =
{
[1] =
{
["y"] = 624626.04,
["x"] = -35304.37,
}, -- end of [1]
[2] =
{
["y"] = 650887.16,
["x"] = -87440.41,
}, -- end of [2]
}, -- end of ["points"]
["name"] = "Red Line",
["layerName"] = "Author",
}, -- end of [2]
[3] =
{
["visible"] = true,
["mapY"] = 653204.31828899,
["primitiveType"] = "Line",
["layer"] = "Author",
["closed"] = false,
["thickness"] = 8,
["colorString"] = "0x0000ffff",
["style"] = "solid",
["lineMode"] = "segments",
["mapX"] = -91302.340018104,
["points"] =
{
[1] =
{
["y"] = 653204.32,
["x"] = -91302.34,
}, -- end of [1]
[2] =
{
["y"] = 723491.43,
["x"] = -90143.76,
}, -- end of [2]
[3] =
{
["y"] = 725036.2,
["x"] = -129921.63,
}, -- end of [3]
[4] =
{
["y"] = 669810.61,
["x"] = -127604.47,
}, -- end of [4]
[5] =
{
["y"] = 707271.33,
["x"] = -161203.26,
}, -- end of [5]
}, -- end of ["points"]
["name"] = "Blue Line",
["layerName"] = "Author",
}, -- end of [3]
[4] =
{
["visible"] = true,
["points"] =
{
[1] =
{
["y"] = 830250.78,
["x"] = 11345.22,
}, -- end of [1]
[2] =
{
["y"] = 830744.08,
["x"] = 5911.66,
}, -- end of [2]
[3] =
{
["y"] = 829981.52,
["x"] = -2199.11,
}, -- end of [3]
[4] =
{
["y"] = 828015.08,
["x"] = -12434.35,
}, -- end of [4]
[5] =
{
["y"] = 824978.75,
["x"] = -24096.56,
}, -- end of [5]
[6] =
{
["y"] = 821079.46,
["x"] = -36390.97,
}, -- end of [6]
[7] =
{
["y"] = 816582.95,
["x"] = -48479.74,
}, -- end of [7]
[8] =
{
["y"] = 811795.63,
["x"] = -59539.04,
}, -- end of [8]
[9] =
{
["y"] = 807043.77,
["x"] = -68815.19,
}, -- end of [9]
[10] =
{
["y"] = 802651.18,
["x"] = -75676.04,
}, -- end of [10]
[11] =
{
["y"] = 798917.22,
["x"] = -79654.04,
}, -- end of [11]
[12] =
{
["y"] = 796096.36,
["x"] = -80478.08,
}, -- end of [12]
[13] =
{
["y"] = 794380.82,
["x"] = -78092.03,
}, -- end of [13]
[14] =
{
["y"] = 793887.52,
["x"] = -72658.47,
}, -- end of [14]
[15] =
{
["y"] = 794650.08,
["x"] = -64547.7,
}, -- end of [15]
[16] =
{
["y"] = 796616.52,
["x"] = -54312.45,
}, -- end of [16]
[17] =
{
["y"] = 799652.85,
["x"] = -42650.24,
}, -- end of [17]
[18] =
{
["y"] = 803552.14,
["x"] = -30355.83,
}, -- end of [18]
[19] =
{
["y"] = 808048.65,
["x"] = -18267.06,
}, -- end of [19]
[20] =
{
["y"] = 812835.97,
["x"] = -7207.77,
}, -- end of [20]
[21] =
{
["y"] = 817587.83,
["x"] = 2068.38,
}, -- end of [21]
[22] =
{
["y"] = 821980.42,
["x"] = 8929.23,
}, -- end of [22]
[23] =
{
["y"] = 825714.38,
["x"] = 12907.23,
}, -- end of [23]
[24] =
{
["y"] = 828535.24,
["x"] = 13731.28,
}, -- end of [24]
}, -- end of ["points"]
["layer"] = "Author",
["primitiveType"] = "Polygon",
["mapY"] = 812315.79984515,
["layerName"] = "Author",
["style"] = "solid",
["angle"] = 19,
["thickness"] = 8,
["polygonMode"] = "oval",
["name"] = "ellipse",
["mapX"] = -33373.402558339,
["colorString"] = "0x008000ff",
["r1"] = 49818.886215397,
["r2"] = 9268.6299935624,
["fillColorString"] = "0xffffff80",
}, -- end of [4]
[5] =
{
["visible"] = true,
["borderThickness"] = 4,
["mapY"] = 821584.42983871,
["layerName"] = "Author",
["layer"] = "Author",
["fontSize"] = 24,
["primitiveType"] = "TextBox",
["colorString"] = "0x004040ff",
["name"] = "Text Box 1",
["fillColorString"] = "0x00000080",
["text"] = "Objective HERE",
["angle"] = 0,
["mapX"] = -217973.61659679,
["font"] = "DejaVuLGCSansCondensed.ttf",
}, -- end of [5]
} -- end of drawingIndexed
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+82 -56
View File
@@ -9,22 +9,23 @@ humansById =
["x"] = -318142.85714286,
}, -- end of ["point"]
["alt_type"] = "BARO",
["coalitionId"] = 2,
["livery_id"] = "104th FS Maryland ANG, Baltimore (MD)",
["onboard_num"] = "52",
["category"] = "plane",
["speed"] = 138.88888888889,
["AddPropAircraft"] =
{
}, -- end of ["AddPropAircraft"]
["type"] = "A-10C",
["country"] = "usa",
["dbNum"] = 38,
["unitId"] = 11,
["psi"] = 0.67060113146646,
["unitName"] = "A-10C Client #1_unit",
["groupId"] = 6,
["groupName"] = "A-10C Client #1",
["coalition"] = "blue",
["skill"] = "Client",
["countryId"] = 2,
["x"] = -318142.85714286,
["y"] = 636428.57142857,
["unitId"] = 11,
["heading"] = -0.67060113146646,
["skill"] = "Client",
["callsign"] =
{
[1] = 3,
@@ -32,7 +33,11 @@ humansById =
[3] = 1,
["name"] = "Uzi11",
}, -- end of ["callsign"]
["groupId"] = 6,
["y"] = 636428.57142857,
["heading"] = -0.67060113146646,
["country"] = "usa",
["coalition"] = "blue",
["unitName"] = "A-10C Client #1_unit",
}, -- end of [11]
[8] =
{
@@ -43,22 +48,23 @@ humansById =
["x"] = -288142.85714286,
}, -- end of ["point"]
["alt_type"] = "BARO",
["coalitionId"] = 2,
["livery_id"] = "19th Fighter SQN (AK)",
["onboard_num"] = "10",
["category"] = "plane",
["speed"] = 138.88888888889,
["AddPropAircraft"] =
{
}, -- end of ["AddPropAircraft"]
["type"] = "F-15C",
["country"] = "usa",
["dbNum"] = 36,
["unitId"] = 8,
["psi"] = 0.57883789069348,
["unitName"] = "F-15C Client #1_unit",
["groupId"] = 4,
["groupName"] = "F-15C Client #1",
["coalition"] = "blue",
["skill"] = "Client",
["countryId"] = 2,
["x"] = -288142.85714286,
["y"] = 662142.85714286,
["unitId"] = 8,
["heading"] = -0.57883789069348,
["skill"] = "Client",
["callsign"] =
{
[1] = 2,
@@ -66,7 +72,11 @@ humansById =
[3] = 1,
["name"] = "Springfield11",
}, -- end of ["callsign"]
["groupId"] = 4,
["y"] = 662142.85714286,
["heading"] = -0.57883789069348,
["country"] = "usa",
["coalition"] = "blue",
["unitName"] = "F-15C Client #1_unit",
}, -- end of [8]
[10] =
{
@@ -77,22 +87,23 @@ humansById =
["x"] = -287000,
}, -- end of ["point"]
["alt_type"] = "BARO",
["coalitionId"] = 2,
["livery_id"] = "19th Fighter SQN (AK)",
["onboard_num"] = "10",
["category"] = "plane",
["speed"] = 138.88888888889,
["AddPropAircraft"] =
{
}, -- end of ["AddPropAircraft"]
["type"] = "F-15C",
["country"] = "usa",
["dbNum"] = 37,
["unitId"] = 10,
["psi"] = 0.57883789069348,
["unitName"] = "F-15C Client #2_unit",
["groupId"] = 5,
["groupName"] = "F-15C Client #2",
["coalition"] = "blue",
["skill"] = "Client",
["countryId"] = 2,
["x"] = -287000,
["y"] = 668428.57142857,
["unitId"] = 10,
["heading"] = -0.57883789069348,
["skill"] = "Client",
["callsign"] =
{
[1] = 2,
@@ -100,7 +111,11 @@ humansById =
[3] = 1,
["name"] = "Springfield11",
}, -- end of ["callsign"]
["groupId"] = 5,
["y"] = 668428.57142857,
["heading"] = -0.57883789069348,
["country"] = "usa",
["coalition"] = "blue",
["unitName"] = "F-15C Client #2_unit",
}, -- end of [10]
[12] =
{
@@ -111,22 +126,23 @@ humansById =
["x"] = -315857.14285714,
}, -- end of ["point"]
["alt_type"] = "BARO",
["coalitionId"] = 2,
["livery_id"] = "104th FS Maryland ANG, Baltimore (MD)",
["onboard_num"] = "52",
["category"] = "plane",
["speed"] = 138.88888888889,
["AddPropAircraft"] =
{
}, -- end of ["AddPropAircraft"]
["type"] = "A-10C",
["country"] = "usa",
["dbNum"] = 39,
["unitId"] = 12,
["psi"] = 0.66079849060746,
["unitName"] = "A-10C Client #2_unit",
["groupId"] = 7,
["groupName"] = "A-10C Client #2",
["coalition"] = "blue",
["skill"] = "Client",
["countryId"] = 2,
["x"] = -315857.14285714,
["y"] = 644428.57142857,
["unitId"] = 12,
["heading"] = -0.66079849060746,
["skill"] = "Client",
["callsign"] =
{
[1] = 3,
@@ -134,7 +150,11 @@ humansById =
[3] = 1,
["name"] = "Uzi11",
}, -- end of ["callsign"]
["groupId"] = 7,
["y"] = 644428.57142857,
["heading"] = -0.66079849060746,
["country"] = "usa",
["coalition"] = "blue",
["unitName"] = "A-10C Client #2_unit",
}, -- end of [12]
[48] =
{
@@ -145,24 +165,26 @@ humansById =
["x"] = -250265.71428571,
}, -- end of ["point"]
["alt_type"] = "BARO",
["coalitionId"] = 1,
["livery_id"] = "279th kiap 1st squad navy",
["onboard_num"] = "054",
["category"] = "plane",
["speed"] = 138.88888888889,
["type"] = "Su-33",
["country"] = "russia",
["dbNum"] = 74,
["unitId"] = 48,
["psi"] = 0,
["unitName"] = "Su-33 Client #3Unit",
["groupId"] = 20,
["groupName"] = "Su-33 Client #1",
["coalition"] = "red",
["skill"] = "Client",
["countryId"] = 0,
["x"] = -250265.71428571,
["y"] = 590471.42857142,
["unitId"] = 48,
["heading"] = 0,
["skill"] = "Client",
["callsign"] = 106,
["groupId"] = 20,
["y"] = 590471.42857142,
["heading"] = 0,
["country"] = "russia",
["coalition"] = "red",
["unitName"] = "Su-33 Client #3Unit",
}, -- end of [48]
[42] =
{
@@ -173,24 +195,26 @@ humansById =
["x"] = -250185.71428571,
}, -- end of ["point"]
["alt_type"] = "BARO",
["coalitionId"] = 1,
["livery_id"] = "279th kiap 1st squad navy",
["onboard_num"] = "53",
["category"] = "plane",
["speed"] = 138.88888888889,
["type"] = "Su-33",
["country"] = "russia",
["dbNum"] = 72,
["unitId"] = 42,
["psi"] = 0,
["unitName"] = "Su-33 Client #1Unit",
["groupId"] = 20,
["groupName"] = "Su-33 Client #1",
["coalition"] = "red",
["skill"] = "Client",
["countryId"] = 0,
["x"] = -250185.71428571,
["y"] = 590391.42857142,
["unitId"] = 42,
["heading"] = 0,
["skill"] = "Client",
["callsign"] = 104,
["groupId"] = 20,
["y"] = 590391.42857142,
["heading"] = 0,
["country"] = "russia",
["coalition"] = "red",
["unitName"] = "Su-33 Client #1Unit",
}, -- end of [42]
[47] =
{
@@ -201,23 +225,25 @@ humansById =
["x"] = -250225.71428571,
}, -- end of ["point"]
["alt_type"] = "BARO",
["coalitionId"] = 1,
["livery_id"] = "279th kiap 1st squad navy",
["onboard_num"] = "010",
["category"] = "plane",
["speed"] = 138.88888888889,
["type"] = "Su-33",
["country"] = "russia",
["dbNum"] = 73,
["unitId"] = 47,
["psi"] = 0,
["unitName"] = "Su-33 Client #2Unit",
["groupId"] = 20,
["groupName"] = "Su-33 Client #1",
["coalition"] = "red",
["skill"] = "Client",
["countryId"] = 0,
["x"] = -250225.71428571,
["y"] = 590431.42857142,
["unitId"] = 47,
["heading"] = 0,
["skill"] = "Client",
["callsign"] = 105,
["groupId"] = 20,
["y"] = 590431.42857142,
["heading"] = 0,
["country"] = "russia",
["coalition"] = "red",
["unitName"] = "Su-33 Client #2Unit",
}, -- end of [47]
} -- end of humansById
+82 -56
View File
@@ -9,22 +9,23 @@ humansByName =
["x"] = -288142.85714286,
}, -- end of ["point"]
["alt_type"] = "BARO",
["coalitionId"] = 2,
["livery_id"] = "19th Fighter SQN (AK)",
["onboard_num"] = "10",
["category"] = "plane",
["speed"] = 138.88888888889,
["AddPropAircraft"] =
{
}, -- end of ["AddPropAircraft"]
["type"] = "F-15C",
["country"] = "usa",
["dbNum"] = 36,
["unitId"] = 8,
["psi"] = 0.57883789069348,
["unitName"] = "F-15C Client #1_unit",
["groupId"] = 4,
["groupName"] = "F-15C Client #1",
["coalition"] = "blue",
["skill"] = "Client",
["countryId"] = 2,
["x"] = -288142.85714286,
["y"] = 662142.85714286,
["unitId"] = 8,
["heading"] = -0.57883789069348,
["skill"] = "Client",
["callsign"] =
{
[1] = 2,
@@ -32,7 +33,11 @@ humansByName =
[3] = 1,
["name"] = "Springfield11",
}, -- end of ["callsign"]
["groupId"] = 4,
["y"] = 662142.85714286,
["heading"] = -0.57883789069348,
["country"] = "usa",
["coalition"] = "blue",
["unitName"] = "F-15C Client #1_unit",
}, -- end of ["F-15C Client #1_unit"]
["F-15C Client #2_unit"] =
{
@@ -43,22 +48,23 @@ humansByName =
["x"] = -287000,
}, -- end of ["point"]
["alt_type"] = "BARO",
["coalitionId"] = 2,
["livery_id"] = "19th Fighter SQN (AK)",
["onboard_num"] = "10",
["category"] = "plane",
["speed"] = 138.88888888889,
["AddPropAircraft"] =
{
}, -- end of ["AddPropAircraft"]
["type"] = "F-15C",
["country"] = "usa",
["dbNum"] = 37,
["unitId"] = 10,
["psi"] = 0.57883789069348,
["unitName"] = "F-15C Client #2_unit",
["groupId"] = 5,
["groupName"] = "F-15C Client #2",
["coalition"] = "blue",
["skill"] = "Client",
["countryId"] = 2,
["x"] = -287000,
["y"] = 668428.57142857,
["unitId"] = 10,
["heading"] = -0.57883789069348,
["skill"] = "Client",
["callsign"] =
{
[1] = 2,
@@ -66,7 +72,11 @@ humansByName =
[3] = 1,
["name"] = "Springfield11",
}, -- end of ["callsign"]
["groupId"] = 5,
["y"] = 668428.57142857,
["heading"] = -0.57883789069348,
["country"] = "usa",
["coalition"] = "blue",
["unitName"] = "F-15C Client #2_unit",
}, -- end of ["F-15C Client #2_unit"]
["Su-33 Client #3Unit"] =
{
@@ -77,24 +87,26 @@ humansByName =
["x"] = -250265.71428571,
}, -- end of ["point"]
["alt_type"] = "BARO",
["coalitionId"] = 1,
["livery_id"] = "279th kiap 1st squad navy",
["onboard_num"] = "054",
["category"] = "plane",
["speed"] = 138.88888888889,
["type"] = "Su-33",
["country"] = "russia",
["dbNum"] = 74,
["unitId"] = 48,
["psi"] = 0,
["unitName"] = "Su-33 Client #3Unit",
["groupId"] = 20,
["groupName"] = "Su-33 Client #1",
["coalition"] = "red",
["skill"] = "Client",
["countryId"] = 0,
["x"] = -250265.71428571,
["y"] = 590471.42857142,
["unitId"] = 48,
["heading"] = 0,
["skill"] = "Client",
["callsign"] = 106,
["groupId"] = 20,
["y"] = 590471.42857142,
["heading"] = 0,
["country"] = "russia",
["coalition"] = "red",
["unitName"] = "Su-33 Client #3Unit",
}, -- end of ["Su-33 Client #3Unit"]
["A-10C Client #1_unit"] =
{
@@ -105,22 +117,23 @@ humansByName =
["x"] = -318142.85714286,
}, -- end of ["point"]
["alt_type"] = "BARO",
["coalitionId"] = 2,
["livery_id"] = "104th FS Maryland ANG, Baltimore (MD)",
["onboard_num"] = "52",
["category"] = "plane",
["speed"] = 138.88888888889,
["AddPropAircraft"] =
{
}, -- end of ["AddPropAircraft"]
["type"] = "A-10C",
["country"] = "usa",
["dbNum"] = 38,
["unitId"] = 11,
["psi"] = 0.67060113146646,
["unitName"] = "A-10C Client #1_unit",
["groupId"] = 6,
["groupName"] = "A-10C Client #1",
["coalition"] = "blue",
["skill"] = "Client",
["countryId"] = 2,
["x"] = -318142.85714286,
["y"] = 636428.57142857,
["unitId"] = 11,
["heading"] = -0.67060113146646,
["skill"] = "Client",
["callsign"] =
{
[1] = 3,
@@ -128,7 +141,11 @@ humansByName =
[3] = 1,
["name"] = "Uzi11",
}, -- end of ["callsign"]
["groupId"] = 6,
["y"] = 636428.57142857,
["heading"] = -0.67060113146646,
["country"] = "usa",
["coalition"] = "blue",
["unitName"] = "A-10C Client #1_unit",
}, -- end of ["A-10C Client #1_unit"]
["Su-33 Client #2Unit"] =
{
@@ -139,24 +156,26 @@ humansByName =
["x"] = -250225.71428571,
}, -- end of ["point"]
["alt_type"] = "BARO",
["coalitionId"] = 1,
["livery_id"] = "279th kiap 1st squad navy",
["onboard_num"] = "010",
["category"] = "plane",
["speed"] = 138.88888888889,
["type"] = "Su-33",
["country"] = "russia",
["dbNum"] = 73,
["unitId"] = 47,
["psi"] = 0,
["unitName"] = "Su-33 Client #2Unit",
["groupId"] = 20,
["groupName"] = "Su-33 Client #1",
["coalition"] = "red",
["skill"] = "Client",
["countryId"] = 0,
["x"] = -250225.71428571,
["y"] = 590431.42857142,
["unitId"] = 47,
["heading"] = 0,
["skill"] = "Client",
["callsign"] = 105,
["groupId"] = 20,
["y"] = 590431.42857142,
["heading"] = 0,
["country"] = "russia",
["coalition"] = "red",
["unitName"] = "Su-33 Client #2Unit",
}, -- end of ["Su-33 Client #2Unit"]
["A-10C Client #2_unit"] =
{
@@ -167,22 +186,23 @@ humansByName =
["x"] = -315857.14285714,
}, -- end of ["point"]
["alt_type"] = "BARO",
["coalitionId"] = 2,
["livery_id"] = "104th FS Maryland ANG, Baltimore (MD)",
["onboard_num"] = "52",
["category"] = "plane",
["speed"] = 138.88888888889,
["AddPropAircraft"] =
{
}, -- end of ["AddPropAircraft"]
["type"] = "A-10C",
["country"] = "usa",
["dbNum"] = 39,
["unitId"] = 12,
["psi"] = 0.66079849060746,
["unitName"] = "A-10C Client #2_unit",
["groupId"] = 7,
["groupName"] = "A-10C Client #2",
["coalition"] = "blue",
["skill"] = "Client",
["countryId"] = 2,
["x"] = -315857.14285714,
["y"] = 644428.57142857,
["unitId"] = 12,
["heading"] = -0.66079849060746,
["skill"] = "Client",
["callsign"] =
{
[1] = 3,
@@ -190,7 +210,11 @@ humansByName =
[3] = 1,
["name"] = "Uzi11",
}, -- end of ["callsign"]
["groupId"] = 7,
["y"] = 644428.57142857,
["heading"] = -0.66079849060746,
["country"] = "usa",
["coalition"] = "blue",
["unitName"] = "A-10C Client #2_unit",
}, -- end of ["A-10C Client #2_unit"]
["Su-33 Client #1Unit"] =
{
@@ -201,23 +225,25 @@ humansByName =
["x"] = -250185.71428571,
}, -- end of ["point"]
["alt_type"] = "BARO",
["coalitionId"] = 1,
["livery_id"] = "279th kiap 1st squad navy",
["onboard_num"] = "53",
["category"] = "plane",
["speed"] = 138.88888888889,
["type"] = "Su-33",
["country"] = "russia",
["dbNum"] = 72,
["unitId"] = 42,
["psi"] = 0,
["unitName"] = "Su-33 Client #1Unit",
["groupId"] = 20,
["groupName"] = "Su-33 Client #1",
["coalition"] = "red",
["skill"] = "Client",
["countryId"] = 0,
["x"] = -250185.71428571,
["y"] = 590391.42857142,
["unitId"] = 42,
["heading"] = 0,
["skill"] = "Client",
["callsign"] = 104,
["groupId"] = 20,
["y"] = 590391.42857142,
["heading"] = 0,
["country"] = "russia",
["coalition"] = "red",
["unitName"] = "Su-33 Client #1Unit",
}, -- end of ["Su-33 Client #1Unit"]
} -- end of humansByName
+408
View File
@@ -0,0 +1,408 @@
markList =
{
[1000] =
{
["markId"] = 1000,
["radius"] = 500,
["color"] =
{
[1] = 0.9,
[2] = 0.9,
[3] = 0.9,
[4] = 0.5,
}, -- end of ["color"]
["text"] = "",
["readOnly"] = true,
["coa"] = -1,
["time"] = 2.801,
["markType"] = "freeform",
["lineType"] = 2,
["fillColor"] =
{
[1] = 0.1,
[2] = 0.1,
[3] = 0.1,
[4] = 0.5,
}, -- end of ["fillColor"]
["pos"] =
{
[1] =
{
["y"] = 0,
["x"] = -244729.2581753,
["z"] = 185783.38833846,
}, -- end of [1]
[2] =
{
["y"] = 0,
["x"] = -355273.20683008,
["z"] = 303168.81915755,
}, -- end of [2]
[3] =
{
["y"] = 0,
["x"] = -307022.75367132,
["z"] = 433877.1362966,
}, -- end of [3]
[4] =
{
["y"] = 0,
["x"] = -250850.5843223,
["z"] = 521376.09239795,
}, -- end of [4]
[5] =
{
["y"] = 0,
["x"] = -208001.30129325,
["z"] = 429196.12218418,
}, -- end of [5]
[6] =
{
["y"] = 0,
["x"] = -251930.81834825,
["z"] = 344217.71214337,
}, -- end of [6]
[7] =
{
["y"] = 0,
["x"] = -172713.65644579,
["z"] = 330534.74781476,
}, -- end of [7]
[8] =
{
["y"] = 0,
["x"] = -160471.00415178,
["z"] = 230793.1394194,
}, -- end of [8]
}, -- end of ["pos"]
}, -- end of [1000]
[1002] =
{
["markId"] = 1002,
["radius"] = 3000,
["color"] =
{
[1] = 0.9,
[2] = 0.9,
[3] = 0.9,
[4] = 0.5,
}, -- end of ["color"]
["text"] = "",
["readOnly"] = true,
["coa"] = -1,
["time"] = 2.801,
["markType"] = "circle",
["lineType"] = 2,
["fillColor"] =
{
[1] = 0,
[2] = 0,
[3] = 1,
[4] = 0.5,
}, -- end of ["fillColor"]
["pos"] =
{
["y"] = 320.01031494141,
["x"] = -52089.546875,
[1] =
{
["y"] = 320.01031494141,
["x"] = -52089.546875,
["z"] = 707418.0625,
}, -- end of [1]
["z"] = 707418.0625,
}, -- end of ["pos"]
}, -- end of [1002]
[1004] =
{
["markId"] = 1004,
["radius"] = 3000,
["color"] =
{
[1] = 0.9,
[2] = 0.9,
[3] = 0.9,
[4] = 0.5,
}, -- end of ["color"]
["text"] = "",
["readOnly"] = true,
["coa"] = -1,
["time"] = 2.801,
["markType"] = "circle",
["lineType"] = 2,
["fillColor"] =
{
[1] = 0,
[2] = 0,
[3] = 1,
[4] = 0.5,
}, -- end of ["fillColor"]
["pos"] =
{
["y"] = 5.3388609886169,
["x"] = -296263.5,
[1] =
{
["y"] = 5.3388609886169,
["x"] = -296263.5,
["z"] = 642779.375,
}, -- end of [1]
["z"] = 642779.375,
}, -- end of ["pos"]
}, -- end of [1004]
[1006] =
{
["markId"] = 1006,
["radius"] = 3000,
["color"] =
{
[1] = 0.9,
[2] = 0.9,
[3] = 0.9,
[4] = 0.5,
}, -- end of ["color"]
["text"] = "",
["readOnly"] = true,
["coa"] = -1,
["time"] = 2.801,
["markType"] = "circle",
["lineType"] = 2,
["fillColor"] =
{
[1] = 0,
[2] = 0,
[3] = 1,
[4] = 0.5,
}, -- end of ["fillColor"]
["pos"] =
{
["y"] = 0,
["x"] = -356064.0844633,
[1] =
{
["y"] = 0,
["x"] = -356064.0844633,
["z"] = 444653.03125,
}, -- end of [1]
["z"] = 444653.03125,
}, -- end of ["pos"]
}, -- end of [1006]
[1008] =
{
["markId"] = 1008,
["time"] = 2.801,
["markType"] = "panel",
["text"] = "Neutral : PERRY",
["markScope"] = "all",
["pos"] =
{
["y"] = 0,
["x"] = -153426.17965693,
["z"] = 342754.30716193,
}, -- end of ["pos"]
}, -- end of [1008]
[1010] =
{
["markId"] = 1010,
["time"] = 2.801,
["markType"] = "panel",
["text"] = "Neutral : M-113",
["markScope"] = "all",
["pos"] =
{
["y"] = 0,
["x"] = -146108.63642373,
["z"] = 445199.91242668,
}, -- end of ["pos"]
}, -- end of [1010]
[1012] =
{
["markId"] = 1012,
["time"] = 2.801,
["markType"] = "panel",
["text"] = "Neutral : CH-47D",
["markScope"] = "all",
["pos"] =
{
["y"] = 0,
["x"] = -158700.87914814,
["z"] = 404406.46136648,
}, -- end of ["pos"]
}, -- end of [1012]
[1001] =
{
["markId"] = 1001,
["radius"] = 3000,
["color"] =
{
[1] = 0.9,
[2] = 0.9,
[3] = 0.9,
[4] = 0.5,
}, -- end of ["color"]
["text"] = "",
["readOnly"] = true,
["coa"] = -1,
["time"] = 2.801,
["markType"] = "circle",
["lineType"] = 2,
["fillColor"] =
{
[1] = 0,
[2] = 0,
[3] = 1,
[4] = 0.5,
}, -- end of ["fillColor"]
["pos"] =
{
["y"] = 21.01003074646,
["x"] = -195650.515625,
[1] =
{
["y"] = 21.01003074646,
["x"] = -195650.515625,
["z"] = 515898.75,
}, -- end of [1]
["z"] = 515898.75,
}, -- end of ["pos"]
}, -- end of [1001]
[1003] =
{
["markId"] = 1003,
["radius"] = 3000,
["color"] =
{
[1] = 0.9,
[2] = 0.9,
[3] = 0.9,
[4] = 0.5,
}, -- end of ["color"]
["text"] = "",
["readOnly"] = true,
["coa"] = -1,
["time"] = 2.801,
["markType"] = "circle",
["lineType"] = 2,
["fillColor"] =
{
[1] = 0,
[2] = 0,
[3] = 1,
[4] = 0.5,
}, -- end of ["fillColor"]
["pos"] =
{
["y"] = 154.61184692383,
["x"] = -83329.7890625,
[1] =
{
["y"] = 154.61184692383,
["x"] = -83329.7890625,
["z"] = 835634.6875,
}, -- end of [1]
["z"] = 835634.6875,
}, -- end of ["pos"]
}, -- end of [1003]
[1005] =
{
["markId"] = 1005,
["radius"] = 3000,
["color"] =
{
[1] = 0.9,
[2] = 0.9,
[3] = 0.9,
[4] = 0.5,
}, -- end of ["color"]
["text"] = "",
["readOnly"] = true,
["coa"] = -1,
["time"] = 2.801,
["markType"] = "circle",
["lineType"] = 2,
["fillColor"] =
{
[1] = 0,
[2] = 0,
[3] = 1,
[4] = 0.5,
}, -- end of ["fillColor"]
["pos"] =
{
["y"] = 0,
["x"] = -355263.7340858,
[1] =
{
["y"] = 0,
["x"] = -355263.7340858,
["z"] = 443853.03125,
}, -- end of [1]
["z"] = 443853.03125,
}, -- end of ["pos"]
}, -- end of [1005]
[1007] =
{
["markId"] = 1007,
["radius"] = 3000,
["color"] =
{
[1] = 0.9,
[2] = 0.9,
[3] = 0.9,
[4] = 0.5,
}, -- end of ["color"]
["text"] = "",
["readOnly"] = true,
["coa"] = -1,
["time"] = 2.801,
["markType"] = "circle",
["lineType"] = 2,
["fillColor"] =
{
[1] = 0,
[2] = 0,
[3] = 1,
[4] = 0.5,
}, -- end of ["fillColor"]
["pos"] =
{
["y"] = 0,
["x"] = -245516.75906149,
[1] =
{
["y"] = 0,
["x"] = -245516.75906149,
["z"] = 386006.78022955,
}, -- end of [1]
["z"] = 386006.78022955,
}, -- end of ["pos"]
}, -- end of [1007]
[1009] =
{
["markId"] = 1009,
["time"] = 2.801,
["markType"] = "panel",
["text"] = "Neutral : FA-18C_hornet",
["markScope"] = "all",
["pos"] =
{
["y"] = 0,
["x"] = -198551.02959497,
["z"] = 319582.08692347,
}, -- end of ["pos"]
}, -- end of [1009]
[1011] =
{
["markId"] = 1011,
["time"] = 2.801,
["markType"] = "panel",
["text"] = "Neutral : Cafe",
["markScope"] = "all",
["pos"] =
{
["y"] = 0,
["x"] = -115514.59796101,
["z"] = 464123.689023,
}, -- end of ["pos"]
}, -- end of [1011]
} -- end of markList
+7 -1
View File
@@ -1,6 +1,12 @@
missionData =
{
["version"] = 18,
["version"] = 22,
["countries"] =
{
["australia"] = "neutral",
["russia"] = "red",
["usa"] = "blue",
}, -- end of ["countries"]
["files"] =
{
}, -- end of ["files"]
+62 -54
View File
@@ -8,7 +8,7 @@ navPoints =
[1] =
{
["y"] = 643248.57142856,
["x"] = -242471.42857143,
["type"] = "Default",
["name"] = "KB1NW",
["callsignStr"] = "KB1NW",
["id"] = 3,
@@ -26,11 +26,12 @@ navPoints =
["x"] = -242471.42857143,
["z"] = 643248.57142856,
}, -- end of ["point"]
["x"] = -242471.42857143,
}, -- end of [1]
[2] =
{
["y"] = 659819.99999999,
["x"] = -257614.28571428,
["y"] = 663781.15649176,
["type"] = "Default",
["name"] = "KB1SE",
["callsignStr"] = "KB1SE",
["id"] = 4,
@@ -45,14 +46,15 @@ navPoints =
["point"] =
{
["y"] = 0,
["x"] = -257614.28571428,
["z"] = 659819.99999999,
["x"] = -260714.32122958,
["z"] = 663781.15649176,
}, -- end of ["point"]
["x"] = -260714.32122958,
}, -- end of [2]
[3] =
{
["y"] = 643534.28571428,
["x"] = -257900,
["type"] = "Default",
["name"] = "KB1SW",
["callsignStr"] = "KB1SW",
["id"] = 5,
@@ -70,11 +72,12 @@ navPoints =
["x"] = -257900,
["z"] = 643534.28571428,
}, -- end of ["point"]
["x"] = -257900,
}, -- end of [3]
[4] =
{
["y"] = 659248.57142856,
["x"] = -243614.28571428,
["y"] = 660970.8133815,
["type"] = "Default",
["name"] = "KB1NE",
["callsignStr"] = "KB1NE",
["id"] = 6,
@@ -89,16 +92,21 @@ navPoints =
["point"] =
{
["y"] = 0,
["x"] = -243614.28571428,
["z"] = 659248.57142856,
["x"] = -244130.95830016,
["z"] = 660970.8133815,
}, -- end of ["point"]
["x"] = -244130.95830016,
}, -- end of [4]
[5] =
{
["y"] = 625534.28571428,
["x"] = -309328.57142857,
["name"] = "MAZDA",
["callsignStr"] = "MAZDA",
["type"] = "Default",
["point"] =
{
["y"] = 0,
["x"] = -309328.57142857,
["z"] = 625534.28571428,
}, -- end of ["point"]
["callsign"] = 4,
["id"] = 7,
["properties"] =
{
@@ -108,20 +116,21 @@ navPoints =
["vangle"] = 0,
["steer"] = 2,
}, -- end of ["properties"]
["point"] =
{
["y"] = 0,
["x"] = -309328.57142857,
["z"] = 625534.28571428,
}, -- end of ["point"]
["callsign"] = 4,
["y"] = 625534.28571428,
["x"] = -309328.57142857,
["name"] = "MAZDA",
["callsignStr"] = "MAZDA",
}, -- end of [5]
[6] =
{
["y"] = 670391.42857142,
["x"] = -260757.14285714,
["name"] = "DODGE",
["callsignStr"] = "DODGE",
["type"] = "Default",
["point"] =
{
["y"] = 0,
["x"] = -267473.88647362,
["z"] = 674352.58506319,
}, -- end of ["point"]
["callsign"] = 3,
["id"] = 8,
["properties"] =
{
@@ -131,23 +140,24 @@ navPoints =
["vangle"] = 0,
["steer"] = 2,
}, -- end of ["properties"]
["point"] =
{
["y"] = 0,
["x"] = -260757.14285714,
["z"] = 670391.42857142,
}, -- end of ["point"]
["callsign"] = 3,
["y"] = 674352.58506319,
["x"] = -267473.88647362,
["name"] = "DODGE",
["callsignStr"] = "DODGE",
}, -- end of [6]
}, -- end of ["blue"]
["red"] =
{
[1] =
{
["y"] = 587534.28571428,
["x"] = -295042.85714285,
["name"] = "ADDER",
["callsignStr"] = "ADDER",
["type"] = "Default",
["point"] =
{
["y"] = 0,
["x"] = -295042.85714285,
["z"] = 587534.28571428,
}, -- end of ["point"]
["callsign"] = 8,
["id"] = 1,
["properties"] =
{
@@ -157,20 +167,21 @@ navPoints =
["vangle"] = 0,
["steer"] = 2,
}, -- end of ["properties"]
["point"] =
{
["y"] = 0,
["x"] = -295042.85714285,
["z"] = 587534.28571428,
}, -- end of ["point"]
["callsign"] = 8,
["y"] = 587534.28571428,
["x"] = -295042.85714285,
["name"] = "ADDER",
["callsignStr"] = "ADDER",
}, -- end of [1]
[2] =
{
["y"] = 595248.57142856,
["x"] = -276757.14285714,
["name"] = "MAZDA",
["callsignStr"] = "MAZDA",
["type"] = "Default",
["point"] =
{
["y"] = 0,
["x"] = -276757.14285714,
["z"] = 595248.57142856,
}, -- end of ["point"]
["callsign"] = 4,
["id"] = 2,
["properties"] =
{
@@ -180,13 +191,10 @@ navPoints =
["vangle"] = 0,
["steer"] = 2,
}, -- end of ["properties"]
["point"] =
{
["y"] = 0,
["x"] = -276757.14285714,
["z"] = 595248.57142856,
}, -- end of ["point"]
["callsign"] = 4,
["y"] = 595248.57142856,
["x"] = -276757.14285714,
["name"] = "MAZDA",
["callsignStr"] = "MAZDA",
}, -- end of [2]
}, -- end of ["red"]
} -- end of navPoints
+393 -303
View File
@@ -1,355 +1,445 @@
removedAliveUnits =
{
[16789504] =
{
["point"] =
{
["y"] = 681535.14285714,
["x"] = -287036.85714286,
}, -- end of ["point"]
["skill"] = "Average",
["unit"] =
{
["id_"] = 16789504,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "Unit #005",
["heading"] = 0,
["unitId"] = 55,
["groupName"] = "teleGroup",
["countryId"] = 2,
["coalition"] = "blue",
["x"] = -287036.85714286,
["type"] = "Hawk ln",
["groupId"] = 35,
["country"] = "usa",
["playerCanDrive"] = true,
["y"] = 681535.14285714,
["pos"] =
{
["y"] = 34.870754241943,
["x"] = -287036.84375,
["z"] = 681535.125,
}, -- end of ["pos"]
}, -- end of [16789504]
[16789760] =
{
["point"] =
{
["y"] = 681535.14285714,
["x"] = -287076.85714286,
}, -- end of ["point"]
["skill"] = "Average",
["unit"] =
{
["id_"] = 16789760,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "Unit #006",
["heading"] = 0,
["unitId"] = 56,
["groupName"] = "teleGroup",
["countryId"] = 2,
["coalition"] = "blue",
["x"] = -287076.85714286,
["type"] = "Hawk ln",
["groupId"] = 35,
["country"] = "usa",
["playerCanDrive"] = true,
["y"] = 681535.14285714,
["pos"] =
{
["y"] = 34.792644500732,
["x"] = -287076.84375,
["z"] = 681535.125,
}, -- end of ["pos"]
}, -- end of [16789760]
[16790016] =
{
["point"] =
{
["y"] = 681535.14285714,
["x"] = -287116.85714286,
}, -- end of ["point"]
["skill"] = "Average",
["unit"] =
{
["id_"] = 16790016,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "Unit #007",
["heading"] = 0,
["unitId"] = 57,
["groupName"] = "teleGroup",
["countryId"] = 2,
["coalition"] = "blue",
["x"] = -287116.85714286,
["type"] = "Hawk ln",
["groupId"] = 35,
["country"] = "usa",
["playerCanDrive"] = true,
["y"] = 681535.14285714,
["pos"] =
{
["y"] = 34.768741607666,
["x"] = -287116.84375,
["z"] = 681535.125,
}, -- end of ["pos"]
}, -- end of [16790016]
[16790272] =
{
["point"] =
{
["y"] = 681535.14285714,
["x"] = -287156.85714286,
}, -- end of ["point"]
["skill"] = "Average",
["unit"] =
{
["id_"] = 16790272,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "Unit #008",
["heading"] = 0,
["unitId"] = 58,
["groupName"] = "teleGroup",
["countryId"] = 2,
["coalition"] = "blue",
["x"] = -287156.85714286,
["type"] = "Hawk cwar",
["groupId"] = 35,
["country"] = "usa",
["playerCanDrive"] = true,
["y"] = 681535.14285714,
["pos"] =
{
["y"] = 34.752384185791,
["x"] = -287156.84375,
["z"] = 681535.125,
}, -- end of ["pos"]
}, -- end of [16790272]
[16782848] =
{
["point"] =
{
["y"] = 654585.71428571,
["x"] = -292882.85714286,
}, -- end of ["point"]
["skill"] = "Average",
["unit"] =
{
["id_"] = 16782848,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "RuBTRs2",
["heading"] = -1.7994767003775,
["unitId"] = 28,
["groupName"] = "RuBTRs",
["countryId"] = 0,
["coalition"] = "red",
["x"] = -292882.85714286,
["type"] = "BTR-80",
["groupId"] = 13,
["country"] = "russia",
["playerCanDrive"] = true,
["y"] = 654585.71428571,
["pos"] =
{
["y"] = 11.750775044011,
["x"] = -292918.85355006,
["z"] = 654583.32898538,
}, -- end of ["pos"]
}, -- end of [16782848]
[16783104] =
{
["point"] =
{
["y"] = 654625.71428571,
["x"] = -292922.85714286,
}, -- end of ["point"]
["skill"] = "Average",
["unit"] =
{
["id_"] = 16783104,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "RuBTRs3",
["heading"] = -1.7994767003775,
["unitId"] = 29,
["groupName"] = "RuBTRs",
["countryId"] = 0,
["coalition"] = "red",
["x"] = -292922.85714286,
["type"] = "BTR-80",
["groupId"] = 13,
["country"] = "russia",
["playerCanDrive"] = true,
["y"] = 654625.71428571,
["pos"] =
{
["y"] = 11.784134667198,
["x"] = -292988.34774035,
["z"] = 654626.95184203,
}, -- end of ["pos"]
}, -- end of [16783104]
[16783360] =
[16783872] =
{
["point"] =
{
["y"] = 654665.71428571,
["x"] = -292962.85714286,
}, -- end of ["point"]
["coalitionId"] = 1,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16783360,
["id_"] = 16783872,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "RuBTRs4",
["heading"] = -1.7994767003775,
["unitId"] = 30,
["groupName"] = "RuBTRs",
["countryId"] = 0,
["coalition"] = "red",
["x"] = -292962.85714286,
["type"] = "BTR-80",
["groupId"] = 13,
["dbNum"] = 65,
["country"] = "russia",
["playerCanDrive"] = true,
["groupName"] = "RuBTRs",
["y"] = 654665.71428571,
["countryId"] = 0,
["x"] = -292962.85714286,
["coalition"] = "red",
["groupId"] = 13,
["type"] = "BTR-80",
["playerCanDrive"] = true,
["unitId"] = 30,
["pos"] =
{
["y"] = 12.104105100501,
["x"] = -293040.29557322,
["z"] = 654661.78361224,
["y"] = 11.924408832715,
["x"] = -292990.14129259,
["z"] = 654654.2600714,
}, -- end of ["pos"]
}, -- end of [16783360]
[16788736] =
}, -- end of [16783872]
[16783616] =
{
["point"] =
{
["y"] = 681535.14285714,
["x"] = -286916.85714286,
["y"] = 654625.71428571,
["x"] = -292922.85714286,
}, -- end of ["point"]
["coalitionId"] = 1,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16788736,
["id_"] = 16783616,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "Unit #002",
["heading"] = 0,
["unitId"] = 52,
["groupName"] = "teleGroup",
["countryId"] = 2,
["coalition"] = "blue",
["x"] = -286916.85714286,
["type"] = "Hawk tr",
["groupId"] = 35,
["country"] = "usa",
["unitName"] = "RuBTRs3",
["heading"] = -1.7994767003775,
["dbNum"] = 64,
["country"] = "russia",
["groupName"] = "RuBTRs",
["y"] = 654625.71428571,
["countryId"] = 0,
["x"] = -292922.85714286,
["coalition"] = "red",
["groupId"] = 13,
["type"] = "BTR-80",
["playerCanDrive"] = true,
["y"] = 681535.14285714,
["unitId"] = 29,
["pos"] =
{
["y"] = 35.254570007324,
["x"] = -286916.84375,
["z"] = 681535.125,
["y"] = 11.77412405724,
["x"] = -292960.22570373,
["z"] = 654613.66784073,
}, -- end of ["pos"]
}, -- end of [16788736]
[16788992] =
{
["point"] =
{
["y"] = 681535.14285714,
["x"] = -286956.85714286,
}, -- end of ["point"]
["skill"] = "Average",
["unit"] =
{
["id_"] = 16788992,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "Unit #003",
["heading"] = 0,
["unitId"] = 53,
["groupName"] = "teleGroup",
["countryId"] = 2,
["coalition"] = "blue",
["x"] = -286956.85714286,
["type"] = "Hawk sr",
["groupId"] = 35,
["country"] = "usa",
["playerCanDrive"] = true,
["y"] = 681535.14285714,
["pos"] =
{
["y"] = 35.099452972412,
["x"] = -286956.84375,
["z"] = 681535.125,
}, -- end of ["pos"]
}, -- end of [16788992]
[16789248] =
{
["point"] =
{
["y"] = 681535.14285714,
["x"] = -286996.85714286,
}, -- end of ["point"]
["skill"] = "Average",
["unit"] =
{
["id_"] = 16789248,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "Unit #004",
["heading"] = 0,
["unitId"] = 54,
["groupName"] = "teleGroup",
["countryId"] = 2,
["coalition"] = "blue",
["x"] = -286996.85714286,
["type"] = "Hawk pcp",
["groupId"] = 35,
["country"] = "usa",
["playerCanDrive"] = true,
["y"] = 681535.14285714,
["pos"] =
{
["y"] = 34.948871612549,
["x"] = -286996.84375,
["z"] = 681535.125,
}, -- end of ["pos"]
}, -- end of [16789248]
[16782592] =
}, -- end of [16783616]
[16783104] =
{
["point"] =
{
["y"] = 654545.71428571,
["x"] = -292842.85714286,
}, -- end of ["point"]
["coalitionId"] = 1,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16782592,
["id_"] = 16783104,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "RuBTRs1",
["heading"] = -1.7994767003775,
["unitId"] = 27,
["groupName"] = "RuBTRs",
["countryId"] = 0,
["coalition"] = "red",
["x"] = -292842.85714286,
["type"] = "BTR-80",
["groupId"] = 13,
["dbNum"] = 62,
["country"] = "russia",
["playerCanDrive"] = true,
["groupName"] = "RuBTRs",
["y"] = 654545.71428571,
["countryId"] = 0,
["x"] = -292842.85714286,
["coalition"] = "red",
["groupId"] = 13,
["type"] = "BTR-80",
["playerCanDrive"] = true,
["unitId"] = 27,
["pos"] =
{
["y"] = 11.73456417819,
["x"] = -292855.65589344,
["z"] = 654539.4776362,
["y"] = 11.786822795431,
["x"] = -292848.27535545,
["z"] = 654541.74244488,
}, -- end of ["pos"]
}, -- end of [16782592]
}, -- end of [16783104]
[16783360] =
{
["point"] =
{
["y"] = 654585.71428571,
["x"] = -292882.85714286,
}, -- end of ["point"]
["coalitionId"] = 1,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16783360,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "RuBTRs2",
["heading"] = -1.7994767003775,
["dbNum"] = 63,
["country"] = "russia",
["groupName"] = "RuBTRs",
["y"] = 654585.71428571,
["countryId"] = 0,
["x"] = -292882.85714286,
["coalition"] = "red",
["groupId"] = 13,
["type"] = "BTR-80",
["playerCanDrive"] = true,
["unitId"] = 28,
["pos"] =
{
["y"] = 11.939120905071,
["x"] = -292882.84549201,
["z"] = 654585.68482559,
}, -- end of ["pos"]
}, -- end of [16783360]
[16791296] =
{
["point"] =
{
["y"] = 681535.14285714,
["x"] = -286916.85714286,
}, -- end of ["point"]
["coalitionId"] = 2,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16791296,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "Unit #002",
["heading"] = 0,
["dbNum"] = 28,
["country"] = "usa",
["groupName"] = "teleGroup",
["y"] = 681535.14285714,
["countryId"] = 2,
["x"] = -286916.85714286,
["coalition"] = "blue",
["groupId"] = 35,
["type"] = "Hawk tr",
["playerCanDrive"] = true,
["unitId"] = 52,
["pos"] =
{
["y"] = 35.255569997127,
["x"] = -286916.84375,
["z"] = 681535.12499547,
}, -- end of ["pos"]
}, -- end of [16791296]
[16791552] =
{
["point"] =
{
["y"] = 681535.14285714,
["x"] = -286956.85714286,
}, -- end of ["point"]
["coalitionId"] = 2,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16791552,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "Unit #003",
["heading"] = 0,
["dbNum"] = 29,
["country"] = "usa",
["groupName"] = "teleGroup",
["y"] = 681535.14285714,
["countryId"] = 2,
["x"] = -286956.85714286,
["coalition"] = "blue",
["groupId"] = 35,
["type"] = "Hawk sr",
["playerCanDrive"] = true,
["unitId"] = 53,
["pos"] =
{
["y"] = 35.100452962215,
["x"] = -286956.84375,
["z"] = 681535.12499547,
}, -- end of ["pos"]
}, -- end of [16791552]
[16791808] =
{
["point"] =
{
["y"] = 681535.14285714,
["x"] = -286996.85714286,
}, -- end of ["point"]
["coalitionId"] = 2,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16791808,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "Unit #004",
["heading"] = 0,
["dbNum"] = 30,
["country"] = "usa",
["groupName"] = "teleGroup",
["y"] = 681535.14285714,
["countryId"] = 2,
["x"] = -286996.85714286,
["coalition"] = "blue",
["groupId"] = 35,
["type"] = "Hawk pcp",
["playerCanDrive"] = true,
["unitId"] = 54,
["pos"] =
{
["y"] = 34.949871608173,
["x"] = -286996.84375,
["z"] = 681535.124997,
}, -- end of ["pos"]
}, -- end of [16791808]
[16792064] =
{
["point"] =
{
["y"] = 681535.14285714,
["x"] = -287036.85714286,
}, -- end of ["point"]
["coalitionId"] = 2,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16792064,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "Unit #005",
["heading"] = 0,
["dbNum"] = 31,
["country"] = "usa",
["groupName"] = "teleGroup",
["y"] = 681535.14285714,
["countryId"] = 2,
["x"] = -287036.85714286,
["coalition"] = "blue",
["groupId"] = 35,
["type"] = "Hawk ln",
["playerCanDrive"] = true,
["unitId"] = 55,
["pos"] =
{
["y"] = 34.871754237567,
["x"] = -287036.84375,
["z"] = 681535.124997,
}, -- end of ["pos"]
}, -- end of [16792064]
[16792320] =
{
["point"] =
{
["y"] = 681535.14285714,
["x"] = -287076.85714286,
}, -- end of ["point"]
["coalitionId"] = 2,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16792320,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "Unit #006",
["heading"] = 0,
["dbNum"] = 32,
["country"] = "usa",
["groupName"] = "teleGroup",
["y"] = 681535.14285714,
["countryId"] = 2,
["x"] = -287076.85714286,
["coalition"] = "blue",
["groupId"] = 35,
["type"] = "Hawk ln",
["playerCanDrive"] = true,
["unitId"] = 56,
["pos"] =
{
["y"] = 34.793644496356,
["x"] = -287076.84375,
["z"] = 681535.124997,
}, -- end of ["pos"]
}, -- end of [16792320]
[16792576] =
{
["point"] =
{
["y"] = 681535.14285714,
["x"] = -287116.85714286,
}, -- end of ["point"]
["coalitionId"] = 2,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16792576,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "Unit #007",
["heading"] = 0,
["dbNum"] = 33,
["country"] = "usa",
["groupName"] = "teleGroup",
["y"] = 681535.14285714,
["countryId"] = 2,
["x"] = -287116.85714286,
["coalition"] = "blue",
["groupId"] = 35,
["type"] = "Hawk ln",
["playerCanDrive"] = true,
["unitId"] = 57,
["pos"] =
{
["y"] = 34.769741602126,
["x"] = -287116.84375,
["z"] = 681535.12499666,
}, -- end of ["pos"]
}, -- end of [16792576]
[16792832] =
{
["point"] =
{
["y"] = 681535.14285714,
["x"] = -287156.85714286,
}, -- end of ["point"]
["coalitionId"] = 2,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16792832,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "Unit #008",
["heading"] = 0,
["dbNum"] = 34,
["country"] = "usa",
["groupName"] = "teleGroup",
["y"] = 681535.14285714,
["countryId"] = 2,
["x"] = -287156.85714286,
["coalition"] = "blue",
["groupId"] = 35,
["type"] = "Hawk cwar",
["playerCanDrive"] = true,
["unitId"] = 58,
["pos"] =
{
["y"] = 34.753384180018,
["x"] = -287156.84375,
["z"] = 681535.12499658,
}, -- end of ["pos"]
}, -- end of [16792832]
[16784128] =
{
["point"] =
{
["y"] = 654705.71428571,
["x"] = -293002.85714286,
}, -- end of ["point"]
["coalitionId"] = 1,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16784128,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "RuBTRs5",
["heading"] = -1.7994767003775,
["dbNum"] = 66,
["country"] = "russia",
["groupName"] = "RuBTRs",
["y"] = 654705.71428571,
["countryId"] = 0,
["x"] = -293002.85714286,
["coalition"] = "red",
["groupId"] = 13,
["type"] = "BTR-80",
["playerCanDrive"] = true,
["unitId"] = 31,
["pos"] =
{
["y"] = 12.058476713064,
["x"] = -293009.35827146,
["z"] = 654701.52232138,
}, -- end of ["pos"]
}, -- end of [16784128]
[16784384] =
{
["point"] =
{
["y"] = 654745.71428571,
["x"] = -293042.85714286,
}, -- end of ["point"]
["coalitionId"] = 1,
["skill"] = "Average",
["unit"] =
{
["id_"] = 16784384,
}, -- end of ["unit"]
["category"] = "vehicle",
["unitName"] = "RuBTRs6",
["heading"] = -1.7994767003775,
["dbNum"] = 67,
["country"] = "russia",
["groupName"] = "RuBTRs",
["y"] = 654745.71428571,
["countryId"] = 0,
["x"] = -293042.85714286,
["coalition"] = "red",
["groupId"] = 13,
["type"] = "BTR-80",
["playerCanDrive"] = true,
["unitId"] = 32,
["pos"] =
{
["y"] = 12.101372694741,
["x"] = -293042.84375943,
["z"] = 654745.68637548,
}, -- end of ["pos"]
}, -- end of [16784384]
} -- end of removedAliveUnits
+23
View File
@@ -0,0 +1,23 @@
spawnsByBase =
{
["Sochi-Adler"] =
{
[1] = "Aerial-1-2",
[2] = "Aerial-1-3",
}, -- end of ["Sochi-Adler"]
["Static Helipad Single-1-1"] =
{
[1] = "Rotary-1-2",
}, -- end of ["Static Helipad Single-1-1"]
["Static Helipad Single-1-2"] =
{
[1] = "Rotary-2-1",
}, -- end of ["Static Helipad Single-1-2"]
["Naval-1-2"] =
{
[1] = "Aerial-2-1",
[2] = "Aerial-2-2",
[3] = "Aerial-2-3",
[4] = "Aerial-2-4",
}, -- end of ["Naval-1-2"]
} -- end of spawnsByBase
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+130 -66
View File
@@ -1,71 +1,5 @@
zonesByName =
{
["LZ zone"] =
{
["y"] = 614105.71428571,
["radius"] = 3000,
["zoneId"] = 2,
["point"] =
{
["y"] = 0,
["x"] = -245328.57142857,
["z"] = 614105.71428571,
}, -- end of ["point"]
["color"] =
{
[1] = 1,
[2] = 1,
[3] = 1,
[4] = 0.14901960784314,
}, -- end of ["color"]
["x"] = -245328.57142857,
["hidden"] = false,
["name"] = "LZ zone",
}, -- end of ["LZ zone"]
["explosion zone"] =
{
["y"] = 673819.99999999,
["radius"] = 3000,
["zoneId"] = 1,
["point"] =
{
["y"] = 0,
["x"] = -271900,
["z"] = 673819.99999999,
}, -- end of ["point"]
["color"] =
{
[1] = 1,
[2] = 1,
[3] = 1,
[4] = 0.14901960784314,
}, -- end of ["color"]
["x"] = -271900,
["hidden"] = false,
["name"] = "explosion zone",
}, -- end of ["explosion zone"]
["cloneZone"] =
{
["y"] = 692534.28571428,
["radius"] = 3000,
["zoneId"] = 3,
["point"] =
{
["y"] = 0,
["x"] = -285971.42857143,
["z"] = 692534.28571428,
}, -- end of ["point"]
["color"] =
{
[1] = 1,
[2] = 1,
[3] = 1,
[4] = 0.14901960784314,
}, -- end of ["color"]
["x"] = -285971.42857143,
["hidden"] = false,
["name"] = "cloneZone",
}, -- end of ["cloneZone"]
["shipZone"] =
{
["radius"] = 3000,
@@ -90,5 +24,135 @@ zonesByName =
["x"] = -163182.90396786,
["z"] = 267139.69375223,
}, -- end of ["point"]
["type"] = 0,
}, -- end of ["shipZone"]
["LZ zone"] =
{
["radius"] = 3000,
["zoneId"] = 2,
["color"] =
{
[1] = 1,
[2] = 1,
[3] = 1,
[4] = 0.14901960784314,
}, -- end of ["color"]
["properties"] =
{
}, -- end of ["properties"]
["hidden"] = false,
["y"] = 614105.71428571,
["x"] = -245328.57142857,
["name"] = "LZ zone",
["point"] =
{
["y"] = 41.581680297852,
["x"] = -245328.57142857,
["z"] = 614105.71428571,
}, -- end of ["point"]
["type"] = 0,
}, -- end of ["LZ zone"]
["quad"] =
{
["radius"] = 13592.958647037,
["zoneId"] = 339,
["color"] =
{
[1] = 1,
[2] = 0,
[3] = 0,
[4] = 0.14901960784314,
}, -- end of ["color"]
["properties"] =
{
["Property Value "] = "Eyyyyyyyy",
["Prop 2 is an"] = "empty string",
}, -- end of ["properties"]
["hidden"] = false,
["y"] = 590545.61946051,
["x"] = -151821.41786062,
["name"] = "quad",
["point"] =
{
["y"] = 2953.1298828125,
["x"] = -151821.41786062,
["z"] = 590545.61946051,
}, -- end of ["point"]
["type"] = 2,
["verticies"] =
{
[1] =
{
["y"] = 583845.85427019,
["x"] = -156926.00086276,
}, -- end of [1]
[2] =
{
["y"] = 594153.18533222,
["x"] = -161637.92363397,
}, -- end of [2]
[3] =
{
["y"] = 601908.22489317,
["x"] = -144360.87347286,
}, -- end of [3]
[4] =
{
["y"] = 582275.21334645,
["x"] = -144360.87347286,
}, -- end of [4]
}, -- end of ["verticies"]
}, -- end of ["quad"]
["cloneZone"] =
{
["radius"] = 3000,
["zoneId"] = 3,
["color"] =
{
[1] = 1,
[2] = 1,
[3] = 1,
[4] = 0.14901960784314,
}, -- end of ["color"]
["properties"] =
{
}, -- end of ["properties"]
["hidden"] = false,
["y"] = 692534.28571428,
["x"] = -285971.42857143,
["name"] = "cloneZone",
["point"] =
{
["y"] = 63.962001800537,
["x"] = -285971.42857143,
["z"] = 692534.28571428,
}, -- end of ["point"]
["type"] = 0,
}, -- end of ["cloneZone"]
["explosion zone"] =
{
["radius"] = 3000,
["zoneId"] = 1,
["color"] =
{
[1] = 1,
[2] = 1,
[3] = 1,
[4] = 0.14901960784314,
}, -- end of ["color"]
["properties"] =
{
}, -- end of ["properties"]
["hidden"] = false,
["y"] = 673819.99999999,
["x"] = -271900,
["name"] = "explosion zone",
["point"] =
{
["y"] = 94.110061645508,
["x"] = -271900,
["z"] = 673819.99999999,
}, -- end of ["point"]
["type"] = 0,
}, -- end of ["explosion zone"]
} -- end of zonesByName
+98 -34
View File
@@ -2,15 +2,8 @@ zonesByNum =
{
[1] =
{
["y"] = 614105.71428571,
["radius"] = 3000,
["point"] =
{
["y"] = 0,
["x"] = -245328.57142857,
["z"] = 614105.71428571,
}, -- end of ["point"]
["name"] = "LZ zone",
["zoneId"] = 3,
["color"] =
{
[1] = 1,
@@ -18,21 +11,25 @@ zonesByNum =
[3] = 1,
[4] = 0.14901960784314,
}, -- end of ["color"]
["x"] = -245328.57142857,
["properties"] =
{
}, -- end of ["properties"]
["hidden"] = false,
["zoneId"] = 2,
}, -- end of [1]
[2] =
{
["y"] = 692534.28571428,
["radius"] = 3000,
["x"] = -285971.42857143,
["name"] = "cloneZone",
["type"] = 0,
["point"] =
{
["y"] = 0,
["y"] = 63.962001800537,
["x"] = -285971.42857143,
["z"] = 692534.28571428,
}, -- end of ["point"]
["name"] = "cloneZone",
}, -- end of [1]
[2] =
{
["radius"] = 3000,
["zoneId"] = 1,
["color"] =
{
[1] = 1,
@@ -40,11 +37,48 @@ zonesByNum =
[3] = 1,
[4] = 0.14901960784314,
}, -- end of ["color"]
["x"] = -285971.42857143,
["properties"] =
{
}, -- end of ["properties"]
["hidden"] = false,
["zoneId"] = 3,
["y"] = 673819.99999999,
["x"] = -271900,
["name"] = "explosion zone",
["type"] = 0,
["point"] =
{
["y"] = 94.110061645508,
["x"] = -271900,
["z"] = 673819.99999999,
}, -- end of ["point"]
}, -- end of [2]
[3] =
{
["radius"] = 3000,
["zoneId"] = 2,
["color"] =
{
[1] = 1,
[2] = 1,
[3] = 1,
[4] = 0.14901960784314,
}, -- end of ["color"]
["properties"] =
{
}, -- end of ["properties"]
["hidden"] = false,
["y"] = 614105.71428571,
["x"] = -245328.57142857,
["name"] = "LZ zone",
["type"] = 0,
["point"] =
{
["y"] = 41.581680297852,
["x"] = -245328.57142857,
["z"] = 614105.71428571,
}, -- end of ["point"]
}, -- end of [3]
[4] =
{
["radius"] = 3000,
["zoneId"] = 174,
@@ -62,33 +96,63 @@ zonesByNum =
["y"] = 267139.69375223,
["x"] = -163182.90396786,
["name"] = "shipZone",
["type"] = 0,
["point"] =
{
["y"] = 0,
["x"] = -163182.90396786,
["z"] = 267139.69375223,
}, -- end of ["point"]
}, -- end of [3]
[4] =
}, -- end of [4]
[5] =
{
["y"] = 673819.99999999,
["radius"] = 3000,
["point"] =
{
["y"] = 0,
["x"] = -271900,
["z"] = 673819.99999999,
}, -- end of ["point"]
["name"] = "explosion zone",
["radius"] = 13592.958647037,
["zoneId"] = 339,
["color"] =
{
[1] = 1,
[2] = 1,
[3] = 1,
[2] = 0,
[3] = 0,
[4] = 0.14901960784314,
}, -- end of ["color"]
["x"] = -271900,
["properties"] =
{
["Property Value "] = "Eyyyyyyyy",
["Prop 2 is an"] = "empty string",
}, -- end of ["properties"]
["hidden"] = false,
["zoneId"] = 1,
}, -- end of [4]
["y"] = 590545.61946051,
["x"] = -151821.41786062,
["name"] = "quad",
["point"] =
{
["y"] = 2953.1298828125,
["x"] = -151821.41786062,
["z"] = 590545.61946051,
}, -- end of ["point"]
["type"] = 2,
["verticies"] =
{
[1] =
{
["y"] = 583845.85427019,
["x"] = -156926.00086276,
}, -- end of [1]
[2] =
{
["y"] = 594153.18533222,
["x"] = -161637.92363397,
}, -- end of [2]
[3] =
{
["y"] = 601908.22489317,
["x"] = -144360.87347286,
}, -- end of [3]
[4] =
{
["y"] = 582275.21334645,
["x"] = -144360.87347286,
}, -- end of [4]
}, -- end of ["verticies"]
}, -- end of [5]
} -- end of zonesByNum
+2 -2
View File
@@ -9,9 +9,9 @@ Forum Thread: http://forums.eagle.ru/showthread.php?t=98616
Documentation
====
The MIST Wiki page can be fore at this address: http://wiki.hoggit.us/view/Mission_Scripting_Tools_Documentation
The MIST Wiki page can be found at this address: http://wiki.hoggit.us/view/Mission_Scripting_Tools_Documentation
The attached pdf "mist gude.pdf" is attached in the download.
The attached pdf "mist gude.pdf" is attached in the download however is no longer being updated.
Description
====
+2675 -518
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff