mirror of
https://github.com/FlightControl-Master/MOOSE_MISSIONS.git
synced 2025-08-15 10:37:46 +00:00
MarkerOps_Base Demo
This commit is contained in:
@@ -0,0 +1,86 @@
|
||||
-------------------------------------------------------------------------
|
||||
-- MOP-100 - MARKEROPS_BASE - Basic Demo
|
||||
-------------------------------------------------------------------------
|
||||
-- Documentation
|
||||
--
|
||||
-- MARKEROPS_BASE: https://flightcontrol-master.github.io/MOOSE_DOCS_DEVELOP/Documentation/Core.MarkerOps_Base.html
|
||||
--
|
||||
-------------------------------------------------------------------------
|
||||
-- On the F10, call a tanker to start from the carrier. It will fly to
|
||||
-- an initial zone. Set a marker on the F10 map with keyword "TankerDemo".
|
||||
-- The Tanker will fly there. Set a marker on the F10 map with keywords
|
||||
-- "TankerDemo RTB". The tanke will RTB to the carrier.
|
||||
-------------------------------------------------------------------------
|
||||
-- Date: May 2021
|
||||
-------------------------------------------------------------------------
|
||||
|
||||
-- globals
|
||||
mytanker = nil
|
||||
tankergroup = nil
|
||||
TankerAuftrag = nil
|
||||
|
||||
function menucalltanker()
|
||||
|
||||
if not mytanker then
|
||||
-- new MARKEROPS_BASE object
|
||||
mytanker = MARKEROPS_BASE:New("TankerDemo",{"RTB"}) -- Core.MarkerOps_Base#MARKEROPS_BASE
|
||||
-- start FlightGroup
|
||||
tankergroup = FLIGHTGROUP:New("Tanker")
|
||||
tankergroup:SetHomebase(AIRBASE:FindByName("Truman"))
|
||||
tankergroup:SetDefaultRadio(245,"AM",false)
|
||||
tankergroup:SetDespawnAfterLanding()
|
||||
tankergroup:SwitchTACAN(45, "TKR", 1, "X")
|
||||
tankergroup:SetDefaultCallsign(CALLSIGN.Tanker.Texaco,1)
|
||||
-- Mission
|
||||
local InitialHold = ZONE:New("Initial Hold"):GetCoordinate()
|
||||
TankerAuftrag = AUFTRAG:NewTANKER(InitialHold,18000,UTILS.KnotsToAltKIAS(220,18000),90,20,0)
|
||||
TankerAuftrag:SetMissionRange(500)
|
||||
tankergroup:AddMission(TankerAuftrag)
|
||||
else
|
||||
local status = tankergroup:GetState()
|
||||
local m = MESSAGE:New(string.format("Tanker %s ops in status: %s", mytanker.Tag, status),10,"Info",true):ToAll()
|
||||
end
|
||||
|
||||
-- Handler function
|
||||
local function Handler(Keywords,Coord)
|
||||
|
||||
local MustRTB = false
|
||||
for _,_word in pairs (Keywords) do
|
||||
if string.lower(_word) == "rtb" then
|
||||
MustRTB = true
|
||||
end
|
||||
end
|
||||
|
||||
-- cancel current Auftrag
|
||||
TankerAuftrag:Cancel()
|
||||
|
||||
-- check if we need to RTB
|
||||
if MustRTB then
|
||||
tankergroup:RTB(AIRBASE:FindByName("Truman"))
|
||||
else
|
||||
-- no, fly to coordinate of marker
|
||||
local auftrag = AUFTRAG:NewTANKER(Coord,18000,UTILS.KnotsToAltKIAS(220,18000),90,20,0)
|
||||
auftrag:SetMissionRange(500)
|
||||
tankergroup:AddMission(auftrag)
|
||||
TankerAuftrag = auftrag
|
||||
end
|
||||
end
|
||||
|
||||
-- Event functions
|
||||
function mytanker:OnAfterMarkAdded(From,Event,To,Text,Keywords,Coord)
|
||||
local m = MESSAGE:New(string.format("Tanker %s Mark Added.", self.Tag),10,"Info",true):ToAll()
|
||||
Handler(Keywords,Coord)
|
||||
end
|
||||
|
||||
function mytanker:OnAfterMarkChanged(From,Event,To,Text,Keywords,Coord)
|
||||
local m = MESSAGE:New(string.format("Tanker %s Mark Changed.", self.Tag),10,"Info",true):ToAll()
|
||||
Handler(Keywords,Coord)
|
||||
end
|
||||
|
||||
function mytanker:OnAfterMarkDeleted(From,Event,To)
|
||||
local m = MESSAGE:New(string.format("Tanker %s Mark Deleted.", self.Tag),10,"Info",true):ToAll()
|
||||
end
|
||||
end
|
||||
|
||||
MenuTop = MENU_COALITION:New( coalition.side.BLUE,"Call Tanker")
|
||||
MenuTanker = MENU_COALITION_COMMAND:New(coalition.side.BLUE,"Start Tanker",MenuTop,menucalltanker)
|
||||
Binary file not shown.
@@ -0,0 +1,86 @@
|
||||
-------------------------------------------------------------------------
|
||||
-- MOP-100 - MARKEROPS_BASE - Basic Demo
|
||||
-------------------------------------------------------------------------
|
||||
-- Documentation
|
||||
--
|
||||
-- MARKEROPS_BASE: https://flightcontrol-master.github.io/MOOSE_DOCS_DEVELOP/Documentation/Core.MarkerOps_Base.html
|
||||
--
|
||||
-------------------------------------------------------------------------
|
||||
-- On the F10, call a tanker to start from the carrier. It will fly to
|
||||
-- an initial zone. Set a marker on the F10 map with keyword "TankerDemo".
|
||||
-- The Tanker will fly there. Set a marker on the F10 map with keywords
|
||||
-- "TankerDemo RTB". The tanke will RTB to the carrier.
|
||||
-------------------------------------------------------------------------
|
||||
-- Date: May 2021
|
||||
-------------------------------------------------------------------------
|
||||
|
||||
-- globals
|
||||
mytanker = nil
|
||||
tankergroup = nil
|
||||
TankerAuftrag = nil
|
||||
|
||||
function menucalltanker()
|
||||
|
||||
if not mytanker then
|
||||
-- new MARKEROPS_BASE object
|
||||
mytanker = MARKEROPS_BASE:New("TankerDemo",{"RTB"}) -- Core.MarkerOps_Base#MARKEROPS_BASE
|
||||
-- start FlightGroup
|
||||
tankergroup = FLIGHTGROUP:New("Tanker")
|
||||
tankergroup:SetHomebase(AIRBASE:FindByName("Truman"))
|
||||
tankergroup:SetDefaultRadio(245,"AM",false)
|
||||
tankergroup:SetDespawnAfterLanding()
|
||||
tankergroup:SwitchTACAN(45, "TKR", 1, "X")
|
||||
tankergroup:SetDefaultCallsign(CALLSIGN.Tanker.Texaco,1)
|
||||
-- Mission
|
||||
local InitialHold = ZONE:New("Initial Hold"):GetCoordinate()
|
||||
TankerAuftrag = AUFTRAG:NewTANKER(InitialHold,18000,UTILS.KnotsToAltKIAS(220,18000),90,20,0)
|
||||
TankerAuftrag:SetMissionRange(500)
|
||||
tankergroup:AddMission(TankerAuftrag)
|
||||
else
|
||||
local status = tankergroup:GetState()
|
||||
local m = MESSAGE:New(string.format("Tanker %s ops in status: %s", mytanker.Tag, status),10,"Info",true):ToAll()
|
||||
end
|
||||
|
||||
-- Handler function
|
||||
local function Handler(Keywords,Coord)
|
||||
|
||||
local MustRTB = false
|
||||
for _,_word in pairs (Keywords) do
|
||||
if string.lower(_word) == "rtb" then
|
||||
MustRTB = true
|
||||
end
|
||||
end
|
||||
|
||||
-- cancel current Auftrag
|
||||
TankerAuftrag:Cancel()
|
||||
|
||||
-- check if we need to RTB
|
||||
if MustRTB then
|
||||
tankergroup:RTB(AIRBASE:FindByName("Truman"))
|
||||
else
|
||||
-- no, fly to coordinate of marker
|
||||
local auftrag = AUFTRAG:NewTANKER(Coord,18000,UTILS.KnotsToAltKIAS(220,18000),90,20,0)
|
||||
auftrag:SetMissionRange(500)
|
||||
tankergroup:AddMission(auftrag)
|
||||
TankerAuftrag = auftrag
|
||||
end
|
||||
end
|
||||
|
||||
-- Event functions
|
||||
function mytanker:OnAfterMarkAdded(From,Event,To,Text,Keywords,Coord)
|
||||
local m = MESSAGE:New(string.format("Tanker %s Mark Added.", self.Tag),10,"Info",true):ToAll()
|
||||
Handler(Keywords,Coord)
|
||||
end
|
||||
|
||||
function mytanker:OnAfterMarkChanged(From,Event,To,Text,Keywords,Coord)
|
||||
local m = MESSAGE:New(string.format("Tanker %s Mark Changed.", self.Tag),10,"Info",true):ToAll()
|
||||
Handler(Keywords,Coord)
|
||||
end
|
||||
|
||||
function mytanker:OnAfterMarkDeleted(From,Event,To)
|
||||
local m = MESSAGE:New(string.format("Tanker %s Mark Deleted.", self.Tag),10,"Info",true):ToAll()
|
||||
end
|
||||
end
|
||||
|
||||
MenuTop = MENU_COALITION:New( coalition.side.BLUE,"Call Tanker")
|
||||
MenuTanker = MENU_COALITION_COMMAND:New(coalition.side.BLUE,"Start Tanker",MenuTop,menucalltanker)
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,9 @@
|
||||
dictionary =
|
||||
{
|
||||
["DictKey_descriptionNeutralsTask_4"] = "",
|
||||
["DictKey_sortie_5"] = "",
|
||||
["DictKey_descriptionText_1"] = "",
|
||||
["DictKey_descriptionBlueTask_3"] = "",
|
||||
["DictKey_ActionText_8"] = "Mission loaded",
|
||||
["DictKey_descriptionRedTask_2"] = "",
|
||||
} -- end of dictionary
|
||||
@@ -0,0 +1,5 @@
|
||||
mapResource =
|
||||
{
|
||||
["ResKey_Action_7"] = "MarkerOps_Base_Demo.lua",
|
||||
["ResKey_Action_6"] = "Moose_dev_small.lua",
|
||||
} -- end of mapResource
|
||||
762
MOP - MarkerOps_Base/MOP-100 - MARKEROPS_BASE/_unpacked/mission
Normal file
762
MOP - MarkerOps_Base/MOP-100 - MARKEROPS_BASE/_unpacked/mission
Normal file
@@ -0,0 +1,762 @@
|
||||
mission =
|
||||
{
|
||||
["trig"] =
|
||||
{
|
||||
["actions"] =
|
||||
{
|
||||
[1] = "a_do_script_file(getValueResourceByKey(\"ResKey_Action_6\")); mission.trig.func[1]=nil;",
|
||||
[2] = "a_do_script_file(getValueResourceByKey(\"ResKey_Action_7\"));a_out_text_delay(getValueDictByKey(\"DictKey_ActionText_8\"), 10, false, 0); mission.trig.func[2]=nil;",
|
||||
}, -- end of ["actions"]
|
||||
["events"] =
|
||||
{
|
||||
}, -- end of ["events"]
|
||||
["custom"] =
|
||||
{
|
||||
}, -- end of ["custom"]
|
||||
["func"] =
|
||||
{
|
||||
[1] = "if mission.trig.conditions[1]() then mission.trig.actions[1]() end",
|
||||
[2] = "if mission.trig.conditions[2]() then mission.trig.actions[2]() end",
|
||||
}, -- end of ["func"]
|
||||
["flag"] =
|
||||
{
|
||||
[1] = true,
|
||||
[2] = true,
|
||||
}, -- end of ["flag"]
|
||||
["conditions"] =
|
||||
{
|
||||
[1] = "return(c_time_after(3) )",
|
||||
[2] = "return(c_time_after(5) )",
|
||||
}, -- end of ["conditions"]
|
||||
["customStartup"] =
|
||||
{
|
||||
}, -- end of ["customStartup"]
|
||||
["funcStartup"] =
|
||||
{
|
||||
}, -- end of ["funcStartup"]
|
||||
}, -- end of ["trig"]
|
||||
["requiredModules"] =
|
||||
{
|
||||
}, -- end of ["requiredModules"]
|
||||
["date"] =
|
||||
{
|
||||
["Day"] = 21,
|
||||
["Year"] = 2016,
|
||||
["Month"] = 6,
|
||||
}, -- end of ["date"]
|
||||
["result"] =
|
||||
{
|
||||
["offline"] =
|
||||
{
|
||||
["conditions"] =
|
||||
{
|
||||
}, -- end of ["conditions"]
|
||||
["actions"] =
|
||||
{
|
||||
}, -- end of ["actions"]
|
||||
["func"] =
|
||||
{
|
||||
}, -- end of ["func"]
|
||||
}, -- end of ["offline"]
|
||||
["total"] = 0,
|
||||
["blue"] =
|
||||
{
|
||||
["conditions"] =
|
||||
{
|
||||
}, -- end of ["conditions"]
|
||||
["actions"] =
|
||||
{
|
||||
}, -- end of ["actions"]
|
||||
["func"] =
|
||||
{
|
||||
}, -- end of ["func"]
|
||||
}, -- end of ["blue"]
|
||||
["red"] =
|
||||
{
|
||||
["conditions"] =
|
||||
{
|
||||
}, -- end of ["conditions"]
|
||||
["actions"] =
|
||||
{
|
||||
}, -- end of ["actions"]
|
||||
["func"] =
|
||||
{
|
||||
}, -- end of ["func"]
|
||||
}, -- end of ["red"]
|
||||
}, -- end of ["result"]
|
||||
["groundControl"] =
|
||||
{
|
||||
["isPilotControlVehicles"] = false,
|
||||
["roles"] =
|
||||
{
|
||||
["artillery_commander"] =
|
||||
{
|
||||
["neutrals"] = 0,
|
||||
["blue"] = 0,
|
||||
["red"] = 0,
|
||||
}, -- end of ["artillery_commander"]
|
||||
["instructor"] =
|
||||
{
|
||||
["neutrals"] = 0,
|
||||
["blue"] = 1,
|
||||
["red"] = 0,
|
||||
}, -- end of ["instructor"]
|
||||
["observer"] =
|
||||
{
|
||||
["neutrals"] = 0,
|
||||
["blue"] = 0,
|
||||
["red"] = 0,
|
||||
}, -- end of ["observer"]
|
||||
["forward_observer"] =
|
||||
{
|
||||
["neutrals"] = 0,
|
||||
["blue"] = 0,
|
||||
["red"] = 0,
|
||||
}, -- end of ["forward_observer"]
|
||||
}, -- end of ["roles"]
|
||||
}, -- end of ["groundControl"]
|
||||
["maxDictId"] = 8,
|
||||
["pictureFileNameN"] =
|
||||
{
|
||||
}, -- end of ["pictureFileNameN"]
|
||||
["goals"] =
|
||||
{
|
||||
}, -- end of ["goals"]
|
||||
["descriptionNeutralsTask"] = "DictKey_descriptionNeutralsTask_4",
|
||||
["weather"] =
|
||||
{
|
||||
["atmosphere_type"] = 1,
|
||||
["wind"] =
|
||||
{
|
||||
["at8000"] =
|
||||
{
|
||||
["speed"] = 0,
|
||||
["dir"] = 0,
|
||||
}, -- end of ["at8000"]
|
||||
["at2000"] =
|
||||
{
|
||||
["speed"] = 0,
|
||||
["dir"] = 0,
|
||||
}, -- end of ["at2000"]
|
||||
["atGround"] =
|
||||
{
|
||||
["speed"] = 0,
|
||||
["dir"] = 0,
|
||||
}, -- end of ["atGround"]
|
||||
}, -- end of ["wind"]
|
||||
["enable_fog"] = false,
|
||||
["groundTurbulence"] = 0,
|
||||
["enable_dust"] = false,
|
||||
["season"] =
|
||||
{
|
||||
["temperature"] = 20,
|
||||
}, -- end of ["season"]
|
||||
["type_weather"] = 1,
|
||||
["modifiedTime"] = false,
|
||||
["cyclones"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["pressure_spread"] = 1149253.349486,
|
||||
["centerZ"] = 278760.06767669,
|
||||
["ellipticity"] = 0.47582126606361,
|
||||
["rotation"] = -0.34737105998151,
|
||||
["pressure_excess"] = 1281,
|
||||
["centerX"] = -115436.0535673,
|
||||
}, -- end of [1]
|
||||
[2] =
|
||||
{
|
||||
["pressure_spread"] = 1075697.043118,
|
||||
["centerZ"] = -459668.41996508,
|
||||
["ellipticity"] = 0.47582126606361,
|
||||
["rotation"] = -0.34737105998151,
|
||||
["pressure_excess"] = 1572,
|
||||
["centerX"] = -758734.18669702,
|
||||
}, -- end of [2]
|
||||
}, -- end of ["cyclones"]
|
||||
["name"] = "Winter, clean sky",
|
||||
["fog"] =
|
||||
{
|
||||
["thickness"] = 0,
|
||||
["visibility"] = 0,
|
||||
}, -- end of ["fog"]
|
||||
["dust_density"] = 0,
|
||||
["qnh"] = 760,
|
||||
["visibility"] =
|
||||
{
|
||||
["distance"] = 80000,
|
||||
}, -- end of ["visibility"]
|
||||
["clouds"] =
|
||||
{
|
||||
["thickness"] = 200,
|
||||
["density"] = 0,
|
||||
["preset"] = "Preset2",
|
||||
["base"] = 2500,
|
||||
["iprecptns"] = 0,
|
||||
}, -- end of ["clouds"]
|
||||
}, -- end of ["weather"]
|
||||
["theatre"] = "Caucasus",
|
||||
["triggers"] =
|
||||
{
|
||||
["zones"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["radius"] = 3000,
|
||||
["zoneId"] = 165,
|
||||
["color"] =
|
||||
{
|
||||
[1] = 1,
|
||||
[2] = 0,
|
||||
[3] = 0,
|
||||
[4] = 0.14901960784314,
|
||||
}, -- end of ["color"]
|
||||
["properties"] =
|
||||
{
|
||||
}, -- end of ["properties"]
|
||||
["hidden"] = false,
|
||||
["y"] = 579383.44446652,
|
||||
["x"] = -263519.37342603,
|
||||
["name"] = "Initial Hold",
|
||||
["type"] = 0,
|
||||
}, -- end of [1]
|
||||
}, -- end of ["zones"]
|
||||
}, -- end of ["triggers"]
|
||||
["map"] =
|
||||
{
|
||||
["centerY"] = 587086.18989842,
|
||||
["zoom"] = 799466.86336151,
|
||||
["centerX"] = -240046.6511704,
|
||||
}, -- end of ["map"]
|
||||
["coalitions"] =
|
||||
{
|
||||
["neutrals"] =
|
||||
{
|
||||
[1] = 70,
|
||||
[2] = 83,
|
||||
[3] = 65,
|
||||
[4] = 64,
|
||||
[5] = 63,
|
||||
[6] = 76,
|
||||
[7] = 84,
|
||||
[8] = 29,
|
||||
[9] = 62,
|
||||
[10] = 78,
|
||||
[11] = 61,
|
||||
[12] = 33,
|
||||
[13] = 60,
|
||||
[14] = 17,
|
||||
[15] = 34,
|
||||
[16] = 35,
|
||||
[17] = 69,
|
||||
[18] = 36,
|
||||
[19] = 59,
|
||||
[20] = 37,
|
||||
[21] = 71,
|
||||
[22] = 79,
|
||||
[23] = 58,
|
||||
[24] = 57,
|
||||
[25] = 56,
|
||||
[26] = 55,
|
||||
[27] = 38,
|
||||
[28] = 73,
|
||||
[29] = 39,
|
||||
[30] = 54,
|
||||
[31] = 77,
|
||||
[32] = 72,
|
||||
[33] = 42,
|
||||
[34] = 85,
|
||||
[35] = 75,
|
||||
[36] = 45,
|
||||
[37] = 53,
|
||||
[38] = 22,
|
||||
[39] = 52,
|
||||
[40] = 66,
|
||||
[41] = 51,
|
||||
[42] = 74,
|
||||
[43] = 82,
|
||||
[44] = 7,
|
||||
[45] = 68,
|
||||
[46] = 50,
|
||||
[47] = 49,
|
||||
[48] = 48,
|
||||
[49] = 67,
|
||||
}, -- end of ["neutrals"]
|
||||
["blue"] =
|
||||
{
|
||||
[1] = 21,
|
||||
[2] = 23,
|
||||
[3] = 11,
|
||||
[4] = 25,
|
||||
[5] = 8,
|
||||
[6] = 80,
|
||||
[7] = 28,
|
||||
[8] = 26,
|
||||
[9] = 13,
|
||||
[10] = 30,
|
||||
[11] = 5,
|
||||
[12] = 16,
|
||||
[13] = 6,
|
||||
[14] = 31,
|
||||
[15] = 32,
|
||||
[16] = 15,
|
||||
[17] = 20,
|
||||
[18] = 12,
|
||||
[19] = 40,
|
||||
[20] = 41,
|
||||
[21] = 44,
|
||||
[22] = 9,
|
||||
[23] = 46,
|
||||
[24] = 10,
|
||||
[25] = 3,
|
||||
[26] = 4,
|
||||
[27] = 1,
|
||||
[28] = 2,
|
||||
}, -- end of ["blue"]
|
||||
["red"] =
|
||||
{
|
||||
[1] = 18,
|
||||
[2] = 24,
|
||||
[3] = 27,
|
||||
[4] = 81,
|
||||
[5] = 0,
|
||||
[6] = 43,
|
||||
[7] = 19,
|
||||
[8] = 47,
|
||||
}, -- end of ["red"]
|
||||
}, -- end of ["coalitions"]
|
||||
["descriptionText"] = "DictKey_descriptionText_1",
|
||||
["pictureFileNameR"] =
|
||||
{
|
||||
}, -- end of ["pictureFileNameR"]
|
||||
["descriptionBlueTask"] = "DictKey_descriptionBlueTask_3",
|
||||
["descriptionRedTask"] = "DictKey_descriptionRedTask_2",
|
||||
["pictureFileNameB"] =
|
||||
{
|
||||
}, -- end of ["pictureFileNameB"]
|
||||
["coalition"] =
|
||||
{
|
||||
["neutrals"] =
|
||||
{
|
||||
["bullseye"] =
|
||||
{
|
||||
["y"] = 0,
|
||||
["x"] = 0,
|
||||
}, -- end of ["bullseye"]
|
||||
["nav_points"] =
|
||||
{
|
||||
}, -- end of ["nav_points"]
|
||||
["name"] = "neutrals",
|
||||
["country"] =
|
||||
{
|
||||
}, -- end of ["country"]
|
||||
}, -- end of ["neutrals"]
|
||||
["blue"] =
|
||||
{
|
||||
["bullseye"] =
|
||||
{
|
||||
["y"] = 617414,
|
||||
["x"] = -291014,
|
||||
}, -- end of ["bullseye"]
|
||||
["nav_points"] =
|
||||
{
|
||||
}, -- end of ["nav_points"]
|
||||
["name"] = "blue",
|
||||
["country"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["name"] = "USA",
|
||||
["ship"] =
|
||||
{
|
||||
["group"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["visible"] = false,
|
||||
["tasks"] =
|
||||
{
|
||||
}, -- end of ["tasks"]
|
||||
["uncontrollable"] = false,
|
||||
["route"] =
|
||||
{
|
||||
["points"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["alt"] = -0,
|
||||
["type"] = "Turning Point",
|
||||
["ETA"] = 0,
|
||||
["alt_type"] = "BARO",
|
||||
["formation_template"] = "",
|
||||
["y"] = 568506.17142857,
|
||||
["x"] = -318147.14285714,
|
||||
["ETA_locked"] = true,
|
||||
["speed"] = 15.416666666667,
|
||||
["action"] = "Turning Point",
|
||||
["task"] =
|
||||
{
|
||||
["id"] = "ComboTask",
|
||||
["params"] =
|
||||
{
|
||||
["tasks"] =
|
||||
{
|
||||
}, -- end of ["tasks"]
|
||||
}, -- end of ["params"]
|
||||
}, -- end of ["task"]
|
||||
["speed_locked"] = true,
|
||||
}, -- end of [1]
|
||||
[2] =
|
||||
{
|
||||
["alt"] = 0,
|
||||
["type"] = "Turning Point",
|
||||
["ETA"] = 6537.1127810174,
|
||||
["alt_type"] = "BARO",
|
||||
["formation_template"] = "",
|
||||
["y"] = 530077.45714286,
|
||||
["x"] = -224980.94285714,
|
||||
["ETA_locked"] = false,
|
||||
["speed"] = 15.416666666667,
|
||||
["action"] = "Turning Point",
|
||||
["task"] =
|
||||
{
|
||||
["id"] = "ComboTask",
|
||||
["params"] =
|
||||
{
|
||||
["tasks"] =
|
||||
{
|
||||
}, -- end of ["tasks"]
|
||||
}, -- end of ["params"]
|
||||
}, -- end of ["task"]
|
||||
["speed_locked"] = true,
|
||||
}, -- end of [2]
|
||||
[3] =
|
||||
{
|
||||
["alt"] = 0,
|
||||
["type"] = "Turning Point",
|
||||
["ETA"] = 9418.4758992353,
|
||||
["alt_type"] = "BARO",
|
||||
["formation_template"] = "",
|
||||
["y"] = 487524.68571429,
|
||||
["x"] = -237728.02857143,
|
||||
["ETA_locked"] = false,
|
||||
["speed"] = 15.416666666667,
|
||||
["action"] = "Turning Point",
|
||||
["task"] =
|
||||
{
|
||||
["id"] = "ComboTask",
|
||||
["params"] =
|
||||
{
|
||||
["tasks"] =
|
||||
{
|
||||
}, -- end of ["tasks"]
|
||||
}, -- end of ["params"]
|
||||
}, -- end of ["task"]
|
||||
["speed_locked"] = true,
|
||||
}, -- end of [3]
|
||||
[4] =
|
||||
{
|
||||
["alt"] = 0,
|
||||
["type"] = "Turning Point",
|
||||
["ETA"] = 16218.973911002,
|
||||
["alt_type"] = "BARO",
|
||||
["formation_template"] = "",
|
||||
["y"] = 518080.2,
|
||||
["x"] = -338017.6,
|
||||
["ETA_locked"] = false,
|
||||
["speed"] = 15.416666666667,
|
||||
["action"] = "Turning Point",
|
||||
["task"] =
|
||||
{
|
||||
["id"] = "ComboTask",
|
||||
["params"] =
|
||||
{
|
||||
["tasks"] =
|
||||
{
|
||||
}, -- end of ["tasks"]
|
||||
}, -- end of ["params"]
|
||||
}, -- end of ["task"]
|
||||
["speed_locked"] = true,
|
||||
}, -- end of [4]
|
||||
[5] =
|
||||
{
|
||||
["alt"] = 0,
|
||||
["type"] = "Turning Point",
|
||||
["ETA"] = 19495.605940847,
|
||||
["alt_type"] = "BARO",
|
||||
["formation_template"] = "",
|
||||
["y"] = 565694.31428571,
|
||||
["x"] = -321146.45714286,
|
||||
["ETA_locked"] = false,
|
||||
["speed"] = 15.416666666667,
|
||||
["action"] = "Turning Point",
|
||||
["task"] =
|
||||
{
|
||||
["id"] = "ComboTask",
|
||||
["params"] =
|
||||
{
|
||||
["tasks"] =
|
||||
{
|
||||
}, -- end of ["tasks"]
|
||||
}, -- end of ["params"]
|
||||
}, -- end of ["task"]
|
||||
["speed_locked"] = true,
|
||||
}, -- end of [5]
|
||||
}, -- end of ["points"]
|
||||
}, -- end of ["route"]
|
||||
["groupId"] = 1,
|
||||
["hidden"] = false,
|
||||
["units"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["transportable"] =
|
||||
{
|
||||
["randomTransportable"] = false,
|
||||
}, -- end of ["transportable"]
|
||||
["skill"] = "Average",
|
||||
["type"] = "CVN_75",
|
||||
["unitId"] = 1,
|
||||
["y"] = 568506.17142857,
|
||||
["x"] = -318147.14285714,
|
||||
["name"] = "Truman",
|
||||
["heading"] = 5.891971221873,
|
||||
["modulation"] = 0,
|
||||
["frequency"] = 127500000,
|
||||
}, -- end of [1]
|
||||
}, -- end of ["units"]
|
||||
["y"] = 568506.17142857,
|
||||
["x"] = -318147.14285714,
|
||||
["name"] = "CVN-75",
|
||||
["start_time"] = 0,
|
||||
}, -- end of [1]
|
||||
}, -- end of ["group"]
|
||||
}, -- end of ["ship"]
|
||||
["id"] = 2,
|
||||
["plane"] =
|
||||
{
|
||||
["group"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["lateActivation"] = true,
|
||||
["tasks"] =
|
||||
{
|
||||
}, -- end of ["tasks"]
|
||||
["radioSet"] = false,
|
||||
["task"] = "Refueling",
|
||||
["uncontrolled"] = false,
|
||||
["taskSelected"] = true,
|
||||
["route"] =
|
||||
{
|
||||
["routeRelativeTOT"] = true,
|
||||
["points"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["alt"] = 0,
|
||||
["action"] = "From Parking Area Hot",
|
||||
["alt_type"] = "BARO",
|
||||
["linkUnit"] = 1,
|
||||
["helipadId"] = 1,
|
||||
["speed"] = 138.88888888889,
|
||||
["task"] =
|
||||
{
|
||||
["id"] = "ComboTask",
|
||||
["params"] =
|
||||
{
|
||||
["tasks"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["enabled"] = true,
|
||||
["auto"] = true,
|
||||
["id"] = "Tanker",
|
||||
["number"] = 1,
|
||||
["params"] =
|
||||
{
|
||||
}, -- end of ["params"]
|
||||
}, -- end of [1]
|
||||
[2] =
|
||||
{
|
||||
["enabled"] = true,
|
||||
["auto"] = true,
|
||||
["id"] = "WrappedAction",
|
||||
["number"] = 2,
|
||||
["params"] =
|
||||
{
|
||||
["action"] =
|
||||
{
|
||||
["id"] = "ActivateBeacon",
|
||||
["params"] =
|
||||
{
|
||||
["type"] = 4,
|
||||
["frequency"] = 1088000000,
|
||||
["callsign"] = "TKR",
|
||||
["channel"] = 1,
|
||||
["modeChannel"] = "X",
|
||||
["bearing"] = true,
|
||||
["system"] = 4,
|
||||
}, -- end of ["params"]
|
||||
}, -- end of ["action"]
|
||||
}, -- end of ["params"]
|
||||
}, -- end of [2]
|
||||
}, -- end of ["tasks"]
|
||||
}, -- end of ["params"]
|
||||
}, -- end of ["task"]
|
||||
["type"] = "TakeOffParkingHot",
|
||||
["ETA"] = 0,
|
||||
["ETA_locked"] = true,
|
||||
["y"] = 568499.96883698,
|
||||
["x"] = -318084.84734869,
|
||||
["formation_template"] = "",
|
||||
["speed_locked"] = true,
|
||||
}, -- end of [1]
|
||||
}, -- end of ["points"]
|
||||
}, -- end of ["route"]
|
||||
["groupId"] = 2,
|
||||
["hidden"] = false,
|
||||
["units"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["alt"] = 0,
|
||||
["alt_type"] = "BARO",
|
||||
["livery_id"] = "usaf standard",
|
||||
["skill"] = "High",
|
||||
["parking"] = "1",
|
||||
["speed"] = 138.88888888889,
|
||||
["type"] = "S-3B Tanker",
|
||||
["unitId"] = 2,
|
||||
["psi"] = 0,
|
||||
["parking_id"] = "1",
|
||||
["x"] = -318084.84734869,
|
||||
["name"] = "tanker",
|
||||
["payload"] =
|
||||
{
|
||||
["pylons"] =
|
||||
{
|
||||
}, -- end of ["pylons"]
|
||||
["fuel"] = "7813",
|
||||
["flare"] = 30,
|
||||
["chaff"] = 30,
|
||||
["gun"] = 100,
|
||||
}, -- end of ["payload"]
|
||||
["y"] = 568499.96883698,
|
||||
["heading"] = 25.132741228719,
|
||||
["callsign"] =
|
||||
{
|
||||
[1] = 1,
|
||||
[2] = 1,
|
||||
[3] = 1,
|
||||
["name"] = "Texaco11",
|
||||
}, -- end of ["callsign"]
|
||||
["onboard_num"] = "010",
|
||||
}, -- end of [1]
|
||||
}, -- end of ["units"]
|
||||
["y"] = 568499.96883698,
|
||||
["x"] = -318084.84734869,
|
||||
["name"] = "Tanker",
|
||||
["communication"] = true,
|
||||
["start_time"] = 0,
|
||||
["modulation"] = 0,
|
||||
["frequency"] = 251,
|
||||
}, -- end of [1]
|
||||
}, -- end of ["group"]
|
||||
}, -- end of ["plane"]
|
||||
}, -- end of [1]
|
||||
}, -- end of ["country"]
|
||||
}, -- end of ["blue"]
|
||||
["red"] =
|
||||
{
|
||||
["bullseye"] =
|
||||
{
|
||||
["y"] = 371700,
|
||||
["x"] = 11557,
|
||||
}, -- end of ["bullseye"]
|
||||
["nav_points"] =
|
||||
{
|
||||
}, -- end of ["nav_points"]
|
||||
["name"] = "red",
|
||||
["country"] =
|
||||
{
|
||||
}, -- end of ["country"]
|
||||
}, -- end of ["red"]
|
||||
}, -- end of ["coalition"]
|
||||
["sortie"] = "DictKey_sortie_5",
|
||||
["version"] = 19,
|
||||
["trigrules"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["rules"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["coalitionlist"] = "red",
|
||||
["seconds"] = 3,
|
||||
["predicate"] = "c_time_after",
|
||||
["zone"] = 165,
|
||||
}, -- end of [1]
|
||||
}, -- end of ["rules"]
|
||||
["comment"] = "Moose",
|
||||
["eventlist"] = "",
|
||||
["actions"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["meters"] = 1000,
|
||||
["file"] = "ResKey_Action_6",
|
||||
["predicate"] = "a_do_script_file",
|
||||
["zone"] = 165,
|
||||
}, -- end of [1]
|
||||
}, -- end of ["actions"]
|
||||
["predicate"] = "triggerOnce",
|
||||
}, -- end of [1]
|
||||
[2] =
|
||||
{
|
||||
["rules"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["seconds"] = 5,
|
||||
["coalitionlist"] = "red",
|
||||
["predicate"] = "c_time_after",
|
||||
["zone"] = 165,
|
||||
}, -- end of [1]
|
||||
}, -- end of ["rules"]
|
||||
["eventlist"] = "",
|
||||
["predicate"] = "triggerOnce",
|
||||
["actions"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["file"] = "ResKey_Action_7",
|
||||
["meters"] = 1000,
|
||||
["predicate"] = "a_do_script_file",
|
||||
["zone"] = 165,
|
||||
}, -- end of [1]
|
||||
[2] =
|
||||
{
|
||||
["meters"] = 1000,
|
||||
["seconds"] = 10,
|
||||
["start_delay"] = 0,
|
||||
["zone"] = 165,
|
||||
["predicate"] = "a_out_text_delay",
|
||||
["text"] = "DictKey_ActionText_8",
|
||||
["KeyDict_text"] = "DictKey_ActionText_8",
|
||||
["clearview"] = false,
|
||||
}, -- end of [2]
|
||||
}, -- end of ["actions"]
|
||||
["comment"] = "Mission",
|
||||
}, -- end of [2]
|
||||
}, -- end of ["trigrules"]
|
||||
["currentKey"] = 642,
|
||||
["start_time"] = 28800,
|
||||
["forcedOptions"] =
|
||||
{
|
||||
}, -- end of ["forcedOptions"]
|
||||
["failures"] =
|
||||
{
|
||||
}, -- end of ["failures"]
|
||||
} -- end of mission
|
||||
345
MOP - MarkerOps_Base/MOP-100 - MARKEROPS_BASE/_unpacked/options
Normal file
345
MOP - MarkerOps_Base/MOP-100 - MARKEROPS_BASE/_unpacked/options
Normal file
@@ -0,0 +1,345 @@
|
||||
options =
|
||||
{
|
||||
["playerName"] = "Apple",
|
||||
["miscellaneous"] =
|
||||
{
|
||||
["allow_server_screenshots"] = false,
|
||||
["headmove"] = false,
|
||||
["TrackIR_external_views"] = false,
|
||||
["f5_nearest_ac"] = true,
|
||||
["f11_free_camera"] = true,
|
||||
["F2_view_effects"] = 1,
|
||||
["f10_awacs"] = true,
|
||||
["Coordinate_Display"] = "Precise Lat Long",
|
||||
["accidental_failures"] = false,
|
||||
["autologin"] = true,
|
||||
["force_feedback_enabled"] = false,
|
||||
["collect_stat"] = false,
|
||||
["chat_window_at_start"] = true,
|
||||
["synchronize_controls"] = true,
|
||||
["show_pilot_body"] = false,
|
||||
}, -- end of ["miscellaneous"]
|
||||
["difficulty"] =
|
||||
{
|
||||
["fuel"] = false,
|
||||
["easyRadar"] = false,
|
||||
["miniHUD"] = false,
|
||||
["optionsView"] = "optview_all",
|
||||
["setGlobal"] = true,
|
||||
["avionicsLanguage"] = "english",
|
||||
["cockpitVisualRM"] = true,
|
||||
["map"] = true,
|
||||
["spectatorExternalViews"] = true,
|
||||
["userSnapView"] = true,
|
||||
["iconsTheme"] = "nato",
|
||||
["weapons"] = false,
|
||||
["padlock"] = false,
|
||||
["birds"] = 70,
|
||||
["permitCrash"] = false,
|
||||
["immortal"] = false,
|
||||
["cockpitStatusBarAllowed"] = false,
|
||||
["wakeTurbulence"] = true,
|
||||
["easyFlight"] = false,
|
||||
["hideStick"] = true,
|
||||
["radio"] = false,
|
||||
["geffect"] = "realistic",
|
||||
["easyCommunication"] = true,
|
||||
["reports"] = true,
|
||||
["units"] = "imperial",
|
||||
["unrestrictedSATNAV"] = false,
|
||||
["autoTrimmer"] = false,
|
||||
["externalViews"] = true,
|
||||
["controlsIndicator"] = true,
|
||||
["RBDAI"] = true,
|
||||
["tips"] = false,
|
||||
["userMarks"] = true,
|
||||
["labels"] = 3,
|
||||
}, -- end of ["difficulty"]
|
||||
["VR"] =
|
||||
{
|
||||
["mirror_crop"] = false,
|
||||
["enable"] = false,
|
||||
["custom_IPD_enable"] = false,
|
||||
["box_mouse_cursor"] = true,
|
||||
["msaaMaskSize"] = 0.42,
|
||||
["pixel_density"] = 1,
|
||||
["use_mouse"] = false,
|
||||
["mirror_use_DCS_resolution"] = false,
|
||||
["prefer_built_in_audio"] = true,
|
||||
["interaction_with_grip_only"] = false,
|
||||
["bloom"] = true,
|
||||
["mirror_source"] = 0,
|
||||
["custom_IPD"] = 63.5,
|
||||
["hand_controllers"] = true,
|
||||
}, -- end of ["VR"]
|
||||
["graphics"] =
|
||||
{
|
||||
["messagesFontScale"] = 1.5,
|
||||
["forestDetailsFactor"] = 1,
|
||||
["rainDroplets"] = false,
|
||||
["LensEffects"] = 0,
|
||||
["box_mouse_cursor"] = false,
|
||||
["anisotropy"] = 1,
|
||||
["water"] = 0,
|
||||
["motionBlur"] = 1,
|
||||
["visibRange"] = "High",
|
||||
["aspect"] = 1.7777777777778,
|
||||
["lights"] = 2,
|
||||
["shadows"] = 2,
|
||||
["MSAA"] = 1,
|
||||
["SSAA"] = 0,
|
||||
["civTraffic"] = "low",
|
||||
["forestDistanceFactor"] = 0.55,
|
||||
["cockpitGI"] = 0,
|
||||
["terrainTextures"] = "max",
|
||||
["multiMonitorSetup"] = "1camera",
|
||||
["shadowTree"] = false,
|
||||
["chimneySmokeDensity"] = 5,
|
||||
["fullScreen"] = true,
|
||||
["DOF"] = 0,
|
||||
["clouds"] = 1,
|
||||
["sceneryDetailsFactor"] = 1,
|
||||
["flatTerrainShadows"] = 0,
|
||||
["useDeferredShading"] = 1,
|
||||
["textures"] = 2,
|
||||
["width"] = 2560,
|
||||
["SSLR"] = 0,
|
||||
["effects"] = 3,
|
||||
["SSAO"] = 0,
|
||||
["outputGamma"] = 2.2,
|
||||
["sync"] = true,
|
||||
["heatBlr"] = 1,
|
||||
["preloadRadius"] = 27000,
|
||||
["scaleGui"] = 1,
|
||||
["height"] = 1440,
|
||||
["clutterMaxDistance"] = 500,
|
||||
}, -- end of ["graphics"]
|
||||
["plugins"] =
|
||||
{
|
||||
["CA"] =
|
||||
{
|
||||
["kompass_options"] = 1,
|
||||
["ground_target_info"] = true,
|
||||
["ground_aim_helper"] = true,
|
||||
["ground_platform_shake"] = true,
|
||||
["ground_automatic"] = true,
|
||||
["ground_isometric"] = true,
|
||||
}, -- end of ["CA"]
|
||||
["DCS-SRS"] =
|
||||
{
|
||||
["srsOverlayHelpTextEnabled"] = false,
|
||||
["srsOverlayEnabled"] = true,
|
||||
["srsAutoLaunchEnabled"] = true,
|
||||
["srsOverlayCompactModeEnabled"] = true,
|
||||
}, -- end of ["DCS-SRS"]
|
||||
["F/A-18C"] =
|
||||
{
|
||||
["abDetent"] = 0,
|
||||
["canopyReflections"] = 0,
|
||||
["hmdEye"] = 1,
|
||||
["CPLocalList"] = "default",
|
||||
["F18RealisticTDC"] = true,
|
||||
["mfdReflections"] = 0,
|
||||
}, -- end of ["F/A-18C"]
|
||||
["Hercules"] =
|
||||
{
|
||||
["NWS_Coupled_Separate_Input_Device"] = false,
|
||||
["Steam_Version"] = false,
|
||||
}, -- end of ["Hercules"]
|
||||
["Tacview"] =
|
||||
{
|
||||
["tacviewDebugMode"] = 0,
|
||||
["tacviewRemoteControlPort"] = "42675",
|
||||
["tacviewFlightDataRecordingEnabled"] = true,
|
||||
["tacviewRealTimeTelemetryPassword"] = "",
|
||||
["tacviewSinglePlayerFlights"] = 2,
|
||||
["tacviewTerrainExport"] = 0,
|
||||
["tacviewAutoDiscardFlights"] = 10,
|
||||
["tacviewRemoteControlPassword"] = "",
|
||||
["tacviewRealTimeTelemetryPort"] = "42674",
|
||||
["tacviewBookmarkShortcut"] = 0,
|
||||
["tacviewRemoteControlEnabled"] = false,
|
||||
["tacviewMultiplayerFlightsAsHost"] = 2,
|
||||
["tacviewRealTimeTelemetryEnabled"] = true,
|
||||
["tacviewMultiplayerFlightsAsClient"] = 2,
|
||||
["tacviewModuleEnabled"] = true,
|
||||
}, -- end of ["Tacview"]
|
||||
["AH-6J"] =
|
||||
{
|
||||
["aimingMarkRemove"] = false,
|
||||
}, -- end of ["AH-6J"]
|
||||
["VRFree"] =
|
||||
{
|
||||
["enable"] = false,
|
||||
["set_debug"] = false,
|
||||
["mouseClickSrc"] = 0,
|
||||
}, -- end of ["VRFree"]
|
||||
["Supercarrier"] =
|
||||
{
|
||||
["enable_FLOLS_overlay"] = true,
|
||||
["Use_native_ATC_text"] = false,
|
||||
}, -- end of ["Supercarrier"]
|
||||
["M-2000C"] =
|
||||
{
|
||||
["FUEL_DETOT_AUTO"] = true,
|
||||
["AOA_SHOWINHUD"] = true,
|
||||
["TDC_GatePPI"] = 5,
|
||||
["TDC_PPI_is_Polar"] = false,
|
||||
["CPLocalList"] = "English",
|
||||
["REFUEL_HACK"] = false,
|
||||
["UNI_ALIGNED"] = true,
|
||||
["UNI_NODRIFT"] = true,
|
||||
["TDC_KBPrecission"] = 100,
|
||||
}, -- end of ["M-2000C"]
|
||||
["CaptoGlove"] =
|
||||
{
|
||||
["shoulderJointZ_Right"] = 23,
|
||||
["armBending"] = 60,
|
||||
["shoulderJointX_Right"] = -15,
|
||||
["mouseClickSrc"] = 0,
|
||||
["shoulderJointZ_Left"] = 23,
|
||||
["shoulderJointX_Left"] = -15,
|
||||
["set_debug"] = false,
|
||||
["pitchOffsetGlove_Left"] = 0,
|
||||
["yawOffsetGlove_Left"] = 0,
|
||||
["yawOffsetShoulder_Right"] = 0,
|
||||
["useBending"] = false,
|
||||
["shoulderLength_Right"] = 40,
|
||||
["pitchOffsetGlove_Right"] = 0,
|
||||
["shoulderJointY_Left"] = -23,
|
||||
["forearmLength_Left"] = 30,
|
||||
["shoulderLength_Left"] = 40,
|
||||
["set_attach"] = false,
|
||||
["pitchOffsetShoulder_Right"] = 0,
|
||||
["forearmLength_Right"] = 30,
|
||||
["pitchOffsetShoulder_Left"] = 0,
|
||||
["set_symmetrically"] = false,
|
||||
["yawOffsetShoulder_Left"] = 0,
|
||||
["enable"] = false,
|
||||
["shoulderJointY_Right"] = -23,
|
||||
["yawOffsetGlove_Right"] = 0,
|
||||
}, -- end of ["CaptoGlove"]
|
||||
["Ka-50"] =
|
||||
{
|
||||
["Ka50TrimmingMethod"] = 1,
|
||||
["CPLocalList"] = "Devrim's Custom Cockpit",
|
||||
["Ka50RudderTrimmer"] = true,
|
||||
["helmetCircleDisplacement"] = 11,
|
||||
}, -- end of ["Ka-50"]
|
||||
["A-4E-C"] =
|
||||
{
|
||||
["catapultLaunchMode"] = 0,
|
||||
["trimSpeed"] = 0,
|
||||
["catapultAlignmentCheck"] = true,
|
||||
}, -- end of ["A-4E-C"]
|
||||
["F-16C"] =
|
||||
{
|
||||
["abDetent"] = 0,
|
||||
["canopyReflections"] = 0,
|
||||
["hmdEye"] = 1,
|
||||
["CPLocalList"] = "default",
|
||||
["canopyTint"] = 1,
|
||||
["mfdReflections"] = 0,
|
||||
}, -- end of ["F-16C"]
|
||||
["UH-1H"] =
|
||||
{
|
||||
["UHRudderTrimmer"] = true,
|
||||
["autoPilot"] = true,
|
||||
["UH1HCockpitShake"] = 25,
|
||||
["CPLocalList"] = "default",
|
||||
["weapTooltips"] = false,
|
||||
["UHTrimmingMethod"] = 1,
|
||||
}, -- end of ["UH-1H"]
|
||||
["FC3"] =
|
||||
{
|
||||
["CPLocalList_Su-25"] = "default",
|
||||
["CPLocalList_Su-27"] = "English Blue",
|
||||
["CPLocalList_A-10A"] = "default",
|
||||
["CPLocalList_Su-33"] = "English Blue",
|
||||
["CPLocalList_MiG-29S"] = "English",
|
||||
["CPLocalList_MiG-29A"] = "English",
|
||||
["CPLocalList_J-11A"] = "default",
|
||||
["CPLocalList_MiG-29G"] = "English",
|
||||
["CPLocalList_F-15C"] = "default",
|
||||
}, -- end of ["FC3"]
|
||||
["Su-25T"] =
|
||||
{
|
||||
["CPLocalList"] = "default",
|
||||
}, -- end of ["Su-25T"]
|
||||
["TF-51D"] =
|
||||
{
|
||||
["assistance"] = 100,
|
||||
["CPLocalList"] = "default",
|
||||
["autoRudder"] = true,
|
||||
}, -- end of ["TF-51D"]
|
||||
["F-14"] =
|
||||
{
|
||||
["JESTER_HeadMenu"] = false,
|
||||
["FFB_TRIM"] = false,
|
||||
["JESTER_LandingCallouts"] = true,
|
||||
["AB_GATE"] = false,
|
||||
["JESTER_SwitchToPSTT"] = true,
|
||||
["TID_A2G"] = true,
|
||||
["WEAP_OFF_GUN"] = false,
|
||||
["WEAP_UP_SPPH"] = false,
|
||||
["JESTER_Camera"] = true,
|
||||
["RadioMenuPttOptions"] = 0,
|
||||
}, -- end of ["F-14"]
|
||||
["SA342"] =
|
||||
{
|
||||
["StickRollCurve"] = 0,
|
||||
["VibrationRate"] = 25,
|
||||
["PreloadWaypoints"] = true,
|
||||
["CPLocalList"] = "default",
|
||||
["EngineBreak"] = true,
|
||||
["EasierControls"] = false,
|
||||
["RudderTrim"] = false,
|
||||
["MiniStick"] = true,
|
||||
["StickPitchCurve"] = 0,
|
||||
["CPLocalListMG"] = "default",
|
||||
["CPLocalListL"] = "default",
|
||||
["ControlsDisplayLocation"] = 3,
|
||||
["CPLocalListM"] = "default",
|
||||
}, -- end of ["SA342"]
|
||||
["FW-190D9"] =
|
||||
{
|
||||
["assistance"] = 80,
|
||||
["CPLocalList"] = "default",
|
||||
["autoRudder"] = true,
|
||||
}, -- end of ["FW-190D9"]
|
||||
}, -- end of ["plugins"]
|
||||
["format"] = 1,
|
||||
["sound"] =
|
||||
{
|
||||
["main_output"] = "{0.0.0.00000000}.{6b248d45-0ca0-4852-aeee-cc487655cf04}",
|
||||
["FakeAfterburner"] = true,
|
||||
["volume"] = 75,
|
||||
["headphones_on_external_views"] = true,
|
||||
["subtitles"] = true,
|
||||
["world"] = 100,
|
||||
["hear_in_helmet"] = true,
|
||||
["cockpit"] = 100,
|
||||
["main_layout"] = "",
|
||||
["hp_output"] = "{0.0.0.00000000}.{6b248d45-0ca0-4852-aeee-cc487655cf04}",
|
||||
["radioSpeech"] = true,
|
||||
["voice_chat_output"] = "0:{0.0.0.00000000}.{6b248d45-0ca0-4852-aeee-cc487655cf04}",
|
||||
["voice_chat"] = false,
|
||||
["microphone_use"] = 2,
|
||||
["GBreathEffect"] = true,
|
||||
["switches"] = 100,
|
||||
["play_audio_while_minimized"] = false,
|
||||
["headphones"] = 89,
|
||||
["music"] = 0,
|
||||
["voice_chat_input"] = "0:{0.0.1.00000000}.{eb2f0e09-933c-4990-be92-bf38eb556ba1}",
|
||||
["gui"] = 100,
|
||||
}, -- end of ["sound"]
|
||||
["views"] =
|
||||
{
|
||||
["cockpit"] =
|
||||
{
|
||||
["mirrors"] = true,
|
||||
["reflections"] = false,
|
||||
["avionics"] = 3,
|
||||
}, -- end of ["cockpit"]
|
||||
}, -- end of ["views"]
|
||||
} -- end of options
|
||||
@@ -0,0 +1 @@
|
||||
Caucasus
|
||||
@@ -0,0 +1,845 @@
|
||||
warehouses =
|
||||
{
|
||||
["airports"] =
|
||||
{
|
||||
[12] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [12]
|
||||
[13] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [13]
|
||||
[14] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [14]
|
||||
[15] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [15]
|
||||
[16] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [16]
|
||||
[17] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [17]
|
||||
[18] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [18]
|
||||
[19] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [19]
|
||||
[20] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [20]
|
||||
[21] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [21]
|
||||
[22] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [22]
|
||||
[23] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [23]
|
||||
[24] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "BLUE",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [24]
|
||||
[25] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [25]
|
||||
[26] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [26]
|
||||
[27] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [27]
|
||||
[28] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [28]
|
||||
[29] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [29]
|
||||
[30] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [30]
|
||||
[31] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [31]
|
||||
[32] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "NEUTRAL",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [32]
|
||||
}, -- end of ["airports"]
|
||||
["warehouses"] =
|
||||
{
|
||||
[1] =
|
||||
{
|
||||
["gasoline"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["gasoline"]
|
||||
["unlimitedMunitions"] = true,
|
||||
["methanol_mixture"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["methanol_mixture"]
|
||||
["OperatingLevel_Air"] = 10,
|
||||
["diesel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["diesel"]
|
||||
["speed"] = 16.666666,
|
||||
["size"] = 100,
|
||||
["periodicity"] = 30,
|
||||
["suppliers"] =
|
||||
{
|
||||
}, -- end of ["suppliers"]
|
||||
["coalition"] = "blue",
|
||||
["jet_fuel"] =
|
||||
{
|
||||
["InitFuel"] = 100,
|
||||
}, -- end of ["jet_fuel"]
|
||||
["OperatingLevel_Eqp"] = 10,
|
||||
["unlimitedFuel"] = true,
|
||||
["aircrafts"] =
|
||||
{
|
||||
}, -- end of ["aircrafts"]
|
||||
["weapons"] =
|
||||
{
|
||||
}, -- end of ["weapons"]
|
||||
["OperatingLevel_Fuel"] = 10,
|
||||
["unlimitedAircrafts"] = true,
|
||||
}, -- end of [1]
|
||||
}, -- end of ["warehouses"]
|
||||
} -- end of warehouses
|
||||
10
MOP - MarkerOps_Base/MOP-100 - MARKEROPS_BASE/pack.ps1
Normal file
10
MOP - MarkerOps_Base/MOP-100 - MARKEROPS_BASE/pack.ps1
Normal file
@@ -0,0 +1,10 @@
|
||||
$dir = split-path -parent $MyInvocation.MyCommand.Definition
|
||||
cd $dir
|
||||
$file = Split-Path $dir -leaf
|
||||
|
||||
$dir
|
||||
$file
|
||||
|
||||
cd "_unpacked"
|
||||
. 7z a -r -y -tzip "..\$file.miz" *
|
||||
cd ..
|
||||
7
MOP - MarkerOps_Base/MOP-100 - MARKEROPS_BASE/unpack.ps1
Normal file
7
MOP - MarkerOps_Base/MOP-100 - MARKEROPS_BASE/unpack.ps1
Normal file
@@ -0,0 +1,7 @@
|
||||
$dir = split-path -parent $MyInvocation.MyCommand.Definition
|
||||
cd $dir
|
||||
$file = Split-Path $dir -leaf
|
||||
Remove-Item .\_unpacked -Force -Recurse
|
||||
md "_unpacked"
|
||||
cd "_unpacked"
|
||||
. 7z x -r -y "..\$file.miz" *
|
||||
Reference in New Issue
Block a user