mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
0.3.7.092
This commit is contained in:
parent
d7c0616a9b
commit
f34a0d1b55
@ -41,7 +41,8 @@
|
||||
[Added] if 5th array element is true 'telePos' config array can now use world position for teleport pads location.
|
||||
[Added] Setting to control random magazine ammo counts in loot spawner. CfgEpochClient -> randomizeMagazineAmmoCount (default: true)
|
||||
[Added] Debug box now dynamically spawns with flood lights to help players see inside the box at night.
|
||||
[Added-WIP] CUP terrain pack support added:
|
||||
[Added] CfgEpochClient 'WorldInteractions' config now stores all environmental loot classes and types for all supported maps.
|
||||
[Added] CUP terrain pack support added:
|
||||
- Sahrani
|
||||
- Southern Sahrani
|
||||
- United Sahrani
|
||||
@ -57,6 +58,7 @@
|
||||
- Bukovina
|
||||
- Bystrica
|
||||
- Takistan Mountains
|
||||
[Info] For CUP, use double quotes around mod for spaces in folder Example: -mod="@Epoch;@CUP Terrains - Core;@CUP Terrains - Maps;"
|
||||
[Changed] Removed support for AIA terrain pack in favor of CUP terrain pack.
|
||||
[Changed] Empty fuel barrel added to large trash and vehicle loot tables.
|
||||
[Changed] Earthquakes with mineral veins spawn chances increased with less players.
|
||||
|
Binary file not shown.
Binary file not shown.
17
Server_Install_Pack/Tools/InstallArma.cmd
Normal file
17
Server_Install_Pack/Tools/InstallArma.cmd
Normal file
@ -0,0 +1,17 @@
|
||||
@ECHO OFF
|
||||
SET STEAMUN=admin@youremail.net
|
||||
SET STEAMPW=chamgeme
|
||||
SET ARMASVRPATH=C:\Arma3Server
|
||||
|
||||
::(Full client\server package)
|
||||
SET ARMAAPPID=107410
|
||||
|
||||
::(Dedicated server package)
|
||||
::SET ARMAAPPID=233780
|
||||
|
||||
::(Development version)
|
||||
::SET ARMAAPPID=107410 -beta development
|
||||
|
||||
:: more info https://community.bistudio.com/wiki/Arma_3_Dedicated_Server
|
||||
|
||||
steamcmd.exe +login %STEAMUN% %STEAMPW% +force_install_dir "%ARMASVRPATH%" "+app_update %ARMAAPPID%" validate +quit
|
22
Server_Install_Pack/Tools/InstallBornholm.cmd
Normal file
22
Server_Install_Pack/Tools/InstallBornholm.cmd
Normal file
@ -0,0 +1,22 @@
|
||||
@ECHO OFF
|
||||
SET STEAMUN=admin@youremail.net
|
||||
SET STEAMPW=chamgeme
|
||||
SET ARMASVRPATH=C:\Arma3Server
|
||||
SET ARMAAPPID=107410
|
||||
|
||||
:: Use -mod line with quotes to support spaces in folder
|
||||
:: Example: -mod=@Epoch;@bornholm;
|
||||
|
||||
:: Install Bornholm
|
||||
|
||||
SET MODFOLDER=@bornholm
|
||||
SET ARMAWORKSHOPID=428181330
|
||||
|
||||
:: remove old folder
|
||||
rd /s/q "%ARMASVRPATH%\%MODFOLDER%"
|
||||
|
||||
:: update workshop mod
|
||||
START "" /WAIT steamcmd.exe +login %STEAMUN% %STEAMPW% +workshop_download_item %ARMAAPPID% %ARMAWORKSHOPID% +quit
|
||||
|
||||
:: copy files back to server
|
||||
xcopy /s/e/y/q/i "steamapps\workshop\content\%ARMAAPPID%\%ARMAWORKSHOPID%" "%ARMASVRPATH%\%MODFOLDER%"
|
37
Server_Install_Pack/Tools/InstallCUPTerrainPack.cmd
Normal file
37
Server_Install_Pack/Tools/InstallCUPTerrainPack.cmd
Normal file
@ -0,0 +1,37 @@
|
||||
@ECHO OFF
|
||||
SET STEAMUN=admin@youremail.net
|
||||
SET STEAMPW=chamgeme
|
||||
SET ARMASVRPATH=C:\Arma3Server
|
||||
SET ARMAAPPID=107410
|
||||
|
||||
:: Use -mod line with quotes to support spaces in folder
|
||||
:: Example: -mod="@Epoch;@CUP Terrains - Core;@CUP Terrains - Maps;"
|
||||
|
||||
:: Install CUP CORE
|
||||
|
||||
SET MODFOLDER=@CUP Terrains - Core
|
||||
SET ARMAWORKSHOPID=583496184
|
||||
|
||||
:: remove old folder
|
||||
rd /s/q "%ARMASVRPATH%\%MODFOLDER%"
|
||||
|
||||
:: update workshop mod
|
||||
START "" /WAIT steamcmd.exe +login %STEAMUN% %STEAMPW% +workshop_download_item %ARMAAPPID% %ARMAWORKSHOPID% +quit
|
||||
|
||||
:: copy files back to server
|
||||
xcopy /s/e/y/q/i "steamapps\workshop\content\%ARMAAPPID%\%ARMAWORKSHOPID%" "%ARMASVRPATH%\%MODFOLDER%"
|
||||
|
||||
|
||||
:: Install CUP MAPS
|
||||
|
||||
SET MODFOLDER=@CUP Terrains - Maps
|
||||
SET ARMAWORKSHOPID=583544987
|
||||
|
||||
:: remove old folder
|
||||
rd /s/q "%ARMASVRPATH%\%MODFOLDER%"
|
||||
|
||||
:: update workshop mod
|
||||
START "" /WAIT steamcmd.exe +login %STEAMUN% %STEAMPW% +workshop_download_item %ARMAAPPID% %ARMAWORKSHOPID% +quit
|
||||
|
||||
:: copy files back to server
|
||||
xcopy /s/e/y/q/i "steamapps\workshop\content\%ARMAAPPID%\%ARMAWORKSHOPID%" "%ARMASVRPATH%\%MODFOLDER%"
|
@ -3,12 +3,17 @@ SET STEAMUN=admin@youremail.net
|
||||
SET STEAMPW=chamgeme
|
||||
SET ARMASVRPATH=C:\Arma3Server
|
||||
SET ARMAAPPID=107410
|
||||
|
||||
:: Workshop IDs:
|
||||
:: EpochExperimental = 455221958
|
||||
:: Normal Epoch = 421839251
|
||||
SET ARMAWORKSHOPID=421839251
|
||||
|
||||
:: remove mod folder
|
||||
rd /s/q "%ARMASVRPATH%\@Epoch"
|
||||
|
||||
:: update workshop mod
|
||||
START "" /WAIT steamcmd.exe +login %STEAMUN% %STEAMPW% +workshop_download_item %ARMAAPPID% %ARMAWORKSHOPID% validate +quit
|
||||
:: copy files back to server
|
||||
|
||||
:: copy mod from steamcmd cache to server
|
||||
xcopy /s/e/y/q/i "steamapps\workshop\content\%ARMAAPPID%\%ARMAWORKSHOPID%" "%ARMASVRPATH%\@Epoch"
|
||||
:: steamcmd.exe +login %STEAMUN% %STEAMPW% +force_install_dir "%ARMASVRPATH%" "+app_update %ARMAAPPID%" validate +quit
|
||||
|
23
Server_Install_Pack/Tools/InstallEsseker.cmd
Normal file
23
Server_Install_Pack/Tools/InstallEsseker.cmd
Normal file
@ -0,0 +1,23 @@
|
||||
@ECHO OFF
|
||||
SET STEAMUN=admin@youremail.net
|
||||
SET STEAMPW=chamgeme
|
||||
SET ARMASVRPATH=C:\Arma3Server
|
||||
SET ARMAAPPID=107410
|
||||
|
||||
:: Requires CUP CORE and MAPS!
|
||||
:: Use -mod line with quotes to support spaces in folder
|
||||
:: Example: -mod="@Epoch;@CUP Terrains - Core;@CUP Terrains - Maps;@esseker"
|
||||
|
||||
:: Install Esseker
|
||||
|
||||
SET MODFOLDER=@esseker
|
||||
SET ARMAWORKSHOPID=498101407
|
||||
|
||||
:: remove old folder
|
||||
rd /s/q "%ARMASVRPATH%\%MODFOLDER%"
|
||||
|
||||
:: update workshop mod
|
||||
START "" /WAIT steamcmd.exe +login %STEAMUN% %STEAMPW% +workshop_download_item %ARMAAPPID% %ARMAWORKSHOPID% +quit
|
||||
|
||||
:: copy files back to server
|
||||
xcopy /s/e/y/q/i "steamapps\workshop\content\%ARMAAPPID%\%ARMAWORKSHOPID%" "%ARMASVRPATH%\%MODFOLDER%"
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -25,19 +25,26 @@ _object = objNull;
|
||||
_type = 0;
|
||||
|
||||
_config = 'CfgEpochClient' call EPOCH_returnConfig;
|
||||
_treesLootList = getArray(_config >> worldname >> "Trees");
|
||||
_bushesLootList = getArray(_config >> worldname >> "Bushes");
|
||||
|
||||
{
|
||||
_strObj = str _x;
|
||||
_str = str _x;
|
||||
_sel_object = _x;
|
||||
_findStart = _strObj find ": ";
|
||||
_findStart = _str find ": ";
|
||||
if (_findStart != -1) then{
|
||||
_p3dName = _strObj select[_findStart + 2, 999];
|
||||
if (_p3dName in _treesLootList) then{
|
||||
|
||||
_start = _findStart + 2;
|
||||
_end = (_str find ".") - _start;
|
||||
_p3dName = _str select[_start, _end];
|
||||
// diag_log format ["DEBUG: _p3dName %1",_p3dName];
|
||||
if (_p3dName find " " != -1) then {
|
||||
(_p3dName splitString " ") joinString "_"; // replace spaces with underscores
|
||||
};
|
||||
_finalConfig = (_config >> "WorldInteractions" >> (_p3dName + "_p3d"));
|
||||
|
||||
if (getNumber(_finalConfig >> "tree") == 1) then{
|
||||
_object = _sel_object;
|
||||
};
|
||||
if (_p3dName in _bushesLootList) then{
|
||||
if (getNumber(_finalConfig >> "bush") == 1) then{
|
||||
_type = 1;
|
||||
_object = _sel_object;
|
||||
};
|
||||
|
@ -15,25 +15,14 @@
|
||||
private["_found", "_return", "_foundLocalAnimal", "_str", "_blood", "_foundTerminal", "_index"];
|
||||
|
||||
_return = false;
|
||||
|
||||
if (isNil "EPOCH_trashLootList") then{
|
||||
_config = 'CfgEpochClient' call EPOCH_returnConfig;
|
||||
EPOCH_trashLootList = [];
|
||||
{
|
||||
EPOCH_trashLootList pushBack getArray(_config >> worldname >> _x);
|
||||
} forEach(getArray(_config >> worldname >> "TrashClasses"));
|
||||
};
|
||||
if (isNil "EPOCH_atmList") then{
|
||||
_config = 'CfgEpochClient' call EPOCH_returnConfig;
|
||||
EPOCH_atmList = getArray(_config >> worldname >> "ATM");
|
||||
};
|
||||
_config = 'CfgEpochClient' call EPOCH_returnConfig;
|
||||
|
||||
if (diag_tickTime - EPOCH_lastTrash > 2) then {
|
||||
EPOCH_lastTrash = diag_tickTime;
|
||||
|
||||
_destroyTrashObj = objNull;
|
||||
_lootAnimalObj = objNull;
|
||||
EPOCH_bankTerminal = objNull;
|
||||
_bankTerminal = objNull;
|
||||
_trashType = 0;
|
||||
|
||||
_objects = nearestObjects[player, [], 2];
|
||||
@ -47,19 +36,28 @@ if (diag_tickTime - EPOCH_lastTrash > 2) then {
|
||||
_str = str(_x);
|
||||
_findStart = _str find ": ";
|
||||
if (_findStart != -1) then {
|
||||
_p3dName = _str select[_findStart + 2, 999];
|
||||
|
||||
_start = _findStart + 2;
|
||||
_end = (_str find ".") - _start;
|
||||
_p3dName = _str select[_start, _end];
|
||||
if (_p3dName find " " != -1) then {
|
||||
(_p3dName splitString " ") joinString "_"; // replace spaces with underscores
|
||||
};
|
||||
_finalConfig = (_config >> "WorldInteractions" >> (_p3dName + "_p3d"));
|
||||
|
||||
{
|
||||
_found = _p3dName in _x;
|
||||
_found = (getNumber(_finalConfig >> _x) == 1);
|
||||
if (_found) exitWith{ _trashType = _forEachIndex };
|
||||
} forEach EPOCH_trashLootList;
|
||||
_foundTerminal = _p3dName in EPOCH_atmList;
|
||||
} forEach getArray(_config >> worldname >> "TrashClasses");
|
||||
// TrashClasses[] = { "Trash", "TrashSmall", "TrashVehicle", "PumpkinPatch", "TrashFood" };
|
||||
|
||||
//_foundTerminal = _p3dName in EPOCH_atmList;
|
||||
_foundTerminal = (getNumber(_finalConfig >> "bankTerminal") == 1);
|
||||
};
|
||||
};
|
||||
} else {
|
||||
if (alive _x) then {
|
||||
if ((typeOf _x) in["Land_PhoneBooth_02_F", "Land_PhoneBooth_01_F", "Land_Atm_01_F", "Land_Atm_02_F", "Land_Laptop_device_F"]) then {
|
||||
_foundTerminal = true
|
||||
};
|
||||
_foundTerminal = (getNumber(_config >> "WorldInteractions" >> (typeOf _x) >> "bankTerminal") == 1);
|
||||
if (_x isKindOf "Snake_random_EPOCH") then {
|
||||
_foundLocalAnimal = true;
|
||||
if (random 1 < 0.1) then {
|
||||
@ -74,7 +72,7 @@ if (diag_tickTime - EPOCH_lastTrash > 2) then {
|
||||
};
|
||||
if (_found) exitWith{ _destroyTrashObj = _x };
|
||||
if (_foundLocalAnimal) exitWith{ _lootAnimalObj = _x };
|
||||
if (_foundTerminal) exitWith{ EPOCH_bankTerminal = _x };
|
||||
if (_foundTerminal) exitWith{ _bankTerminal = _x };
|
||||
|
||||
}forEach _objects;
|
||||
|
||||
@ -110,7 +108,7 @@ if (diag_tickTime - EPOCH_lastTrash > 2) then {
|
||||
_animals remoteExec ["EPOCH_localCleanup",2];
|
||||
};
|
||||
};
|
||||
if (!isNull EPOCH_bankTerminal) then {
|
||||
if (!isNull _bankTerminal) then {
|
||||
// make balance request
|
||||
if (isNil "EPOCH_bankTransferActive") then {
|
||||
[player, [], Epoch_personalToken] remoteExec ["EPOCH_server_storeCrypto",2];
|
||||
|
@ -27,25 +27,32 @@ if ((diag_tickTime - EPOCH_lastMineRocks) >= 2) then {
|
||||
_object = objNull;
|
||||
|
||||
_config = 'CfgEpochClient' call EPOCH_returnConfig;
|
||||
_lootables = getArray(_config >> worldname >> "Wrecks");
|
||||
_cinderList = getArray(_config >> worldname >> "Cinder");
|
||||
_rocksList = getArray(_config >> worldname >> "Rocks");
|
||||
|
||||
_found = false;
|
||||
_foundIndex = -1;
|
||||
{
|
||||
_str = str(_x);
|
||||
_findStart = _str find ": ";
|
||||
if (_findStart != -1) then{
|
||||
_p3dName = _str select[_findStart + 2, 999];
|
||||
_found = _p3dName in _rocksList;
|
||||
if (_p3dName in _lootables) then{
|
||||
_found = true;
|
||||
_foundIndex = 1;
|
||||
};
|
||||
if (_p3dName in _cinderList) then{
|
||||
_found = true;
|
||||
_foundIndex = 0;
|
||||
if !(_x isKindOf "All") then {
|
||||
_str = str(_x);
|
||||
_findStart = _str find ": ";
|
||||
if (_findStart != -1) then{
|
||||
|
||||
_start = _findStart + 2;
|
||||
_end = (_str find ".") - _start;
|
||||
_p3dName = _str select[_start, _end];
|
||||
if (_p3dName find " " != -1) then {
|
||||
(_p3dName splitString " ") joinString "_"; // replace spaces with underscores
|
||||
};
|
||||
_finalConfig = (_config >> "WorldInteractions" >> (_p3dName + "_p3d"));
|
||||
|
||||
_found = (getNumber(_finalConfig >> "rock") == 1);
|
||||
if (getNumber(_finalConfig >> "wreck") == 1) then{
|
||||
_found = true;
|
||||
_foundIndex = 1;
|
||||
};
|
||||
if (getNumber(_finalConfig >> "cinder") == 1) then{
|
||||
_found = true;
|
||||
_foundIndex = 0;
|
||||
};
|
||||
};
|
||||
};
|
||||
if (_found)exitWith{_object = _x};
|
||||
|
@ -4,7 +4,7 @@
|
||||
Contributors:
|
||||
|
||||
Description:
|
||||
test code to replace string in word (old)
|
||||
code to replace string in word
|
||||
|
||||
Licence:
|
||||
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
||||
@ -12,41 +12,5 @@
|
||||
Github:
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_code/compile/EPOCH_replaceWord.sqf
|
||||
*/
|
||||
private["_nextChar2", "_nextChar1", "_nextChar", "_replaceArray", "_STRING", "_needle", "_replace"];
|
||||
_replaceArray = [];
|
||||
|
||||
_STRING = toArray(_this select 0);
|
||||
_needle = toArray(_this select 1);
|
||||
_replace = toArray(_this select 2);
|
||||
|
||||
{
|
||||
if (_x == (_needle select 0)) then {
|
||||
_nextChar = _forEachIndex + 1;
|
||||
if ((_STRING select _nextChar) == (_needle select 1)) then {
|
||||
_nextChar1 = _nextChar + 1;
|
||||
if ((_STRING select _nextChar1) == (_needle select 2)) then {
|
||||
_nextChar2 = _nextChar1 + 1;
|
||||
|
||||
if ((_STRING select _nextChar2) == (_needle select 3)) then {
|
||||
_nextChar3 = _nextChar2 + 1;
|
||||
|
||||
if ((_STRING select _nextChar3) == (_needle select 4)) then {
|
||||
_nextChar4 = _nextChar3 + 1;
|
||||
|
||||
if ((_STRING select _nextChar4) == (_needle select 5)) then {
|
||||
_replaceArray pushBack[_forEachIndex, _nextChar, _nextChar1, _nextChar2, _nextChar3, _nextChar4];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}forEach _STRING;
|
||||
{
|
||||
for "_i" from 0 to(count _x - 1) do {
|
||||
_STRING set[_x select _i, _replace select _i];
|
||||
}
|
||||
}forEach _replaceArray;
|
||||
|
||||
toString(_STRING);
|
||||
params ["_STRING","_needle","_replace"];
|
||||
_STRING splitString _needle joinString _replace
|
||||
|
@ -84,7 +84,7 @@ class CfgEpochClient
|
||||
displayAddEventHandler[] = {"keyDown","keyUp"};
|
||||
keyDown = "_this call EPOCH_KeyDown;";
|
||||
keyUp = "_this call EPOCH_KeyUp;";
|
||||
|
||||
|
||||
addEventHandler[] = {"Respawn","Put","Take","InventoryClosed","InventoryOpened","Fired","Killed"};
|
||||
Respawn = "(_this select 0) call EPOCH_clientRespawn";
|
||||
Put = "(_this select 1) call EPOCH_interact;_this call EPOCH_PutHandler";
|
||||
@ -106,6 +106,8 @@ class CfgEpochClient
|
||||
#include "CfgEpochClient\Stratis.hpp"
|
||||
#include "CfgEpochClient\Esseker.hpp"
|
||||
|
||||
#include "CfgEpochClient\WorldInteractions.hpp"
|
||||
|
||||
};
|
||||
|
||||
class CfgEpochSapper
|
||||
|
@ -23,161 +23,6 @@ class Altis {
|
||||
{ { 20084, 6728, 0 }, 55 }, //West of Selakano
|
||||
{ { 25303, 21807, 0 }, 100 } //Sofia
|
||||
};
|
||||
Rocks[] = {
|
||||
"sharpstone_03_lc.p3d",
|
||||
"sharpstone_02_lc.p3d",
|
||||
"sharpstone_01_lc.p3d",
|
||||
"sharpstone_02.p3d",
|
||||
"sharpstone_03.p3d",
|
||||
"sharprock_monolith.p3d",
|
||||
"sharprock_apart.p3d",
|
||||
"sharpstones_erosion.p3d",
|
||||
"bluntstone_01_lc.p3d",
|
||||
"bluntstone_02_lc.p3d",
|
||||
"bluntstone_03_lc.p3d",
|
||||
"bluntstones_erosion.p3d",
|
||||
"bluntstone_01.p3d",
|
||||
"bluntstone_03.p3d",
|
||||
"sharprock_spike.p3d",
|
||||
"sharprock_wallh.p3d",
|
||||
"w_sharpstone_03.p3d",
|
||||
"w_sharpstone_02.p3d",
|
||||
"w_sharpstone_01.p3d",
|
||||
"bluntrock_apart.p3d",
|
||||
"bluntstone_02.p3d",
|
||||
"bluntrock_monolith.p3d",
|
||||
"bluntrock_wallh.p3d",
|
||||
"sharprock_wallv.p3d",
|
||||
"stonesharp_medium.p3d",
|
||||
"stone_medium_f.p3d",
|
||||
"stonesharp_big.p3d",
|
||||
"stonesharp_small.p3d",
|
||||
"small_stone_02_f.p3d",
|
||||
"stone_small_f.p3d",
|
||||
"stone_big_f.p3d",
|
||||
"bluntrock_spike.p3d"
|
||||
};
|
||||
ATM[] = {
|
||||
"atm_01_f.p3d",
|
||||
"phonebooth_01_f.p3d",
|
||||
"atm_02_f.p3d",
|
||||
"phonebooth_02_f.p3d"
|
||||
};
|
||||
Water[] = {
|
||||
"barrelwater_f.p3d",
|
||||
"water_source_f.p3d",
|
||||
"waterbarrel_f.p3d",
|
||||
"canisterplastic_f.p3d",
|
||||
"watertank_f.p3d"
|
||||
};
|
||||
// main config
|
||||
// Trash config
|
||||
TrashClasses[] = { "Trash", "TrashSmall", "TrashVehicle", "PumpkinPatch", "TrashFood" };
|
||||
|
||||
TrashSmall[] = {
|
||||
};
|
||||
TrashVehicle[] = {
|
||||
};
|
||||
PumpkinPatch[] = {
|
||||
"p_pumpkin_summer.p3d",
|
||||
"pumpkin.p3d",
|
||||
};
|
||||
TrashFood[] = {
|
||||
};
|
||||
Trash[] = {
|
||||
"sack_f.p3d",
|
||||
"garbagebags_f.p3d",
|
||||
"pallets_f.p3d",
|
||||
"junkpile_f.p3d",
|
||||
"garbagepallet_f.p3d",
|
||||
"garbagewashingmachine_f.p3d",
|
||||
"basket_f.p3d",
|
||||
"sacks_goods_f.p3d",
|
||||
"crateswooden_f.p3d",
|
||||
"cratesplastic_f.p3d",
|
||||
"garbagebin_01_f.p3d",
|
||||
"barrelsand_f.p3d",
|
||||
"garbagecontainer_closed_f.p3d",
|
||||
"cratesshabby_f.p3d",
|
||||
"bucket_f.p3d",
|
||||
"garbagebarrel_01_f.p3d",
|
||||
"tyres_f.p3d",
|
||||
"cargobox_v1_f.p3d",
|
||||
"metalbarrel_f.p3d",
|
||||
"sacks_heap_f.p3d",
|
||||
"woodenbox_f.p3d",
|
||||
"grave_v1_f.p3d",
|
||||
"grave_v2_f.p3d",
|
||||
"calvary_02_v2_f.p3d",
|
||||
"fishinggear_02_f.p3d",
|
||||
"fishinggear_01_f.p3d",
|
||||
"humanskull_f.p3d",
|
||||
"calvary_02_v1_f.p3d",
|
||||
"rack_f.p3d",
|
||||
"wreck_uaz_f.p3d",
|
||||
"humanskeleton_f.p3d",
|
||||
"shelvesmetal_f.p3d"
|
||||
};
|
||||
Trees[] = {
|
||||
"t_ficusb1s_f.p3d",
|
||||
"t_oleae1s_f.p3d",
|
||||
"t_ficusb2s_f.p3d",
|
||||
"t_broussonetiap1s_f.p3d",
|
||||
"t_pinuss2s_f.p3d",
|
||||
"t_pinuss2s_b_f.p3d",
|
||||
"t_pinuss1s_f.p3d",
|
||||
"t_oleae2s_f.p3d",
|
||||
"i_house_big_01_v2_f.p3d",
|
||||
"i_house_big_02_v1_f.p3d",
|
||||
"i_addon_02_v1_f.p3d",
|
||||
"t_fraxinusav2s_f.p3d",
|
||||
"t_pinusp3s_f.p3d",
|
||||
"t_poplar2f_dead_f.p3d",
|
||||
"t_populusn3s_f.p3d",
|
||||
"t_phoenixc1s_f.p3d"
|
||||
};
|
||||
Bushes[] = {
|
||||
"b_ficusc2d_f.p3d",
|
||||
"b_ficusc1s_f.p3d",
|
||||
"b_neriumo2d_f.p3d",
|
||||
"b_arundod2s_f.p3d",
|
||||
"b_arundod3s_f.p3d",
|
||||
"b_ficusc2s_f.p3d"
|
||||
};
|
||||
Cinder[] = {
|
||||
"cinderblocks_f.p3d"
|
||||
};
|
||||
Wrecks[] = {
|
||||
"wall_tin_4_2.p3d",
|
||||
"mil_wiredfence_f.p3d",
|
||||
"cages_f.p3d",
|
||||
"wreck_car_f.p3d",
|
||||
"pipes_small_f.p3d",
|
||||
"pipe_fence_4m_f.p3d",
|
||||
"spp_tower_f.p3d",
|
||||
"wreck_ural_f.p3d",
|
||||
"wreck_car3_f.p3d",
|
||||
"ironpipes_f.p3d",
|
||||
"pipes_large_f.p3d",
|
||||
"coil_f.p3d",
|
||||
"wreck_offroad_f.p3d",
|
||||
"wreck_offroad2_f.p3d",
|
||||
"crabcages_f.p3d",
|
||||
"metalbarrel_empty_f.p3d",
|
||||
"net_fenced_8m_f.p3d",
|
||||
"net_fence_8m_f.p3d",
|
||||
"wavepowerplantbroken_f.p3d",
|
||||
"wreck_truck_dropside_f.p3d",
|
||||
"wavepowerplant_f.p3d",
|
||||
"wreck_traw_f.p3d",
|
||||
"wreck_slammer_f.p3d",
|
||||
"maroula_f.p3d",
|
||||
"indfnc_9_f.p3d",
|
||||
"indfnc_3_f.p3d",
|
||||
"indfnc_3_d_f.p3d",
|
||||
"wreck_car2_f.p3d",
|
||||
"net_fence_4m_f.p3d",
|
||||
"wreck_truck_f.p3d",
|
||||
"wreck_hunter_f.p3d",
|
||||
"wreck_slammer_hull_f.p3d"
|
||||
};
|
||||
};
|
||||
|
@ -38,133 +38,6 @@ class Bornholm {
|
||||
{ { 1322, 8733, 0 }, 200 }, //West Spawn
|
||||
{ { 15639, 191, 0 }, 200 } //East Spawn
|
||||
};
|
||||
Rocks[] = {
|
||||
"bo_r2_boulder1.p3d",
|
||||
"bo_r2_boulder2.p3d",
|
||||
"bo_r2_rock1.p3d",
|
||||
"bo_r2_rocktower.p3d",
|
||||
"bo_r2_rockwall.p3d"
|
||||
};
|
||||
ATM[] = {
|
||||
"nastenka.p3d",
|
||||
"nastenka2.p3d",
|
||||
"nastenka3.p3d"
|
||||
};
|
||||
Water[] = {
|
||||
"misc_well.p3d",
|
||||
"misc_wellpump.p3d",
|
||||
"kasna_new.p3d"
|
||||
};
|
||||
|
||||
// main config
|
||||
TrashClasses[] = {"Trash","TrashSmall","TrashVehicle","PumpkinPatch","TrashFood"};
|
||||
|
||||
TrashSmall[] = {
|
||||
};
|
||||
TrashVehicle[] = {
|
||||
};
|
||||
PumpkinPatch[] = {
|
||||
"p_pumpkin_summer.p3d",
|
||||
"pumpkin.p3d",
|
||||
};
|
||||
TrashFood[] = {
|
||||
};
|
||||
|
||||
Trash[] = {
|
||||
"misc_postbox.p3d",
|
||||
"popelnice.p3d",
|
||||
"garbage_misc.p3d",
|
||||
"paletyc.p3d",
|
||||
"junkpile.p3d",
|
||||
"kontejner.p3d",
|
||||
"misc_chickencoop.p3d",
|
||||
"misc_boogieman.p3d",
|
||||
"misc_hutch.p3d",
|
||||
"garbage_paleta.p3d",
|
||||
"misc_cargo1a.p3d",
|
||||
"misc_cargo2a.p3d",
|
||||
"misc_greenhouse.p3d",
|
||||
"zastavka_stojan.p3d",
|
||||
"p_helianthus.p3d",
|
||||
"junkpile_f.p3d",
|
||||
"bricks_v2_f.p3d",
|
||||
"woodenbox_f.p3d"
|
||||
};
|
||||
Trees[] = {
|
||||
"bo_t_populus3s.p3d",
|
||||
"bo_t_fagus2w.p3d",
|
||||
"bo_t_betula2s.p3d",
|
||||
"bo_t_fagus2s.p3d",
|
||||
"bo_t_fagus2f.p3d",
|
||||
"bo_t_sorbus2s.p3d",
|
||||
"bo_t_fraxinus2w.p3d",
|
||||
"bo_t_salix2s.p3d",
|
||||
"bo_t_malus1s.p3d",
|
||||
"bo_t_betula1f.p3d",
|
||||
"bo_t_pinusn2s.p3d",
|
||||
"bo_t_picea2s.p3d",
|
||||
"bo_t_larix3s.p3d",
|
||||
"bo_t_picea3f.p3d",
|
||||
"bo_t_picea1s.p3d",
|
||||
"bo_misc_fallentree2.p3d",
|
||||
"bo_misc_stub2.p3d",
|
||||
"bo_t_fraxinus2s.p3d",
|
||||
"bo_t_quercus2f.p3d",
|
||||
"bo_misc_trunk_water.p3d",
|
||||
"bo_misc_trunk_torzo.p3d",
|
||||
"bo_t_alnus2s.p3d",
|
||||
"bo_misc_fallentree1.p3d",
|
||||
"bo_t_betula2f.p3d",
|
||||
"bo_t_pinusn1s.p3d",
|
||||
"bo_t_pinuss2f.p3d",
|
||||
"bo_t_quercus3s.p3d",
|
||||
"bo_t_carpinus2s.p3d",
|
||||
"misc_fallenspruce.p3d",
|
||||
"bo_t_stub_picea.p3d",
|
||||
"misc_stub1.p3d",
|
||||
"bo_t_acer2s.p3d",
|
||||
"bo_t_betula2w.p3d",
|
||||
"bo_t_pyrus2s.p3d",
|
||||
"bo_b_corylus.p3d"
|
||||
};
|
||||
Bushes[] = {
|
||||
"bo_b_craet1.p3d",
|
||||
"bo_b_craet2.p3d",
|
||||
"bo_b_corylus.p3d",
|
||||
"bo_b_corylus2s.p3d",
|
||||
"bo_b_betulahumilis.p3d",
|
||||
"bo_b_sambucus.p3d",
|
||||
"salix2s.p3d",
|
||||
"bo_b_canina2s.p3d",
|
||||
"bo_b_pmugo.p3d",
|
||||
"bo_b_prunus.p3d"
|
||||
};
|
||||
Cinder[] = {
|
||||
"cinderblocks_f.p3d"
|
||||
};
|
||||
Wrecks[] = {
|
||||
"wall_fen1_5_pole.p3d",
|
||||
"wall_fen1_5_2.p3d",
|
||||
"wall_tin_4_2.p3d",
|
||||
"wall_fen1_5.p3d",
|
||||
"wall_indfnc_3.p3d",
|
||||
"wall_indfnc_9.p3d",
|
||||
"wall_indfnc_corner.p3d",
|
||||
"misc_concrete_high.p3d",
|
||||
"plot_vlnplech2.p3d",
|
||||
"misc_g_pipes.p3d",
|
||||
"wall_tincom_9.p3d",
|
||||
"wall_tin_4.p3d",
|
||||
"plot_vlnplech1.p3d",
|
||||
"wall_tincom_9_2.p3d",
|
||||
"wall_tincom_3.p3d",
|
||||
"wall_tincom_pole.p3d",
|
||||
"datsun01t.p3d",
|
||||
"datsun02t.p3d",
|
||||
"skodovka_wrecked.p3d",
|
||||
"lada_wrecked.p3d",
|
||||
"hiluxt.p3d",
|
||||
"uaz_wrecked.p3d",
|
||||
"ural_wrecked.p3d"
|
||||
};
|
||||
};
|
||||
|
@ -28,126 +28,6 @@ class Chernarus {
|
||||
{ { 11467, 7508, 0 }, 150 }, //Polana Factory
|
||||
{ { 13092, 7096, 0 }, 140 } //Solnichniy Factory
|
||||
};
|
||||
Rocks[] = {
|
||||
"r2_boulder1.p3d",
|
||||
"r2_boulder2.p3d",
|
||||
"r2_rock1.p3d",
|
||||
"r2_rocktower.p3d",
|
||||
"r2_rockwall.p3d"
|
||||
};
|
||||
ATM[] = {
|
||||
"nastenka.p3d",
|
||||
"nastenka2.p3d",
|
||||
"nastenka3.p3d"
|
||||
};
|
||||
Water[] = {
|
||||
"misc_well.p3d",
|
||||
"misc_wellpump.p3d",
|
||||
"kasna_new.p3d"
|
||||
};
|
||||
// main config
|
||||
TrashClasses[] = { "Trash", "TrashSmall", "TrashVehicle", "PumpkinPatch", "TrashFood" };
|
||||
|
||||
TrashSmall[] = {
|
||||
"misc_postbox.p3d"
|
||||
};
|
||||
TrashVehicle[] = {
|
||||
};
|
||||
PumpkinPatch[] = {
|
||||
"p_pumpkin_summer.p3d",
|
||||
"pumpkin.p3d",
|
||||
};
|
||||
TrashFood[] = {
|
||||
};
|
||||
Trash[] = {
|
||||
"popelnice.p3d",
|
||||
"garbage_misc.p3d",
|
||||
"paletyc.p3d",
|
||||
"junkpile.p3d",
|
||||
"kontejner.p3d",
|
||||
"misc_chickencoop.p3d",
|
||||
"misc_boogieman.p3d",
|
||||
"misc_hutch.p3d",
|
||||
"garbage_paleta.p3d",
|
||||
"misc_cargo1a.p3d",
|
||||
"misc_cargo2a.p3d",
|
||||
"misc_greenhouse.p3d",
|
||||
"zastavka_stojan.p3d"
|
||||
};
|
||||
Trees[] = {
|
||||
"t_populus3s.p3d",
|
||||
"t_fagus2w.p3d",
|
||||
"t_betula2s.p3d",
|
||||
"t_fagus2s.p3d",
|
||||
"t_fagus2f.p3d",
|
||||
"t_sorbus2s.p3d",
|
||||
"t_fraxinus2w.p3d",
|
||||
"t_salix2s.p3d",
|
||||
"t_malus1s.p3d",
|
||||
"t_betula1f.p3d",
|
||||
"t_pinusn2s.p3d",
|
||||
"t_picea2s.p3d",
|
||||
"t_larix3s.p3d",
|
||||
"t_picea3f.p3d",
|
||||
"t_picea1s.p3d",
|
||||
"misc_fallentree2.p3d",
|
||||
"misc_stub2.p3d",
|
||||
"t_fraxinus2s.p3d",
|
||||
"t_quercus2f.p3d",
|
||||
"misc_trunk_water.p3d",
|
||||
"misc_trunk_torzo.p3d",
|
||||
"t_alnus2s.p3d",
|
||||
"misc_fallentree1.p3d",
|
||||
"t_betula2f.p3d",
|
||||
"t_pinusn1s.p3d",
|
||||
"t_pinuss2f.p3d",
|
||||
"t_quercus3s.p3d",
|
||||
"t_carpinus2s.p3d",
|
||||
"misc_fallenspruce.p3d",
|
||||
"t_stub_picea.p3d",
|
||||
"misc_stub1.p3d",
|
||||
"t_acer2s.p3d",
|
||||
"t_betula2w.p3d",
|
||||
"t_pyrus2s.p3d"
|
||||
};
|
||||
Bushes[] = {
|
||||
"b_craet1.p3d",
|
||||
"b_craet2.p3d",
|
||||
"b_corylus.p3d",
|
||||
"b_corylus2s.p3d",
|
||||
"b_betulahumilis.p3d",
|
||||
"b_sambucus.p3d",
|
||||
"b_salix2s.p3d",
|
||||
"b_canina2s.p3d",
|
||||
"b_pmugo.p3d",
|
||||
"b_prunus.p3d"
|
||||
};
|
||||
Cinder[] = {
|
||||
"cinderblocks_f.p3d"
|
||||
};
|
||||
Wrecks[] = {
|
||||
"wall_fen1_5_pole.p3d",
|
||||
"wall_fen1_5_2.p3d",
|
||||
"wall_tin_4_2.p3d",
|
||||
"wall_fen1_5.p3d",
|
||||
"wall_indfnc_3.p3d",
|
||||
"wall_indfnc_9.p3d",
|
||||
"wall_indfnc_corner.p3d",
|
||||
"misc_concrete_high.p3d",
|
||||
"plot_vlnplech2.p3d",
|
||||
"misc_g_pipes.p3d",
|
||||
"wall_tincom_9.p3d",
|
||||
"wall_tin_4.p3d",
|
||||
"plot_vlnplech1.p3d",
|
||||
"wall_tincom_9_2.p3d",
|
||||
"wall_tincom_3.p3d",
|
||||
"wall_tincom_pole.p3d",
|
||||
"datsun01t.p3d",
|
||||
"datsun02t.p3d",
|
||||
"skodovka_wrecked.p3d",
|
||||
"lada_wrecked.p3d",
|
||||
"hiluxt.p3d",
|
||||
"uaz_wrecked.p3d",
|
||||
"ural_wrecked.p3d"
|
||||
};
|
||||
};
|
||||
|
@ -28,131 +28,6 @@ class Chernarus_Summer {
|
||||
{ { 11467, 7508, 0 }, 150 }, //Polana Factory
|
||||
{ { 13092, 7096, 0 }, 140 } //Solnichniy Factory
|
||||
};
|
||||
Rocks[] = {
|
||||
"r2_boulder1.p3d",
|
||||
"r2_boulder2.p3d",
|
||||
"r2_rock1.p3d",
|
||||
"r2_rocktower.p3d",
|
||||
"r2_rockwall.p3d"
|
||||
};
|
||||
ATM[] = {
|
||||
"nastenka.p3d",
|
||||
"nastenka2.p3d",
|
||||
"nastenka3.p3d"
|
||||
};
|
||||
Water[] = {
|
||||
"misc_well.p3d",
|
||||
"misc_wellpump.p3d"
|
||||
};
|
||||
// main config
|
||||
TrashClasses[] = { "Trash", "TrashSmall", "TrashVehicle", "PumpkinPatch", "TrashFood" };
|
||||
|
||||
TrashSmall[] = {
|
||||
};
|
||||
TrashVehicle[] = {
|
||||
};
|
||||
PumpkinPatch[] = {
|
||||
"p_pumpkin_summer.p3d",
|
||||
"pumpkin.p3d",
|
||||
};
|
||||
TrashFood[] = {
|
||||
};
|
||||
Trash[] = {
|
||||
"misc_postbox.p3d",
|
||||
"popelnice.p3d",
|
||||
"garbage_misc.p3d",
|
||||
"paletyc.p3d",
|
||||
"junkpile.p3d",
|
||||
"kontejner.p3d",
|
||||
"misc_chickencoop.p3d",
|
||||
"misc_boogieman.p3d",
|
||||
"misc_hutch.p3d",
|
||||
"garbage_paleta.p3d",
|
||||
"misc_cargo1a.p3d",
|
||||
"misc_cargo2a.p3d",
|
||||
"misc_greenhouse.p3d",
|
||||
"zastavka_stojan.p3d"
|
||||
};
|
||||
Trees[] = {
|
||||
"t_populus3s.p3d",
|
||||
"t_fagus2w.p3d",
|
||||
"t_betula2s.p3d",
|
||||
"t_fagus2s.p3d",
|
||||
"t_fagus2f.p3d",
|
||||
"t_sorbus2s.p3d",
|
||||
"t_fraxinus2w.p3d",
|
||||
"t_salix2s.p3d",
|
||||
"t_malus1s.p3d",
|
||||
"t_betula1f.p3d",
|
||||
"t_pinusn2s.p3d",
|
||||
"t_picea2s.p3d",
|
||||
"t_larix3s.p3d",
|
||||
"t_picea3f.p3d",
|
||||
"t_picea1s.p3d",
|
||||
"misc_fallentree2.p3d",
|
||||
"misc_stub2.p3d",
|
||||
"t_fraxinus2s.p3d",
|
||||
"t_quercus2f.p3d",
|
||||
"misc_trunk_water.p3d",
|
||||
"misc_trunk_torzo.p3d",
|
||||
"t_alnus2s.p3d",
|
||||
"misc_fallentree1.p3d",
|
||||
"t_betula2f.p3d",
|
||||
"t_pinusn1s.p3d",
|
||||
"t_pinuss2f.p3d",
|
||||
"t_quercus3s.p3d",
|
||||
"t_carpinus2s.p3d",
|
||||
"misc_fallenspruce.p3d",
|
||||
"t_stub_picea.p3d",
|
||||
"misc_stub1.p3d",
|
||||
"t_acer2s.p3d",
|
||||
"t_betula2w.p3d",
|
||||
"t_fagus2s_summer.p3d",
|
||||
"t_fagus2f_summer.p3d",
|
||||
"t_betula2s_summer.p3d"
|
||||
};
|
||||
Bushes[] = {
|
||||
"b_craet1.p3d",
|
||||
"b_craet2.p3d",
|
||||
"b_corylus.p3d",
|
||||
"b_corylus2s.p3d",
|
||||
"b_betulahumilis.p3d",
|
||||
"b_sambucus.p3d",
|
||||
"b_salix2s.p3d",
|
||||
"b_canina2s.p3d",
|
||||
"b_pmugo.p3d",
|
||||
"b_prunus.p3d",
|
||||
"b_corylus2s_summer.p3d",
|
||||
"b_craet1_summer.p3d",
|
||||
"b_betula2w_summer.p3d",
|
||||
"b_canina2s_summer.p3d"
|
||||
};
|
||||
Cinder[] = {
|
||||
"cinderblocks_f.p3d"
|
||||
};
|
||||
Wrecks[] = {
|
||||
"wall_fen1_5_pole.p3d",
|
||||
"wall_fen1_5_2.p3d",
|
||||
"wall_tin_4_2.p3d",
|
||||
"wall_fen1_5.p3d",
|
||||
"wall_indfnc_3.p3d",
|
||||
"wall_indfnc_9.p3d",
|
||||
"wall_indfnc_corner.p3d",
|
||||
"misc_concrete_high.p3d",
|
||||
"plot_vlnplech2.p3d",
|
||||
"misc_g_pipes.p3d",
|
||||
"wall_tincom_9.p3d",
|
||||
"wall_tin_4.p3d",
|
||||
"plot_vlnplech1.p3d",
|
||||
"wall_tincom_9_2.p3d",
|
||||
"wall_tincom_3.p3d",
|
||||
"wall_tincom_pole.p3d",
|
||||
"datsun01t.p3d",
|
||||
"datsun02t.p3d",
|
||||
"skodovka_wrecked.p3d",
|
||||
"lada_wrecked.p3d",
|
||||
"hiluxt.p3d",
|
||||
"uaz_wrecked.p3d",
|
||||
"ural_wrecked.p3d"
|
||||
};
|
||||
};
|
||||
|
@ -42,134 +42,6 @@ class Esseker {
|
||||
{ { 7676.77, 10152.7, 0 }, 100 }, //Igman Military Base
|
||||
{ { 10060.6, 9901.3, 0 }, 200 } //Borosh
|
||||
};
|
||||
Rocks[] = {
|
||||
"sharpstones_erosion.p3d",
|
||||
"sharprock_spike.p3d",
|
||||
"sharprock_wallh.p3d",
|
||||
"w_sharpstones_erosion.p3d",
|
||||
"bluntstone_02.p3d",
|
||||
"bluntstone_03.p3d",
|
||||
"sharpstone_02.p3d",
|
||||
"decal_rock_dark.p3d"
|
||||
};
|
||||
ATM[] = {
|
||||
"atm_02_f.p3d",
|
||||
"atm_01_f.p3d",
|
||||
"phonebooth_01_f.p3d",
|
||||
"phonebooth_02_f.p3d"
|
||||
};
|
||||
Water[] = {
|
||||
"rasman_pond.p3d",
|
||||
"misc_well.p3d",
|
||||
"misc_wellpump.p3d",
|
||||
"water_source_f.p3d",
|
||||
"kasna_new.p3d"
|
||||
};
|
||||
// main config
|
||||
TrashClasses[] = { "Trash", "TrashSmall", "TrashVehicle", "PumpkinPatch", "TrashFood" };
|
||||
|
||||
TrashSmall[] = {
|
||||
};
|
||||
TrashVehicle[] = {
|
||||
};
|
||||
PumpkinPatch[] = {
|
||||
"p_pumpkin_summer.p3d",
|
||||
"pumpkin.p3d"
|
||||
};
|
||||
TrashFood[] = {
|
||||
};
|
||||
Trash[] = {
|
||||
"tyres_f.p3d",
|
||||
"junkpile_f.p3d",
|
||||
"garbagewashingmachine_f.p3d",
|
||||
"garbagebags_f.p3d",
|
||||
"kontejner.p3d",
|
||||
"garbagepallet_f.p3d",
|
||||
"popelnice.p3d"
|
||||
};
|
||||
Trees[] = {
|
||||
"str osika.p3d",
|
||||
"cwr2_a2_t_sorbus2s.p3d",
|
||||
"ind_pec_03.p3d",
|
||||
"t_populusb2s_ep1.p3d",
|
||||
"t_populusf2s_ep1.p3d",
|
||||
"str lipa.p3d",
|
||||
"t_picea2s.p3d",
|
||||
"hrusen2.p3d",
|
||||
"cwr2_a2_t_fagus2w.p3d",
|
||||
"cwr2_a2_t_alnus2s.p3d",
|
||||
"dd_borovice02.p3d",
|
||||
"t_picea3f.p3d",
|
||||
"t_pinuss2f.p3d",
|
||||
"t_pinuss1s_f.p3d",
|
||||
"t_carpinus2s.p3d",
|
||||
"t_quercusir2s_f.p3d",
|
||||
"jablon.p3d",
|
||||
"mb_t_ulmus_large.p3d",
|
||||
"cwr_aleppopine.p3d",
|
||||
"t_fagus2f_summer.p3d",
|
||||
"t_fagus2f.p3d",
|
||||
"t_populus3s.p3d",
|
||||
"t_pinusn2s.p3d",
|
||||
"t_picea1s.p3d",
|
||||
"cwr2_a2_t_quercus3s.p3d",
|
||||
"str kastan.p3d",
|
||||
"t_populusn3s_f.p3d",
|
||||
"cwr2_a2_t_fraxinus2s.p3d",
|
||||
"t_poplar2f_dead_f.p3d",
|
||||
"misc_fallentree2.p3d",
|
||||
"t_oleae1s_f.p3d",
|
||||
"t_fraxinusav2s_f.p3d",
|
||||
"t_oleae2s_f.p3d",
|
||||
"t_prunuss2s_ep1.p3d"
|
||||
};
|
||||
Bushes[] = {
|
||||
"krovi_long.p3d",
|
||||
"cwr2_a2_b_canina2s.p3d",
|
||||
"b_salix2s.p3d",
|
||||
"cwr2_a2_b_craet1.p3d",
|
||||
"str krovisko vysoke.p3d",
|
||||
"krovi2.p3d",
|
||||
"ker s bobulema.p3d",
|
||||
"t_malus1s.p3d",
|
||||
"cwr2_a2_b_prunus.p3d",
|
||||
"b_ficusc1s_f.p3d",
|
||||
"hospital_side1_f.p3d",
|
||||
"b_craet1_summer.p3d",
|
||||
"b_neriumo2s_f.p3d",
|
||||
"b_neriumo2s_white_f.p3d",
|
||||
"cwr2_a2_b_sambucus.p3d"
|
||||
};
|
||||
Wrecks[] = {
|
||||
"wreck_ural_f.p3d",
|
||||
"rubble_metal_plates_04.p3d",
|
||||
"rubble_metal_plates_02.p3d",
|
||||
"wreck_car2_f.p3d",
|
||||
"rubble_metal_plates_01.p3d",
|
||||
"wreck_truck_dropside_f.p3d",
|
||||
"wreck_brdm2_f.p3d",
|
||||
"wreck_bmp2_f.p3d",
|
||||
"wreck_heli_attack_01_f.p3d",
|
||||
"bmp_break.p3d",
|
||||
"wreck_t72_hull_f.p3d",
|
||||
"wreck_t72_turret_f.p3d",
|
||||
"wreck_uaz_f.p3d",
|
||||
"wreck_hmmwv_f.p3d",
|
||||
"kamaz_bort.p3d",
|
||||
"wreck_van_f.p3d",
|
||||
"kamaz_awtobas.p3d",
|
||||
"wreck_offroad_f.p3d",
|
||||
"wreck_car3_f.p3d",
|
||||
"maz.p3d",
|
||||
"wreck_offroad2_f.p3d",
|
||||
"wreck_car_f.p3d",
|
||||
"wreck_skodovka_f.p3d",
|
||||
"wreck_cardismantled_f.p3d",
|
||||
"wreck_truck_f.p3d",
|
||||
"kamaz_pozarka.p3d",
|
||||
"zaporosez.p3d",
|
||||
"kamaz_tent.p3d",
|
||||
"uaz_wrecked.p3d",
|
||||
"ural_wrecked.p3d"
|
||||
};
|
||||
};
|
||||
|
@ -14,52 +14,6 @@
|
||||
*/
|
||||
class ProvingGrounds_PMC {
|
||||
blockedArea[] = {};
|
||||
Rocks[] = {
|
||||
"r_stone_01_pmc.p3d",
|
||||
"r_stone_02_pmc.p3d"
|
||||
};
|
||||
ATM[] = {
|
||||
};
|
||||
Water[] = {
|
||||
};
|
||||
// main config
|
||||
TrashClasses[] = { "Trash", "TrashSmall", "TrashVehicle", "PumpkinPatch", "TrashFood" };
|
||||
|
||||
TrashSmall[] = {
|
||||
};
|
||||
TrashVehicle[] = {
|
||||
};
|
||||
PumpkinPatch[] = {
|
||||
"p_pumpkin_summer.p3d",
|
||||
"pumpkin.p3d",
|
||||
};
|
||||
TrashFood[] = {
|
||||
};
|
||||
Trash[] = {
|
||||
"garb_misc_pmc.p3d",
|
||||
"garb_paleta_pmc.p3d",
|
||||
"garb_heap_pmc.p3d"
|
||||
};
|
||||
Trees[] = {
|
||||
"t_poplar2f_dead_pmc.p3d",
|
||||
"misc_torzotree_pmc.p3d",
|
||||
"misc_brokenspruce_pmc.p3d",
|
||||
"misc_stubleafs_pmc.p3d"
|
||||
};
|
||||
Bushes[] = {
|
||||
"b_hip2s_pmc.p3d",
|
||||
"b_elderberry2s_pmc.p3d"
|
||||
};
|
||||
Cinder[] = {
|
||||
"cinderblocks_f.p3d"
|
||||
};
|
||||
Wrecks[] = {
|
||||
"datsun01t.p3d",
|
||||
"datsun02t.p3d",
|
||||
"skodovka_wrecked.p3d",
|
||||
"lada_wrecked.p3d",
|
||||
"hiluxt.p3d",
|
||||
"uaz_wrecked.p3d",
|
||||
"ural_wrecked.p3d"
|
||||
};
|
||||
};
|
||||
|
@ -13,98 +13,7 @@
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_config/Configs/CfgEpochClient/Sara.hpp
|
||||
*/
|
||||
class Sara {
|
||||
Rocks[] = {
|
||||
"stone4.p3d",
|
||||
"stone3.p3d",
|
||||
"stone4_invert.p3d",
|
||||
"rocks_01.p3d",
|
||||
"stone4a.p3d",
|
||||
"stone3a.p3d",
|
||||
"rockn_02.p3d",
|
||||
"rockn_01.p3d"
|
||||
};
|
||||
ATM[] = {
|
||||
"mailboxsouth.p3d",
|
||||
"phone_box_south.p3d"
|
||||
};
|
||||
Water[] = {
|
||||
"pumpa.p3d"
|
||||
};
|
||||
blockedArea[] = {};
|
||||
// main config
|
||||
TrashClasses[] = { "Trash", "TrashSmall", "TrashVehicle", "PumpkinPatch", "TrashFood" };
|
||||
|
||||
TrashSmall[] = {
|
||||
};
|
||||
TrashVehicle[] = {
|
||||
};
|
||||
PumpkinPatch[] = {
|
||||
"p_pumpkin_summer.p3d",
|
||||
"pumpkin.p3d",
|
||||
};
|
||||
TrashFood[] = {
|
||||
};
|
||||
Trash[] = {
|
||||
"Land_GarbagePallet_F",
|
||||
"Land_GarbageBags_F",
|
||||
"drevena_bedna.p3d",
|
||||
"barels.p3d",
|
||||
"paletyc.p3d",
|
||||
"barel3.p3d",
|
||||
"odpadkovy_kos.p3d",
|
||||
"barel2.p3d",
|
||||
"barel1.p3d",
|
||||
"barel4.p3d",
|
||||
"kontejner.p3d",
|
||||
"dum_olez_istan1.p3d",
|
||||
"kontejner_sklo.p3d",
|
||||
"kontejner_plasty.p3d",
|
||||
"kontejner_papir.p3d",
|
||||
"popelnice.p3d",
|
||||
"hrob2.p3d"
|
||||
};
|
||||
Trees[] = {
|
||||
"str krovisko vysoke.p3d",
|
||||
"str_fikovnik.p3d",
|
||||
"str_fikovnik2.p3d",
|
||||
"str_fikovnik_ker.p3d",
|
||||
"palm_04.p3d",
|
||||
"str_pinie.p3d",
|
||||
"krovi2.p3d",
|
||||
"palm_02.p3d",
|
||||
"palm_03.p3d",
|
||||
"palm_01.p3d",
|
||||
"jablon.p3d",
|
||||
"str_briza_kriva.p3d",
|
||||
"dd_borovice.p3d",
|
||||
"dd_borovice02.p3d",
|
||||
"str habr.p3d",
|
||||
"smrk_siroky.p3d",
|
||||
"smrk_velky.p3d",
|
||||
"str briza.p3d"
|
||||
};
|
||||
Bushes[] = {
|
||||
"ker deravej.p3d",
|
||||
"ker buxus.p3d",
|
||||
"krovi4.p3d",
|
||||
"krovi_bigest.p3d",
|
||||
"krovi.p3d",
|
||||
"ker s bobulema.p3d",
|
||||
"str trnka.p3d",
|
||||
"str_liskac.p3d",
|
||||
"dd_bush02.p3d",
|
||||
"dd_bush01.p3d",
|
||||
"ker pichlavej.p3d",
|
||||
"krovi_long.p3d"
|
||||
};
|
||||
Cinder[] = {
|
||||
"cinderblocks_f.p3d"
|
||||
};
|
||||
Wrecks[] = {
|
||||
"budova5.p3d",
|
||||
"plot_vlnplech1.p3d",
|
||||
"datsun01t.p3d",
|
||||
"pletivo_dira.p3d",
|
||||
"plot_vlnplech2.p3d",
|
||||
"pletivo.p3d"
|
||||
};
|
||||
};
|
||||
|
@ -13,98 +13,7 @@
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_config/Configs/CfgEpochClient/Sara.hpp
|
||||
*/
|
||||
class SaraLite {
|
||||
Rocks[] = {
|
||||
"stone4.p3d",
|
||||
"stone3.p3d",
|
||||
"stone4_invert.p3d",
|
||||
"rocks_01.p3d",
|
||||
"stone4a.p3d",
|
||||
"stone3a.p3d",
|
||||
"rockn_02.p3d",
|
||||
"rockn_01.p3d"
|
||||
};
|
||||
ATM[] = {
|
||||
"mailboxsouth.p3d",
|
||||
"phone_box_south.p3d"
|
||||
};
|
||||
Water[] = {
|
||||
"pumpa.p3d"
|
||||
};
|
||||
blockedArea[] = {};
|
||||
// main config
|
||||
TrashClasses[] = { "Trash", "TrashSmall", "TrashVehicle", "PumpkinPatch", "TrashFood" };
|
||||
|
||||
TrashSmall[] = {
|
||||
};
|
||||
TrashVehicle[] = {
|
||||
};
|
||||
PumpkinPatch[] = {
|
||||
"p_pumpkin_summer.p3d",
|
||||
"pumpkin.p3d",
|
||||
};
|
||||
TrashFood[] = {
|
||||
};
|
||||
Trash[] = {
|
||||
"Land_GarbagePallet_F",
|
||||
"Land_GarbageBags_F",
|
||||
"drevena_bedna.p3d",
|
||||
"barels.p3d",
|
||||
"paletyc.p3d",
|
||||
"barel3.p3d",
|
||||
"odpadkovy_kos.p3d",
|
||||
"barel2.p3d",
|
||||
"barel1.p3d",
|
||||
"barel4.p3d",
|
||||
"kontejner.p3d",
|
||||
"dum_olez_istan1.p3d",
|
||||
"kontejner_sklo.p3d",
|
||||
"kontejner_plasty.p3d",
|
||||
"kontejner_papir.p3d",
|
||||
"popelnice.p3d",
|
||||
"hrob2.p3d"
|
||||
};
|
||||
Trees[] = {
|
||||
"str krovisko vysoke.p3d",
|
||||
"str_fikovnik.p3d",
|
||||
"str_fikovnik2.p3d",
|
||||
"str_fikovnik_ker.p3d",
|
||||
"palm_04.p3d",
|
||||
"str_pinie.p3d",
|
||||
"krovi2.p3d",
|
||||
"palm_02.p3d",
|
||||
"palm_03.p3d",
|
||||
"palm_01.p3d",
|
||||
"jablon.p3d",
|
||||
"str_briza_kriva.p3d",
|
||||
"dd_borovice.p3d",
|
||||
"dd_borovice02.p3d",
|
||||
"str habr.p3d",
|
||||
"smrk_siroky.p3d",
|
||||
"smrk_velky.p3d",
|
||||
"str briza.p3d"
|
||||
};
|
||||
Bushes[] = {
|
||||
"ker deravej.p3d",
|
||||
"ker buxus.p3d",
|
||||
"krovi4.p3d",
|
||||
"krovi_bigest.p3d",
|
||||
"krovi.p3d",
|
||||
"ker s bobulema.p3d",
|
||||
"str trnka.p3d",
|
||||
"str_liskac.p3d",
|
||||
"dd_bush02.p3d",
|
||||
"dd_bush01.p3d",
|
||||
"ker pichlavej.p3d",
|
||||
"krovi_long.p3d"
|
||||
};
|
||||
Cinder[] = {
|
||||
"cinderblocks_f.p3d"
|
||||
};
|
||||
Wrecks[] = {
|
||||
"budova5.p3d",
|
||||
"plot_vlnplech1.p3d",
|
||||
"datsun01t.p3d",
|
||||
"pletivo_dira.p3d",
|
||||
"plot_vlnplech2.p3d",
|
||||
"pletivo.p3d"
|
||||
};
|
||||
};
|
||||
|
@ -13,98 +13,7 @@
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_config/Configs/CfgEpochClient/Sara.hpp
|
||||
*/
|
||||
class Sara_dbe1 {
|
||||
Rocks[] = {
|
||||
"stone4.p3d",
|
||||
"stone3.p3d",
|
||||
"stone4_invert.p3d",
|
||||
"rocks_01.p3d",
|
||||
"stone4a.p3d",
|
||||
"stone3a.p3d",
|
||||
"rockn_02.p3d",
|
||||
"rockn_01.p3d"
|
||||
};
|
||||
ATM[] = {
|
||||
"mailboxsouth.p3d",
|
||||
"phone_box_south.p3d"
|
||||
};
|
||||
Water[] = {
|
||||
"pumpa.p3d"
|
||||
};
|
||||
blockedArea[] = {};
|
||||
// main config
|
||||
TrashClasses[] = { "Trash", "TrashSmall", "TrashVehicle", "PumpkinPatch", "TrashFood" };
|
||||
|
||||
TrashSmall[] = {
|
||||
};
|
||||
TrashVehicle[] = {
|
||||
};
|
||||
PumpkinPatch[] = {
|
||||
"p_pumpkin_summer.p3d",
|
||||
"pumpkin.p3d",
|
||||
};
|
||||
TrashFood[] = {
|
||||
};
|
||||
Trash[] = {
|
||||
"Land_GarbagePallet_F",
|
||||
"Land_GarbageBags_F",
|
||||
"drevena_bedna.p3d",
|
||||
"barels.p3d",
|
||||
"paletyc.p3d",
|
||||
"barel3.p3d",
|
||||
"odpadkovy_kos.p3d",
|
||||
"barel2.p3d",
|
||||
"barel1.p3d",
|
||||
"barel4.p3d",
|
||||
"kontejner.p3d",
|
||||
"dum_olez_istan1.p3d",
|
||||
"kontejner_sklo.p3d",
|
||||
"kontejner_plasty.p3d",
|
||||
"kontejner_papir.p3d",
|
||||
"popelnice.p3d",
|
||||
"hrob2.p3d"
|
||||
};
|
||||
Trees[] = {
|
||||
"str krovisko vysoke.p3d",
|
||||
"str_fikovnik.p3d",
|
||||
"str_fikovnik2.p3d",
|
||||
"str_fikovnik_ker.p3d",
|
||||
"palm_04.p3d",
|
||||
"str_pinie.p3d",
|
||||
"krovi2.p3d",
|
||||
"palm_02.p3d",
|
||||
"palm_03.p3d",
|
||||
"palm_01.p3d",
|
||||
"jablon.p3d",
|
||||
"str_briza_kriva.p3d",
|
||||
"dd_borovice.p3d",
|
||||
"dd_borovice02.p3d",
|
||||
"str habr.p3d",
|
||||
"smrk_siroky.p3d",
|
||||
"smrk_velky.p3d",
|
||||
"str briza.p3d"
|
||||
};
|
||||
Bushes[] = {
|
||||
"ker deravej.p3d",
|
||||
"ker buxus.p3d",
|
||||
"krovi4.p3d",
|
||||
"krovi_bigest.p3d",
|
||||
"krovi.p3d",
|
||||
"ker s bobulema.p3d",
|
||||
"str trnka.p3d",
|
||||
"str_liskac.p3d",
|
||||
"dd_bush02.p3d",
|
||||
"dd_bush01.p3d",
|
||||
"ker pichlavej.p3d",
|
||||
"krovi_long.p3d"
|
||||
};
|
||||
Cinder[] = {
|
||||
"cinderblocks_f.p3d"
|
||||
};
|
||||
Wrecks[] = {
|
||||
"budova5.p3d",
|
||||
"plot_vlnplech1.p3d",
|
||||
"datsun01t.p3d",
|
||||
"pletivo_dira.p3d",
|
||||
"plot_vlnplech2.p3d",
|
||||
"pletivo.p3d"
|
||||
};
|
||||
};
|
||||
|
@ -14,162 +14,6 @@
|
||||
*/
|
||||
class Stratis {
|
||||
blockedArea[] = {};
|
||||
Rocks[] = {
|
||||
"sharpstone_03_lc.p3d",
|
||||
"sharpstone_02_lc.p3d",
|
||||
"sharpstone_01_lc.p3d",
|
||||
"sharpstone_02.p3d",
|
||||
"sharpstone_03.p3d",
|
||||
"sharprock_monolith.p3d",
|
||||
"sharprock_apart.p3d",
|
||||
"sharpstones_erosion.p3d",
|
||||
"bluntstone_01_lc.p3d",
|
||||
"bluntstone_02_lc.p3d",
|
||||
"bluntstone_03_lc.p3d",
|
||||
"bluntstones_erosion.p3d",
|
||||
"bluntstone_01.p3d",
|
||||
"bluntstone_03.p3d",
|
||||
"sharprock_spike.p3d",
|
||||
"sharprock_wallh.p3d",
|
||||
"w_sharpstone_03.p3d",
|
||||
"w_sharpstone_02.p3d",
|
||||
"w_sharpstone_01.p3d",
|
||||
"bluntrock_apart.p3d",
|
||||
"bluntstone_02.p3d",
|
||||
"bluntrock_monolith.p3d",
|
||||
"bluntrock_wallh.p3d",
|
||||
"sharprock_wallv.p3d",
|
||||
"stonesharp_medium.p3d",
|
||||
"stone_medium_f.p3d",
|
||||
"stonesharp_big.p3d",
|
||||
"stonesharp_small.p3d",
|
||||
"small_stone_02_f.p3d",
|
||||
"stone_small_f.p3d",
|
||||
"stone_big_f.p3d",
|
||||
"bluntrock_spike.p3d"
|
||||
};
|
||||
ATM[] = {
|
||||
"atm_01_f.p3d",
|
||||
"phonebooth_01_f.p3d",
|
||||
"atm_02_f.p3d",
|
||||
"phonebooth_02_f.p3d"
|
||||
};
|
||||
Water[] = {
|
||||
"barrelwater_f.p3d",
|
||||
"water_source_f.p3d",
|
||||
"waterbarrel_f.p3d",
|
||||
"canisterplastic_f.p3d",
|
||||
"watertank_f.p3d"
|
||||
};
|
||||
// main config
|
||||
TrashClasses[] = { "Trash", "TrashSmall", "TrashVehicle", "PumpkinPatch", "TrashFood" };
|
||||
|
||||
TrashSmall[] = {
|
||||
};
|
||||
TrashVehicle[] = {
|
||||
};
|
||||
PumpkinPatch[] = {
|
||||
"p_pumpkin_summer.p3d",
|
||||
"pumpkin.p3d",
|
||||
};
|
||||
TrashFood[] = {
|
||||
"basket_f.p3d",
|
||||
"sacks_goods_f.p3d"
|
||||
|
||||
};
|
||||
Trash[] = {
|
||||
"sack_f.p3d",
|
||||
"garbagebags_f.p3d",
|
||||
"pallets_f.p3d",
|
||||
"junkpile_f.p3d",
|
||||
"garbagepallet_f.p3d",
|
||||
"garbagewashingmachine_f.p3d",
|
||||
"crateswooden_f.p3d",
|
||||
"cratesplastic_f.p3d",
|
||||
"garbagebin_01_f.p3d",
|
||||
"barrelsand_f.p3d",
|
||||
"garbagecontainer_closed_f.p3d",
|
||||
"cratesshabby_f.p3d",
|
||||
"bucket_f.p3d",
|
||||
"garbagebarrel_01_f.p3d",
|
||||
"tyres_f.p3d",
|
||||
"cargobox_v1_f.p3d",
|
||||
"metalbarrel_f.p3d",
|
||||
"sacks_heap_f.p3d",
|
||||
"woodenbox_f.p3d",
|
||||
"grave_v1_f.p3d",
|
||||
"grave_v2_f.p3d",
|
||||
"calvary_02_v2_f.p3d",
|
||||
"fishinggear_02_f.p3d",
|
||||
"fishinggear_01_f.p3d",
|
||||
"humanskull_f.p3d",
|
||||
"calvary_02_v1_f.p3d",
|
||||
"rack_f.p3d",
|
||||
"wreck_uaz_f.p3d",
|
||||
"humanskeleton_f.p3d",
|
||||
"shelvesmetal_f.p3d"
|
||||
};
|
||||
Trees[] = {
|
||||
"t_ficusb1s_f.p3d",
|
||||
"t_oleae1s_f.p3d",
|
||||
"t_ficusb2s_f.p3d",
|
||||
"t_broussonetiap1s_f.p3d",
|
||||
"t_pinuss2s_f.p3d",
|
||||
"t_pinuss2s_b_f.p3d",
|
||||
"t_pinuss1s_f.p3d",
|
||||
"t_oleae2s_f.p3d",
|
||||
"i_house_big_01_v2_f.p3d",
|
||||
"i_house_big_02_v1_f.p3d",
|
||||
"i_addon_02_v1_f.p3d",
|
||||
"t_fraxinusav2s_f.p3d",
|
||||
"t_pinusp3s_f.p3d",
|
||||
"t_poplar2f_dead_f.p3d",
|
||||
"t_populusn3s_f.p3d",
|
||||
"t_phoenixc1s_f.p3d"
|
||||
};
|
||||
Bushes[] = {
|
||||
"b_ficusc2d_f.p3d",
|
||||
"b_ficusc1s_f.p3d",
|
||||
"b_neriumo2d_f.p3d",
|
||||
"b_arundod2s_f.p3d",
|
||||
"b_arundod3s_f.p3d",
|
||||
"b_ficusc2s_f.p3d"
|
||||
};
|
||||
Cinder[] = {
|
||||
"cinderblocks_f.p3d"
|
||||
};
|
||||
Wrecks[] = {
|
||||
"wall_tin_4_2.p3d",
|
||||
"mil_wiredfence_f.p3d",
|
||||
"cages_f.p3d",
|
||||
"wreck_car_f.p3d",
|
||||
"pipes_small_f.p3d",
|
||||
"pipe_fence_4m_f.p3d",
|
||||
"spp_tower_f.p3d",
|
||||
"wreck_ural_f.p3d",
|
||||
"wreck_car3_f.p3d",
|
||||
"ironpipes_f.p3d",
|
||||
"pipes_large_f.p3d",
|
||||
"coil_f.p3d",
|
||||
"wreck_offroad_f.p3d",
|
||||
"wreck_offroad2_f.p3d",
|
||||
"crabcages_f.p3d",
|
||||
"metalbarrel_empty_f.p3d",
|
||||
"net_fenced_8m_f.p3d",
|
||||
"net_fence_8m_f.p3d",
|
||||
"wavepowerplantbroken_f.p3d",
|
||||
"wreck_truck_dropside_f.p3d",
|
||||
"wavepowerplant_f.p3d",
|
||||
"wreck_traw_f.p3d",
|
||||
"wreck_slammer_f.p3d",
|
||||
"maroula_f.p3d",
|
||||
"indfnc_9_f.p3d",
|
||||
"indfnc_3_f.p3d",
|
||||
"indfnc_3_d_f.p3d",
|
||||
"wreck_car2_f.p3d",
|
||||
"net_fence_4m_f.p3d",
|
||||
"wreck_truck_f.p3d",
|
||||
"wreck_hunter_f.p3d",
|
||||
"wreck_slammer_hull_f.p3d"
|
||||
};
|
||||
};
|
||||
|
@ -0,0 +1,545 @@
|
||||
class WorldInteractions {
|
||||
class Water {
|
||||
water = 1;
|
||||
};
|
||||
class barrelwater_f_p3d : Water {};
|
||||
class water_source_f_p3d : Water {};
|
||||
class waterbarrel_f_p3d : Water {};
|
||||
class canisterplastic_f_p3d : Water {};
|
||||
class watertank_f_p3d : Water {};
|
||||
class misc_well_p3d : Water {};
|
||||
class misc_wellpump_p3d : Water {};
|
||||
class kasna_new_p3d : Water {};
|
||||
class rasman_pond_p3d : Water {};
|
||||
class pumpa_p3d : Water {};
|
||||
class misc_well_c_ep1_p3d : Water {};
|
||||
class misc_well_l_ep1_p3d : Water {};
|
||||
class stand_water_ep1_p3d : Water {};
|
||||
class misc_concbox_ep1_p3d : Water {};
|
||||
|
||||
class BankTerminal {
|
||||
bankTerminal = 1;
|
||||
};
|
||||
class atm_01_f_p3d : BankTerminal {};
|
||||
class phonebooth_01_f_p3d : BankTerminal {};
|
||||
class atm_02_f_p3d : BankTerminal {};
|
||||
class phonebooth_02_f_p3d : BankTerminal {};
|
||||
class nastenka_p3d : BankTerminal {};
|
||||
class nastenka2_p3d : BankTerminal {};
|
||||
class nastenka3_p3d : BankTerminal {};
|
||||
class phone_box_south_p3d : BankTerminal {};
|
||||
class mailboxsouth_p3d : BankTerminal {};
|
||||
class Land_PhoneBooth_02_F : BankTerminal {};
|
||||
class Land_PhoneBooth_01_F : BankTerminal {};
|
||||
class Land_Atm_01_F : BankTerminal {};
|
||||
class Land_Atm_02_F : BankTerminal {};
|
||||
class Land_Laptop_device_F : BankTerminal {};
|
||||
|
||||
class Rocks {
|
||||
rock = 1;
|
||||
};
|
||||
class sharpstone_03_lc_p3d : Rocks {};
|
||||
class sharpstone_02_lc_p3d : Rocks {};
|
||||
class sharpstone_01_lc_p3d : Rocks {};
|
||||
class sharpstone_02_p3d : Rocks {};
|
||||
class sharpstone_03_p3d : Rocks {};
|
||||
class sharprock_monolith_p3d : Rocks {};
|
||||
class sharprock_apart_p3d : Rocks {};
|
||||
class sharpstones_erosion_p3d : Rocks {};
|
||||
class bluntstone_01_lc_p3d : Rocks {};
|
||||
class bluntstone_02_lc_p3d : Rocks {};
|
||||
class bluntstone_03_lc_p3d : Rocks {};
|
||||
class bluntstones_erosion_p3d : Rocks {};
|
||||
class bluntstone_01_p3d : Rocks {};
|
||||
class bluntstone_03_p3d : Rocks {};
|
||||
class sharprock_spike_p3d : Rocks {};
|
||||
class sharprock_wallh_p3d : Rocks {};
|
||||
class w_sharpstone_03_p3d : Rocks {};
|
||||
class w_sharpstone_02_p3d : Rocks {};
|
||||
class w_sharpstone_01_p3d : Rocks {};
|
||||
class bluntrock_apart_p3d : Rocks {};
|
||||
class bluntstone_02_p3d : Rocks {};
|
||||
class bluntrock_monolith_p3d : Rocks {};
|
||||
class bluntrock_wallh_p3d : Rocks {};
|
||||
class sharprock_wallv_p3d : Rocks {};
|
||||
class stonesharp_medium_p3d : Rocks {};
|
||||
class stone_medium_f_p3d : Rocks {};
|
||||
class stonesharp_big_p3d : Rocks {};
|
||||
class stonesharp_small_p3d : Rocks {};
|
||||
class small_stone_02_f_p3d : Rocks {};
|
||||
class stone_small_f_p3d : Rocks {};
|
||||
class stone_big_f_p3d : Rocks {};
|
||||
class bluntrock_spike_p3d : Rocks {};
|
||||
class r2_boulder1_p3d : Rocks {};
|
||||
class r2_boulder2_p3d : Rocks {};
|
||||
class r2_rock1_p3d : Rocks {};
|
||||
class r2_rocktower_p3d : Rocks {};
|
||||
class r2_rockwall_p3d : Rocks {};
|
||||
class r_rock_02_ep1_p3d : Rocks {};
|
||||
class brownrock2_p3d : Rocks {};
|
||||
class brownrock3_p3d : Rocks {};
|
||||
class desertrock_p3d : Rocks {};
|
||||
class desertrock2_p3d : Rocks {};
|
||||
class desertrock3_p3d : Rocks {};
|
||||
class r_stone_01_ep1_p3d : Rocks {};
|
||||
class brownrock_p3d : Rocks {};
|
||||
class rockn_02_p3d : Rocks {};
|
||||
class sharpstone_01_p3d : Rocks {};
|
||||
class r_rock_03_ep1_p3d : Rocks {};
|
||||
class rocks_02_p3d : Rocks {};
|
||||
class skala3_5_p3d : Rocks {};
|
||||
class skala3_4_p3d : Rocks {};
|
||||
class skala1_4_p3d : Rocks {};
|
||||
class bo_r2_boulder1_p3d : Rocks {};
|
||||
class bo_r2_boulder2_p3d : Rocks {};
|
||||
class bo_r2_rock1_p3d : Rocks {};
|
||||
class bo_r2_rocktower_p3d : Rocks {};
|
||||
class bo_r2_rockwall_p3d : Rocks {};
|
||||
class w_sharpstones_erosion_p3d : Rocks {};
|
||||
class decal_rock_dark_p3d : Rocks {};
|
||||
class r_stone_01_pmc_p3d : Rocks {};
|
||||
class r_stone_02_pmc_p3d : Rocks {};
|
||||
class stone4_p3d : Rocks {};
|
||||
class stone3_p3d : Rocks {};
|
||||
class stone4_invert_p3d : Rocks {};
|
||||
class rocks_01_p3d : Rocks {};
|
||||
class stone4a_p3d : Rocks {};
|
||||
class stone3a_p3d : Rocks {};
|
||||
class rockn_01_p3d : Rocks {};
|
||||
class r_tk_stone_01_ep1_p3d : Rocks {};
|
||||
class r_tk_stone_02_ep1_p3d : Rocks {};
|
||||
class r_tk_rock_03_ep1_p3d : Rocks {};
|
||||
class r_tk_boulder_03_ep1_p3d : Rocks {};
|
||||
class r_tk_rock_02_ep1_p3d : Rocks {};
|
||||
class r_tk_boulder_01_ep1_p3d : Rocks {};
|
||||
class r_tk_boulder_02_ep1_p3d : Rocks {};
|
||||
class r_tk_rock_01_ep1_p3d : Rocks {};
|
||||
|
||||
class PumpkinPatch {
|
||||
PumpkinPatch = 1;
|
||||
};
|
||||
class p_pumpkin_summer_p3d : PumpkinPatch {};
|
||||
class pumpkin_p3d : PumpkinPatch {};
|
||||
|
||||
class Trash {
|
||||
Trash = 1;
|
||||
};
|
||||
class sack_f_p3d : Trash {};
|
||||
class garbagebags_f_p3d : Trash {};
|
||||
class pallets_f_p3d : Trash {};
|
||||
class junkpile_f_p3d : Trash {};
|
||||
class garbagepallet_f_p3d : Trash {};
|
||||
class garbagewashingmachine_f_p3d : Trash {};
|
||||
class basket_f_p3d : Trash {};
|
||||
class sacks_goods_f_p3d : Trash {};
|
||||
class crateswooden_f_p3d : Trash {};
|
||||
class cratesplastic_f_p3d : Trash {};
|
||||
class garbagebin_01_f_p3d : Trash {};
|
||||
class barrelsand_f_p3d : Trash {};
|
||||
class garbagecontainer_closed_f_p3d : Trash {};
|
||||
class cratesshabby_f_p3d : Trash {};
|
||||
class bucket_f_p3d : Trash {};
|
||||
class garbagebarrel_01_f_p3d : Trash {};
|
||||
class tyres_f_p3d : Trash {};
|
||||
class cargobox_v1_f_p3d : Trash {};
|
||||
class metalbarrel_f_p3d : Trash {};
|
||||
class sacks_heap_f_p3d : Trash {};
|
||||
class woodenbox_f_p3d : Trash {};
|
||||
class grave_v1_f_p3d : Trash {};
|
||||
class grave_v2_f_p3d : Trash {};
|
||||
class calvary_02_v2_f_p3d : Trash {};
|
||||
class fishinggear_02_f_p3d : Trash {};
|
||||
class fishinggear_01_f_p3d : Trash {};
|
||||
class humanskull_f_p3d : Trash {};
|
||||
class calvary_02_v1_f_p3d : Trash {};
|
||||
class rack_f_p3d : Trash {};
|
||||
class wreck_uaz_f_p3d : Trash {};
|
||||
class humanskeleton_f_p3d : Trash {};
|
||||
class shelvesmetal_f_p3d : Trash {};
|
||||
class popelnice_p3d : Trash {};
|
||||
class garbage_misc_p3d : Trash {};
|
||||
class paletyc_p3d : Trash {};
|
||||
class junkpile_p3d : Trash {};
|
||||
class kontejner_p3d : Trash {};
|
||||
class misc_chickencoop_p3d : Trash {};
|
||||
class misc_boogieman_p3d : Trash {};
|
||||
class misc_hutch_p3d : Trash {};
|
||||
class garbage_paleta_p3d : Trash {};
|
||||
class misc_cargo1a_p3d : Trash {};
|
||||
class misc_cargo2a_p3d : Trash {};
|
||||
class misc_greenhouse_p3d : Trash {};
|
||||
class zastavka_stojan_p3d : Trash {};
|
||||
class podesta_s10_p3d : Trash {};
|
||||
class kontejner_sklo_p3d : Trash {};
|
||||
class paletyd_p3d : Trash {};
|
||||
class popelnice_2_p3d : Trash {};
|
||||
class garbage_plastic_p3d : Trash {};
|
||||
class garbage_metal_p3d : Trash {};
|
||||
class jeept_tanker_p3d : Trash {};
|
||||
class kontejner_plasty_p3d : Trash {};
|
||||
class odpadkovy_kos_p3d : Trash {};
|
||||
class socha_p3d : Trash {};
|
||||
class kontejner_papir_p3d : Trash {};
|
||||
class metalcrate_p3d : Trash {};
|
||||
class hrob2_p3d : Trash {};
|
||||
class barel5_p3d : Trash {};
|
||||
class barel4_p3d : Trash {};
|
||||
class tires_ep1_p3d : Trash {};
|
||||
class barel2_p3d : Trash {};
|
||||
class barels_p3d : Trash {};
|
||||
class barel1_p3d : Trash {};
|
||||
class barels2_p3d : Trash {};
|
||||
class barels3_p3d : Trash {};
|
||||
class bricks_v2_f_p3d : Trash {};
|
||||
class Land_GarbagePallet_F : Trash {};
|
||||
class Land_GarbageBags_F : Trash {};
|
||||
class garb_misc_pmc_p3d : Trash {};
|
||||
class garb_paleta_pmc_p3d : Trash {};
|
||||
class garb_heap_pmc_p3d : Trash {};
|
||||
class drevena_bedna_p3d : Trash {};
|
||||
class barel3_p3d : Trash {};
|
||||
class dum_olez_istan1_p3d : Trash {};
|
||||
class misc_rubble_ep1_p3d : Trash {};
|
||||
class bags_stack_ep1_p3d : Trash {};
|
||||
class crates_ep1_p3d : Trash {};
|
||||
class cages_ep1_p3d : Trash {};
|
||||
class crates_stack_ep1_p3d : Trash {};
|
||||
class transport_cart_ep1_p3d : Trash {};
|
||||
class stand_small_ep1_p3d : Trash {};
|
||||
class stand_meat_ep1_p3d : Trash {};
|
||||
class bags_ep1_p3d : Trash {};
|
||||
class misc_garb_heap_ep1_p3d : Trash {};
|
||||
|
||||
class TrashSmall {
|
||||
TrashSmall = 1;
|
||||
};
|
||||
class misc_postbox_p3d : TrashSmall {};
|
||||
|
||||
class Trees {
|
||||
tree = 1;
|
||||
};
|
||||
class t_ficusb1s_f_p3d: Trees {};
|
||||
class t_oleae1s_f_p3d: Trees {};
|
||||
class t_ficusb2s_f_p3d: Trees {};
|
||||
class t_broussonetiap1s_f_p3d: Trees {};
|
||||
class t_pinuss2s_f_p3d: Trees {};
|
||||
class t_pinuss2s_b_f_p3d: Trees {};
|
||||
class t_pinuss1s_f_p3d: Trees {};
|
||||
class t_oleae2s_f_p3d: Trees {};
|
||||
class t_fraxinusav2s_f_p3d: Trees {};
|
||||
class t_pinusp3s_f_p3d: Trees {};
|
||||
class t_poplar2f_dead_f_p3d: Trees {};
|
||||
class t_populusn3s_f_p3d: Trees {};
|
||||
class t_phoenixc1s_f_p3d: Trees {};
|
||||
class t_populus3s_p3d : Trees {};
|
||||
class t_fagus2w_p3d : Trees {};
|
||||
class t_betula2s_p3d : Trees {};
|
||||
class t_fagus2s_p3d : Trees {};
|
||||
class t_fagus2f_p3d : Trees {};
|
||||
class t_sorbus2s_p3d : Trees {};
|
||||
class t_fraxinus2w_p3d : Trees {};
|
||||
class t_salix2s_p3d : Trees {};
|
||||
class t_malus1s_p3d : Trees {};
|
||||
class t_betula1f_p3d : Trees {};
|
||||
class t_pinusn2s_p3d : Trees {};
|
||||
class t_picea2s_p3d : Trees {};
|
||||
class t_larix3s_p3d : Trees {};
|
||||
class t_picea3f_p3d : Trees {};
|
||||
class t_picea1s_p3d : Trees {};
|
||||
class misc_fallentree2_p3d : Trees {};
|
||||
class misc_stub2_p3d : Trees {};
|
||||
class t_fraxinus2s_p3d : Trees {};
|
||||
class t_quercus2f_p3d : Trees {};
|
||||
class misc_trunk_water_p3d : Trees {};
|
||||
class misc_trunk_torzo_p3d : Trees {};
|
||||
class t_alnus2s_p3d : Trees {};
|
||||
class misc_fallentree1_p3d : Trees {};
|
||||
class t_betula2f_p3d : Trees {};
|
||||
class t_pinusn1s_p3d : Trees {};
|
||||
class t_pinuss2f_p3d : Trees {};
|
||||
class t_quercus3s_p3d : Trees {};
|
||||
class t_carpinus2s_p3d : Trees {};
|
||||
class misc_fallenspruce_p3d : Trees {};
|
||||
class t_stub_picea_p3d : Trees {};
|
||||
class misc_stub1_p3d : Trees {};
|
||||
class t_acer2s_p3d : Trees {};
|
||||
class t_betula2w_p3d : Trees {};
|
||||
class t_pyrus2s_p3d : Trees {};
|
||||
class t_pinuss3s_ep1_p3d : Trees {};
|
||||
class t_pinuse2s_ep1_p3d : Trees {};
|
||||
class t_populusf2s_ep1_p3d : Trees {};
|
||||
class str_topol_p3d : Trees {};
|
||||
class les_singlestrom_b_p3d : Trees {};
|
||||
class banana_3_p3d : Trees {};
|
||||
class jablon_p3d : Trees {};
|
||||
class str_pinie_p3d : Trees {};
|
||||
class t_ficusb2s_ep1_p3d : Trees {};
|
||||
class palm_01_p3d : Trees {};
|
||||
class vysilac_budova_p3d : Trees {};
|
||||
class palm_10_p3d : Trees {};
|
||||
class palm_03_p3d : Trees {};
|
||||
class palm_04_p3d : Trees {};
|
||||
class t_pistacial2s_ep1_p3d : Trees {};
|
||||
class panelak_p3d : Trees {};
|
||||
class str_kastan_p3d : Trees {};
|
||||
class a_hospital_p3d : Trees {};
|
||||
class i_barracks_v1_f_p3d : Trees {};
|
||||
class dum_istan3_hromada_p3d : Trees {};
|
||||
class dum_istan3_hromada2_p3d : Trees {};
|
||||
class dum_istan4_big_inverse_p3d : Trees {};
|
||||
class panelak2_p3d : Trees {};
|
||||
class podesta_1_mid_p3d : Trees {};
|
||||
class podesta_1_cornl_p3d : Trees {};
|
||||
class t_prunuss2s_ep1_p3d : Trees {};
|
||||
class dum_istan2_02_p3d : Trees {};
|
||||
class dum_istan4_inverse_p3d : Trees {};
|
||||
class podesta_1_stairs2_p3d : Trees {};
|
||||
class podesta_1_mid_cornl_p3d : Trees {};
|
||||
class hrusen2_p3d : Trees {};
|
||||
class zed_kamenna_p3d : Trees {};
|
||||
class str_dub_p3d : Trees {};
|
||||
class str_dub_jiny_p3d : Trees {};
|
||||
class smrk_siroky_p3d : Trees {};
|
||||
class smrk_maly_p3d : Trees {};
|
||||
class les_singlestrom_p3d : Trees {};
|
||||
class palm_02_p3d : Trees {};
|
||||
class brg_banana_3_p3d : Trees {};
|
||||
class banana_2_p3d : Trees {};
|
||||
class oliva_p3d : Trees {};
|
||||
class brg_umbrella_acacia02b_p3d : Trees {};
|
||||
class brg_umbrella_acacia01b_p3d : Trees {};
|
||||
class brg_umbrella_acacia04b_p3d : Trees {};
|
||||
class brg_umbrella_acacia03b_p3d : Trees {};
|
||||
class str_buk_p3d : Trees {};
|
||||
class les_dub_p3d : Trees {};
|
||||
class b_pinusm1s_ep1_p3d : Trees {};
|
||||
class krovi_long_p3d : Trees {};
|
||||
class str_lipa_p3d : Trees {};
|
||||
class str_javor_p3d : Trees {};
|
||||
class str_trnka_p3d : Trees {};
|
||||
class t_poplar2f_dead_pmc_p3d : Trees {};
|
||||
class t_quercusir2s_f_p3d : Trees {};
|
||||
class dd_bush01_p3d : Trees {};
|
||||
class t_fagus2f_summer_p3d : Trees {};
|
||||
class akat02s_p3d : Trees {};
|
||||
class t_amygdalusc2s_ep1_p3d : Trees {};
|
||||
class str_osika_p3d : Trees {};
|
||||
class palm_09_p3d : Trees {};
|
||||
class dd_borovice_p3d : Trees {};
|
||||
class dd_borovice02_p3d : Trees {};
|
||||
class str_topol2_p3d : Trees {};
|
||||
class brg_umbrella_acacia_shrub02_p3d : Trees {};
|
||||
class t_populusb2s_ep1_p3d : Trees {};
|
||||
class les_dub_jiny_p3d : Trees {};
|
||||
class les_buk_p3d : Trees {};
|
||||
class str_fikovnik_p3d : Trees {};
|
||||
class str_briza_rovna_p3d : Trees {};
|
||||
class str_jerabina_p3d : Trees {};
|
||||
class str_habr_p3d : Trees {};
|
||||
class les_fikovnik2_p3d : Trees {};
|
||||
class bo_t_populus3s_p3d : Trees {};
|
||||
class bo_t_fagus2w_p3d : Trees {};
|
||||
class bo_t_betula2s_p3d : Trees {};
|
||||
class bo_t_fagus2s_p3d : Trees {};
|
||||
class bo_t_fagus2f_p3d : Trees {};
|
||||
class bo_t_sorbus2s_p3d : Trees {};
|
||||
class bo_t_fraxinus2w_p3d : Trees {};
|
||||
class bo_t_salix2s_p3d : Trees {};
|
||||
class bo_t_malus1s_p3d : Trees {};
|
||||
class bo_t_betula1f_p3d : Trees {};
|
||||
class bo_t_pinusn2s_p3d : Trees {};
|
||||
class bo_t_picea2s_p3d : Trees {};
|
||||
class bo_t_larix3s_p3d : Trees {};
|
||||
class bo_t_picea3f_p3d : Trees {};
|
||||
class bo_t_picea1s_p3d : Trees {};
|
||||
class bo_misc_fallentree2_p3d : Trees {};
|
||||
class bo_misc_stub2_p3d : Trees {};
|
||||
class bo_t_fraxinus2s_p3d : Trees {};
|
||||
class bo_t_quercus2f_p3d : Trees {};
|
||||
class bo_misc_trunk_water_p3d : Trees {};
|
||||
class bo_misc_trunk_torzo_p3d : Trees {};
|
||||
class bo_t_alnus2s_p3d : Trees {};
|
||||
class bo_misc_fallentree1_p3d : Trees {};
|
||||
class bo_t_betula2f_p3d : Trees {};
|
||||
class bo_t_pinusn1s_p3d : Trees {};
|
||||
class bo_t_pinuss2f_p3d : Trees {};
|
||||
class bo_t_quercus3s_p3d : Trees {};
|
||||
class bo_t_carpinus2s_p3d : Trees {};
|
||||
class bo_t_stub_picea_p3d : Trees {};
|
||||
class bo_t_acer2s_p3d : Trees {};
|
||||
class bo_t_betula2w_p3d : Trees {};
|
||||
class bo_t_pyrus2s_p3d : Trees {};
|
||||
class bo_b_corylus_p3d : Trees {};
|
||||
class t_fagus2s_summer_p3d : Trees {};
|
||||
class t_betula2s_summer_p3d : Trees {};
|
||||
class cwr2_a2_t_sorbus2s_p3d : Trees {};
|
||||
class cwr2_a2_t_fagus2w_p3d : Trees {};
|
||||
class cwr2_a2_t_alnus2s_p3d : Trees {};
|
||||
class mb_t_ulmus_large_p3d : Trees {};
|
||||
class cwr_aleppopine_p3d : Trees {};
|
||||
class cwr2_a2_t_quercus3s_p3d : Trees {};
|
||||
class cwr2_a2_t_fraxinus2s_p3d : Trees {};
|
||||
class misc_torzotree_pmc_p3d : Trees {};
|
||||
class misc_brokenspruce_pmc_p3d : Trees {};
|
||||
class misc_stubleafs_pmc_p3d : Trees {};
|
||||
class str_fikovnik2_p3d : Trees {};
|
||||
class str_fikovnik_ker_p3d : Trees {};
|
||||
class str_briza_kriva_p3d : Trees {};
|
||||
class smrk_velky_p3d : Trees {};
|
||||
class str_briza_p3d : Trees {};
|
||||
class misc_trunk_torzo_ep1_p3d : Trees {};
|
||||
class t_juniperusc2s_ep1_p3d : Trees {};
|
||||
class misc_trunk_water_ep1_p3d : Trees {};
|
||||
|
||||
class Bushes {
|
||||
bush = 1;
|
||||
};
|
||||
class b_ficusc2d_f_p3d: Bushes {};
|
||||
class b_ficusc1s_f_p3d: Bushes {};
|
||||
class b_neriumo2d_f_p3d: Bushes {};
|
||||
class b_arundod2s_f_p3d: Bushes {};
|
||||
class b_arundod3s_f_p3d: Bushes {};
|
||||
class b_ficusc2s_f_p3d: Bushes {};
|
||||
class b_craet1_p3d : Bushes {};
|
||||
class b_craet2_p3d : Bushes {};
|
||||
class b_corylus_p3d : Bushes {};
|
||||
class b_corylus2s_p3d : Bushes {};
|
||||
class b_betulahumilis_p3d : Bushes {};
|
||||
class b_sambucus_p3d : Bushes {};
|
||||
class b_salix2s_p3d : Bushes {};
|
||||
class b_canina2s_p3d : Bushes {};
|
||||
class b_pmugo_p3d : Bushes {};
|
||||
class b_prunus_p3d : Bushes {};
|
||||
class krovi_bigest_p3d : Bushes {};
|
||||
class krovi4_p3d : Bushes {};
|
||||
class krovi_p3d : Bushes {};
|
||||
class ker_s_bobulema_p3d : Bushes {};
|
||||
class ker_pichlavej_p3d : Bushes {};
|
||||
class pinus_mugo_lowpoly_p3d : Bushes {};
|
||||
class b_amygdalusn1s_ep1_p3d : Bushes {};
|
||||
class banana_4_p3d : Bushes {};
|
||||
class banana_1_p3d : Bushes {};
|
||||
class palm_08small_p3d : Bushes {};
|
||||
class ker_deravej_p3d : Bushes {};
|
||||
class brg_umbrella_acacia_shrub2_p3d : Bushes {};
|
||||
class krovi2_p3d : Bushes {};
|
||||
class brg_banana_4_p3d : Bushes {};
|
||||
class bo_b_craet1_p3d : Bushes {};
|
||||
class bo_b_craet2_p3d : Bushes {};
|
||||
class bo_b_corylus_p3d : Bushes {};
|
||||
class bo_b_corylus2s_p3d : Bushes {};
|
||||
class bo_b_betulahumilis_p3d : Bushes {};
|
||||
class bo_b_sambucus_p3d : Bushes {};
|
||||
class salix2s_p3d : Bushes {};
|
||||
class bo_b_canina2s_p3d : Bushes {};
|
||||
class bo_b_pmugo_p3d : Bushes {};
|
||||
class bo_b_prunus_p3d : Bushes {};
|
||||
class b_corylus2s_summer_p3d : Bushes {};
|
||||
class b_craet1_summer_p3d : Bushes {};
|
||||
class b_betula2w_summer_p3d : Bushes {};
|
||||
class b_canina2s_summer_p3d : Bushes {};
|
||||
class cwr2_a2_b_canina2s_p3d : Bushes {};
|
||||
class cwr2_a2_b_craet1_p3d : Bushes {};
|
||||
class str_krovisko_vysoke_p3d : Bushes {};
|
||||
class cwr2_a2_b_prunus_p3d : Bushes {};
|
||||
class b_neriumo2s_f_p3d : Bushes {};
|
||||
class b_neriumo2s_white_f_p3d : Bushes {};
|
||||
class cwr2_a2_b_sambucus_p3d : Bushes {};
|
||||
class b_hip2s_pmc_p3d : Bushes {};
|
||||
class b_elderberry2s_pmc_p3d : Bushes {};
|
||||
class ker_buxus_p3d : Bushes {};
|
||||
class str_liskac_p3d : Bushes {};
|
||||
class dd_bush02_p3d : Bushes {};
|
||||
class b_pistacial1s_ep1_p3d : Bushes {};
|
||||
|
||||
class Cinder {
|
||||
cinder = 1;
|
||||
};
|
||||
class cinderblocks_f_p3d : Cinder {};
|
||||
|
||||
class Wrecks {
|
||||
wreck = 1;
|
||||
};
|
||||
class wall_tin_4_2_p3d: Wrecks {};
|
||||
class mil_wiredfence_f_p3d: Wrecks {};
|
||||
class cages_f_p3d: Wrecks {};
|
||||
class wreck_car_f_p3d: Wrecks {};
|
||||
class pipes_small_f_p3d: Wrecks {};
|
||||
class pipe_fence_4m_f_p3d: Wrecks {};
|
||||
class spp_tower_f_p3d: Wrecks {};
|
||||
class wreck_ural_f_p3d: Wrecks {};
|
||||
class wreck_car3_f_p3d: Wrecks {};
|
||||
class ironpipes_f_p3d: Wrecks {};
|
||||
class pipes_large_f_p3d: Wrecks {};
|
||||
class coil_f_p3d: Wrecks {};
|
||||
class wreck_offroad_f_p3d: Wrecks {};
|
||||
class wreck_offroad2_f_p3d: Wrecks {};
|
||||
class crabcages_f_p3d: Wrecks {};
|
||||
class metalbarrel_empty_f_p3d: Wrecks {};
|
||||
class net_fenced_8m_f_p3d: Wrecks {};
|
||||
class net_fence_8m_f_p3d: Wrecks {};
|
||||
class wavepowerplantbroken_f_p3d: Wrecks {};
|
||||
class wreck_truck_dropside_f_p3d: Wrecks {};
|
||||
class wavepowerplant_f_p3d: Wrecks {};
|
||||
class wreck_traw_f_p3d: Wrecks {};
|
||||
class wreck_slammer_f_p3d: Wrecks {};
|
||||
class maroula_f_p3d: Wrecks {};
|
||||
class indfnc_9_f_p3d: Wrecks {};
|
||||
class indfnc_3_f_p3d: Wrecks {};
|
||||
class indfnc_3_d_f_p3d: Wrecks {};
|
||||
class wreck_car2_f_p3d: Wrecks {};
|
||||
class net_fence_4m_f_p3d: Wrecks {};
|
||||
class wreck_truck_f_p3d: Wrecks {};
|
||||
class wreck_hunter_f_p3d: Wrecks {};
|
||||
class wreck_slammer_hull_f_p3d: Wrecks {};
|
||||
class wall_fen1_5_pole_p3d : Wrecks {};
|
||||
class wall_fen1_5_2_p3d : Wrecks {};
|
||||
class wall_fen1_5_p3d : Wrecks {};
|
||||
class wall_indfnc_3_p3d : Wrecks {};
|
||||
class wall_indfnc_9_p3d : Wrecks {};
|
||||
class wall_indfnc_corner_p3d : Wrecks {};
|
||||
class misc_concrete_high_p3d : Wrecks {};
|
||||
class plot_vlnplech2_p3d : Wrecks {};
|
||||
class misc_g_pipes_p3d : Wrecks {};
|
||||
class wall_tincom_9_p3d : Wrecks {};
|
||||
class wall_tin_4_p3d : Wrecks {};
|
||||
class plot_vlnplech1_p3d : Wrecks {};
|
||||
class wall_tincom_9_2_p3d : Wrecks {};
|
||||
class wall_tincom_3_p3d : Wrecks {};
|
||||
class wall_tincom_pole_p3d : Wrecks {};
|
||||
class datsun01t_p3d : Wrecks {};
|
||||
class datsun02t_p3d : Wrecks {};
|
||||
class skodovka_wrecked_p3d : Wrecks {};
|
||||
class lada_wrecked_p3d : Wrecks {};
|
||||
class hiluxt_p3d : Wrecks {};
|
||||
class uaz_wrecked_p3d : Wrecks {};
|
||||
class ural_wrecked_p3d : Wrecks {};
|
||||
class rubble_metal_plates_04_p3d : Wrecks {};
|
||||
class rubble_metal_plates_02_p3d : Wrecks {};
|
||||
class rubble_metal_plates_01_p3d : Wrecks {};
|
||||
class wreck_brdm2_f_p3d : Wrecks {};
|
||||
class wreck_bmp2_f_p3d : Wrecks {};
|
||||
class wreck_heli_attack_01_f_p3d : Wrecks {};
|
||||
class bmp_break_p3d : Wrecks {};
|
||||
class wreck_t72_hull_f_p3d : Wrecks {};
|
||||
class wreck_t72_turret_f_p3d : Wrecks {};
|
||||
class wreck_hmmwv_f_p3d : Wrecks {};
|
||||
class kamaz_bort_p3d : Wrecks {};
|
||||
class wreck_van_f_p3d : Wrecks {};
|
||||
class kamaz_awtobas_p3d : Wrecks {};
|
||||
class maz_p3d : Wrecks {};
|
||||
class wreck_skodovka_f_p3d : Wrecks {};
|
||||
class wreck_cardismantled_f_p3d : Wrecks {};
|
||||
class kamaz_pozarka_p3d : Wrecks {};
|
||||
class zaporosez_p3d : Wrecks {};
|
||||
class kamaz_tent_p3d : Wrecks {};
|
||||
class budova5_p3d : Wrecks {};
|
||||
class pletivo_dira_p3d : Wrecks {};
|
||||
class plot_vlnplech2_p3d : Wrecks {};
|
||||
class pletivo_p3d : Wrecks {};
|
||||
class wall_indfnc_pole_p3d : Wrecks {};
|
||||
class wall_indfnc_3_d_p3d : Wrecks {};
|
||||
class t72_wrecked_p3d : Wrecks {};
|
||||
class t72_wrecked_turret_p3d : Wrecks {};
|
||||
|
||||
};
|
@ -14,95 +14,6 @@
|
||||
*/
|
||||
class Zargabad {
|
||||
blockedArea[] = {};
|
||||
Rocks[] = {
|
||||
"r_tk_stone_01_ep1.p3d",
|
||||
"r_tk_stone_02_ep1.p3d",
|
||||
"r_tk_rock_03_ep1.p3d",
|
||||
"r_tk_boulder_03_ep1.p3d",
|
||||
"r_tk_rock_02_ep1.p3d",
|
||||
"r_tk_boulder_01_ep1.p3d",
|
||||
"r_tk_boulder_02_ep1.p3d",
|
||||
"r_tk_rock_01_ep1.p3d"
|
||||
};
|
||||
ATM[] = {
|
||||
};
|
||||
Water[] = {
|
||||
"misc_well_c_ep1.p3d",
|
||||
"misc_well_l_ep1.p3d",
|
||||
"stand_water_ep1.p3d",
|
||||
"misc_concbox_ep1.p3d"
|
||||
};
|
||||
// main config
|
||||
TrashClasses[] = { "Trash", "TrashSmall", "TrashVehicle", "PumpkinPatch", "TrashFood" };
|
||||
|
||||
TrashSmall[] = {
|
||||
};
|
||||
TrashVehicle[] = {
|
||||
};
|
||||
PumpkinPatch[] = {
|
||||
"p_pumpkin_summer.p3d",
|
||||
"pumpkin.p3d",
|
||||
};
|
||||
TrashFood[] = {
|
||||
};
|
||||
Trash[] = {
|
||||
"misc_rubble_ep1.p3d",
|
||||
"bags_stack_ep1.p3d",
|
||||
"kiosk_ep1.p3d",
|
||||
"tires_ep1.p3d",
|
||||
"garbage_misc.p3d",
|
||||
"garbage_paleta.p3d",
|
||||
"paletyc.p3d",
|
||||
"crates_ep1.p3d",
|
||||
"cages_ep1.p3d",
|
||||
"junkpile.p3d",
|
||||
"crates_stack_ep1.p3d",
|
||||
"transport_cart_ep1.p3d",
|
||||
"stand_small_ep1.p3d",
|
||||
"stand_meat_ep1.p3d",
|
||||
"bags_ep1.p3d",
|
||||
"misc_garb_heap_ep1.p3d",
|
||||
"house_k_1_ruins_ep1.p3d"
|
||||
};
|
||||
Trees[] = {
|
||||
"t_populusf2s_ep1.p3d",
|
||||
"t_pistacial2s_ep1.p3d",
|
||||
"misc_trunk_torzo_ep1.p3d",
|
||||
"t_populusb2s_ep1.p3d",
|
||||
"t_amygdalusc2s_ep1.p3d",
|
||||
"t_pinuse2s_ep1.p3d",
|
||||
"t_ficusb2s_ep1.p3d",
|
||||
"t_juniperusc2s_ep1.p3d",
|
||||
"t_pinuss3s_ep1.p3d",
|
||||
"misc_trunk_water_ep1.p3d",
|
||||
"t_prunuss2s_ep1.p3d"
|
||||
};
|
||||
Bushes[] = {
|
||||
"b_amygdalusn1s_ep1.p3d",
|
||||
"b_pistacial1s_ep1.p3d",
|
||||
"b_pinusm1s_ep1.p3d"
|
||||
};
|
||||
Cinder[] = {
|
||||
"cinderblocks_f.p3d"
|
||||
};
|
||||
Wrecks[] = {
|
||||
"wall_indfnc_9.p3d",
|
||||
"wall_indfnc_pole.p3d",
|
||||
"wall_tincom_9.p3d",
|
||||
"wall_tincom_pole.p3d",
|
||||
"ural_wrecked.p3d",
|
||||
"uaz_wrecked.p3d",
|
||||
"datsun02t.p3d",
|
||||
"hiluxt.p3d",
|
||||
"datsun01t.p3d",
|
||||
"wall_tin_4.p3d",
|
||||
"wall_indfnc_3_d.p3d",
|
||||
"wall_indfnc_3.p3d",
|
||||
"wall_indfnc_3_hole.p3d",
|
||||
"skodovka_wrecked.p3d",
|
||||
"lada_wrecked.p3d",
|
||||
"misc_concrete_high.p3d",
|
||||
"t72_wrecked.p3d",
|
||||
"t72_wrecked_turret.p3d"
|
||||
};
|
||||
};
|
||||
|
@ -34,205 +34,6 @@ class australia {
|
||||
{ { 31205.9, 9721.02, 0 }, 510 }, //South Melbourne
|
||||
{ { 35364.5, 8453.59, 0 }, 200 } //Eden
|
||||
};
|
||||
Rocks[] = {
|
||||
"r_rock_02_ep1.p3d",
|
||||
"brownrock2.p3d",
|
||||
"brownrock3.p3d",
|
||||
"sharpstone_03_lc.p3d",
|
||||
"desertrock.p3d",
|
||||
"desertrock2.p3d",
|
||||
"desertrock3.p3d",
|
||||
"r_stone_01_ep1.p3d",
|
||||
"brownrock.p3d",
|
||||
"rockn_02.p3d",
|
||||
"sharprock_wallh.p3d",
|
||||
"sharpstone_02.p3d",
|
||||
"sharprock_spike.p3d",
|
||||
"sharpstone_01.p3d",
|
||||
"sharprock_apart.p3d",
|
||||
"r_rock_03_ep1.p3d",
|
||||
"rocks_02.p3d",
|
||||
"sharprock_monolith.p3d",
|
||||
"skala3_5.p3d",
|
||||
"skala3_4.p3d",
|
||||
"skala1_4.p3d"
|
||||
};
|
||||
ATM[] = {
|
||||
"phone_box_south.p3d"
|
||||
};
|
||||
Water[] = {
|
||||
};
|
||||
// main config
|
||||
TrashClasses[] = { "Trash", "TrashSmall", "TrashVehicle", "PumpkinPatch", "TrashFood" };
|
||||
|
||||
TrashSmall[] = {
|
||||
};
|
||||
TrashVehicle[] = {
|
||||
};
|
||||
PumpkinPatch[] = {
|
||||
"p_pumpkin_summer.p3d",
|
||||
"pumpkin.p3d",
|
||||
};
|
||||
TrashFood[] = {
|
||||
};
|
||||
Trash[] = {
|
||||
"Land_GarbagePallet_F",
|
||||
"Land_GarbageBags_F",
|
||||
"podesta_s10.p3d",
|
||||
"kontejner_sklo.p3d",
|
||||
"popelnice.p3d",
|
||||
"paletyd.p3d",
|
||||
"paletyc.p3d",
|
||||
"garbage_misc.p3d",
|
||||
"popelnice_2.p3d",
|
||||
"garbage_plastic.p3d",
|
||||
"garbage_metal.p3d",
|
||||
"jeept_tanker.p3d",
|
||||
"kontejner_plasty.p3d",
|
||||
"odpadkovy_kos.p3d",
|
||||
"socha.p3d",
|
||||
"misc_greenhouse.p3d",
|
||||
"kontejner_papir.p3d",
|
||||
"misc_boogieman.p3d",
|
||||
"metalcrate.p3d",
|
||||
"hrob2.p3d",
|
||||
"barel5.p3d",
|
||||
"kontejner.p3d",
|
||||
"barel4.p3d",
|
||||
"tires_ep1.p3d",
|
||||
"barel2.p3d",
|
||||
"barels.p3d",
|
||||
"barel1.p3d",
|
||||
"barels2.p3d",
|
||||
"barels3.p3d"
|
||||
};
|
||||
Trees[] = {
|
||||
"t_pinuss3s_ep1.p3d",
|
||||
"t_pinuse2s_ep1.p3d",
|
||||
"t_oleae2s_f.p3d",
|
||||
"t_populusf2s_ep1.p3d",
|
||||
"str_topol.p3d",
|
||||
"t_fraxinusav2s_f.p3d",
|
||||
"les_singlestrom_b.p3d",
|
||||
"t_fagus2f.p3d",
|
||||
"t_quercus3s.p3d",
|
||||
"t_salix2s.p3d",
|
||||
"banana_3.p3d",
|
||||
"jablon.p3d",
|
||||
"str_pinie.p3d",
|
||||
"t_sorbus2s.p3d",
|
||||
"t_ficusb2s_ep1.p3d",
|
||||
"palm_01.p3d",
|
||||
"vysilac_budova.p3d",
|
||||
"palm_10.p3d",
|
||||
"palm_03.p3d",
|
||||
"palm_04.p3d",
|
||||
"t_pistacial2s_ep1.p3d",
|
||||
"panelak.p3d",
|
||||
"str kastan.p3d",
|
||||
"a_hospital.p3d",
|
||||
"i_barracks_v1_f.p3d",
|
||||
"dum_istan3_hromada.p3d",
|
||||
"dum_istan3_hromada2.p3d",
|
||||
"dum_istan4_big_inverse.p3d",
|
||||
"panelak2.p3d",
|
||||
"podesta_1_mid.p3d",
|
||||
"podesta_1_cornl.p3d",
|
||||
"t_prunuss2s_ep1.p3d",
|
||||
"dum_istan2_02.p3d",
|
||||
"dum_istan4_inverse.p3d",
|
||||
"podesta_1_stairs2.p3d",
|
||||
"podesta_1_mid_cornl.p3d",
|
||||
"hrusen2.p3d",
|
||||
"zed_kamenna.p3d",
|
||||
"t_pinuss2s_b_f.p3d",
|
||||
"str dub.p3d",
|
||||
"str dub jiny.p3d",
|
||||
"t_pinuss1s_f.p3d",
|
||||
"smrk_siroky.p3d",
|
||||
"smrk_maly.p3d",
|
||||
"les_singlestrom.p3d",
|
||||
"t_pinuss2s_f.p3d",
|
||||
"palm_02.p3d",
|
||||
"brg_banana_3.p3d",
|
||||
"banana_2.p3d",
|
||||
"oliva.p3d",
|
||||
"brg_umbrella_acacia02b.p3d",
|
||||
"brg_umbrella_acacia01b.p3d",
|
||||
"brg_umbrella_acacia04b.p3d",
|
||||
"brg_umbrella_acacia03b.p3d",
|
||||
"str buk.p3d",
|
||||
"les_dub.p3d",
|
||||
"t_ficusb2s_f.p3d",
|
||||
"b_pinusm1s_ep1.p3d",
|
||||
"krovi_long.p3d",
|
||||
"str lipa.p3d",
|
||||
"str javor.p3d",
|
||||
"str trnka.p3d",
|
||||
"t_pyrus2s.p3d",
|
||||
"t_picea3f.p3d",
|
||||
"t_pinusn1s.p3d",
|
||||
"t_ficusb1s_f.p3d",
|
||||
"t_poplar2f_dead_pmc.p3d",
|
||||
"t_oleae1s_f.p3d",
|
||||
"t_quercusir2s_f.p3d",
|
||||
"dd_bush01.p3d",
|
||||
"t_fagus2f_summer.p3d",
|
||||
"akat02s.p3d",
|
||||
"t_amygdalusc2s_ep1.p3d",
|
||||
"str osika.p3d",
|
||||
"palm_09.p3d",
|
||||
"dd_borovice.p3d",
|
||||
"dd_borovice02.p3d",
|
||||
"t_poplar2f_dead_f.p3d",
|
||||
"fuelstation_build_f.p3d",
|
||||
"str_topol2.p3d",
|
||||
"brg_umbrella_acacia_shrub02.p3d",
|
||||
"t_betula2s.p3d",
|
||||
"t_populusb2s_ep1.p3d",
|
||||
"les_dub_jiny.p3d",
|
||||
"les_buk.p3d",
|
||||
"str_fikovnik.p3d",
|
||||
"str_briza_rovna.p3d",
|
||||
"str jerabina.p3d",
|
||||
"str habr.p3d",
|
||||
"les_fikovnik2.p3d"
|
||||
};
|
||||
Bushes[] = {
|
||||
"b_pmugo.p3d",
|
||||
"b_ficusc2s_f.p3d",
|
||||
"b_neriumo2d_f.p3d",
|
||||
"krovi_bigest.p3d",
|
||||
"b_ficusc1s_f.p3d",
|
||||
"b_arundod3s_f.p3d",
|
||||
"krovi4.p3d",
|
||||
"krovi.p3d",
|
||||
"ker s bobulema.p3d",
|
||||
"ker pichlavej.p3d",
|
||||
"pinus_mugo_lowpoly.p3d",
|
||||
"b_amygdalusn1s_ep1.p3d",
|
||||
"banana_4.p3d",
|
||||
"banana_1.p3d",
|
||||
"palm_08small.p3d",
|
||||
"ker deravej.p3d",
|
||||
"brg_umbrella_acacia_shrub2.p3d",
|
||||
"b_salix2s.p3d",
|
||||
"krovi2.p3d",
|
||||
"b_ficusc2d_f.p3d",
|
||||
"brg_banana_4.p3d"
|
||||
};
|
||||
Cinder[] = {
|
||||
"cinderblocks_f.p3d"
|
||||
};
|
||||
Wrecks[] = {
|
||||
"plot_vlnplech1.p3d",
|
||||
// wrecks from aia
|
||||
"datsun01t.p3d",
|
||||
"datsun02t.p3d",
|
||||
"skodovka_wrecked.p3d",
|
||||
"lada_wrecked.p3d",
|
||||
"hiluxt.p3d",
|
||||
"uaz_wrecked.p3d",
|
||||
"ural_wrecked.p3d"
|
||||
};
|
||||
};
|
||||
|
@ -14,95 +14,6 @@
|
||||
*/
|
||||
class Takistan {
|
||||
blockedArea[] = {};
|
||||
Rocks[] = {
|
||||
"r_tk_stone_01_ep1.p3d",
|
||||
"r_tk_stone_02_ep1.p3d",
|
||||
"r_tk_rock_03_ep1.p3d",
|
||||
"r_tk_boulder_03_ep1.p3d",
|
||||
"r_tk_rock_02_ep1.p3d",
|
||||
"r_tk_boulder_01_ep1.p3d",
|
||||
"r_tk_boulder_02_ep1.p3d",
|
||||
"r_tk_rock_01_ep1.p3d"
|
||||
};
|
||||
ATM[] = {
|
||||
};
|
||||
Water[] = {
|
||||
"misc_well_c_ep1.p3d",
|
||||
"misc_well_l_ep1.p3d",
|
||||
"stand_water_ep1.p3d",
|
||||
"misc_concbox_ep1.p3d"
|
||||
};
|
||||
// main config
|
||||
TrashClasses[] = { "Trash", "TrashSmall", "TrashVehicle", "PumpkinPatch", "TrashFood" };
|
||||
|
||||
TrashSmall[] = {
|
||||
};
|
||||
TrashVehicle[] = {
|
||||
};
|
||||
PumpkinPatch[] = {
|
||||
"p_pumpkin_summer.p3d",
|
||||
"pumpkin.p3d",
|
||||
};
|
||||
TrashFood[] = {
|
||||
};
|
||||
Trash[] = {
|
||||
"misc_rubble_ep1.p3d",
|
||||
"bags_stack_ep1.p3d",
|
||||
"kiosk_ep1.p3d",
|
||||
"tires_ep1.p3d",
|
||||
"garbage_misc.p3d",
|
||||
"garbage_paleta.p3d",
|
||||
"paletyc.p3d",
|
||||
"crates_ep1.p3d",
|
||||
"cages_ep1.p3d",
|
||||
"junkpile.p3d",
|
||||
"crates_stack_ep1.p3d",
|
||||
"transport_cart_ep1.p3d",
|
||||
"stand_small_ep1.p3d",
|
||||
"stand_meat_ep1.p3d",
|
||||
"bags_ep1.p3d",
|
||||
"misc_garb_heap_ep1.p3d",
|
||||
"house_k_1_ruins_ep1.p3d"
|
||||
};
|
||||
Trees[] = {
|
||||
"t_populusf2s_ep1.p3d",
|
||||
"t_pistacial2s_ep1.p3d",
|
||||
"misc_trunk_torzo_ep1.p3d",
|
||||
"t_populusb2s_ep1.p3d",
|
||||
"t_amygdalusc2s_ep1.p3d",
|
||||
"t_pinuse2s_ep1.p3d",
|
||||
"t_ficusb2s_ep1.p3d",
|
||||
"t_juniperusc2s_ep1.p3d",
|
||||
"t_pinuss3s_ep1.p3d",
|
||||
"misc_trunk_water_ep1.p3d",
|
||||
"t_prunuss2s_ep1.p3d"
|
||||
};
|
||||
Bushes[] = {
|
||||
"b_amygdalusn1s_ep1.p3d",
|
||||
"b_pistacial1s_ep1.p3d",
|
||||
"b_pinusm1s_ep1.p3d"
|
||||
};
|
||||
Cinder[] = {
|
||||
"cinderblocks_f.p3d"
|
||||
};
|
||||
Wrecks[] = {
|
||||
"wall_indfnc_9.p3d",
|
||||
"wall_indfnc_pole.p3d",
|
||||
"wall_tincom_9.p3d",
|
||||
"wall_tincom_pole.p3d",
|
||||
"ural_wrecked.p3d",
|
||||
"uaz_wrecked.p3d",
|
||||
"datsun02t.p3d",
|
||||
"hiluxt.p3d",
|
||||
"datsun01t.p3d",
|
||||
"wall_tin_4.p3d",
|
||||
"wall_indfnc_3_d.p3d",
|
||||
"wall_indfnc_3.p3d",
|
||||
"wall_indfnc_3_hole.p3d",
|
||||
"skodovka_wrecked.p3d",
|
||||
"lada_wrecked.p3d",
|
||||
"misc_concrete_high.p3d",
|
||||
"t72_wrecked.p3d",
|
||||
"t72_wrecked_turret.p3d"
|
||||
};
|
||||
};
|
||||
|
@ -13,48 +13,9 @@
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_config/Configs/CfgEpochClient/utes.hpp
|
||||
*/
|
||||
class utes {
|
||||
Rocks[] = {
|
||||
"r2_rock1.p3d",
|
||||
"r2_rockwall.p3d",
|
||||
"r2_boulder1.p3d",
|
||||
"r2_boulder2.p3d",
|
||||
"r2_stone.p3d"
|
||||
};
|
||||
ATM[] = {
|
||||
};
|
||||
Water[] = {
|
||||
"misc_wellpump.p3d"
|
||||
};
|
||||
// main config
|
||||
TrashClasses[] = { "Trash", "TrashSmall", "TrashVehicle", "PumpkinPatch", "TrashFood" };
|
||||
|
||||
TrashSmall[] = {
|
||||
};
|
||||
TrashVehicle[] = {
|
||||
};
|
||||
PumpkinPatch[] = {
|
||||
"p_pumpkin_summer.p3d",
|
||||
"pumpkin.p3d",
|
||||
};
|
||||
TrashFood[] = {
|
||||
};
|
||||
Trash[] = {
|
||||
};
|
||||
Trees[] = {
|
||||
"t_betula1f.p3d",
|
||||
"t_pinusn2s.p3d",
|
||||
"t_pinuss2f.p3d",
|
||||
"t_pinusn1s.p3d"
|
||||
};
|
||||
Bushes[] = {
|
||||
"b_betulahumilis.p3d",
|
||||
"b_salix2s.p3d",
|
||||
"b_pmugo.p3d"
|
||||
};
|
||||
Cinder[] = {
|
||||
"cinderblocks_f.p3d"
|
||||
};
|
||||
Wrecks[] = {
|
||||
"wall_indfnc_9.p3d"
|
||||
};
|
||||
};
|
||||
|
@ -13,31 +13,7 @@
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_config/Configs/CfgEpochClient/vr.hpp
|
||||
*/
|
||||
class vr {
|
||||
Rocks[] = {
|
||||
};
|
||||
ATM[] = {
|
||||
};
|
||||
Water[] = {
|
||||
};
|
||||
blockedArea[] = {};
|
||||
// main config
|
||||
TrashClasses[] = { "Trash", "TrashSmall", "TrashVehicle", "PumpkinPatch", "TrashFood" };
|
||||
|
||||
TrashSmall[] = {
|
||||
};
|
||||
TrashVehicle[] = {
|
||||
};
|
||||
PumpkinPatch[] = {
|
||||
};
|
||||
TrashFood[] = {
|
||||
};
|
||||
Trash[] = {
|
||||
};
|
||||
Trees[] = {
|
||||
};
|
||||
Bushes[] = {
|
||||
};
|
||||
Cinder[] = {
|
||||
};
|
||||
Wrecks[] = {
|
||||
};
|
||||
};
|
||||
|
@ -11,11 +11,8 @@ if (!(_object isKindOf "All")) then {
|
||||
|
||||
if (alive _object) then {
|
||||
|
||||
if (isNil "EPOCH_trashLootClasses") then{
|
||||
_config = 'CfgEpochClient' call EPOCH_returnConfig;
|
||||
EPOCH_trashLootClasses = getArray(_config >> worldname >> "TrashClasses");
|
||||
};
|
||||
_payout = EPOCH_trashLootClasses param [_type, "Trash"];
|
||||
_config = 'CfgEpochClient' call EPOCH_returnConfig;
|
||||
_payout = getArray(_config >> worldname >> "TrashClasses") param [_type, "Trash"];
|
||||
|
||||
_posWH = getPosATL _player;
|
||||
_object setdamage 1;
|
||||
@ -29,7 +26,7 @@ if (!(_object isKindOf "All")) then {
|
||||
[_item, _payout] call EPOCH_serverLootObject;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
// TODO move to server config
|
||||
if ((random 1) <= EPOCH_antagonistChanceTrash) then {
|
||||
_nearPlayers = _posWH nearEntities[["Epoch_Male_F", "Epoch_Female_F"], 50];
|
||||
|
@ -16,26 +16,33 @@
|
||||
private ["_class","_debug1","_lightLocation","_light","_deSimulate","_pos","_dir","_ep","_useWorldPos","_pos1","_markerName","_loadBaseTemplateConfig","_pro2","_veh2","_enterClass","_exitClass","_pro1","_veh1","_debugLocation","_debug","_protection","_config","_loadBaseTemplateConfig"];
|
||||
|
||||
_loadBaseTemplateConfig = {
|
||||
private ["_partPos","_part","_array","_pos","_center"];
|
||||
private ["_partPos","_part","_array","_pos","_center","_deSimulate"];
|
||||
_array = getArray(configfile >> "CfgPropTemplate" >> (_this select 1));
|
||||
_pos = _this select 2;
|
||||
_pos set [2,0];
|
||||
_center = createVehicle [_this select 0, _pos, [], 0, "CAN_COLLIDE"];
|
||||
// diag_log format ["DEBUG 24 _pos: %1 %2",_pos, getpos _center];
|
||||
{
|
||||
_partPos = _center modelToWorld (_x select 1);
|
||||
_part = createVehicle [_x select 0, _partPos, [], 0, "CAN_COLLIDE"];
|
||||
_part setDir (_x select 2);
|
||||
_part setPos _partPos;
|
||||
_partPos set [2,0];
|
||||
if ((_x select 0) isKindOf "Man") then {
|
||||
// { "C_man_hunter_1_F", { 4585.05, 4516.51, 0.201431 }, 273.197 },
|
||||
EPOCH_staticNPCTraderPos pushBack [(_x select 0), _partPos, (_x select 2)];
|
||||
} else {
|
||||
_part = createVehicle [_x select 0, _partPos, [], 0, "CAN_COLLIDE"];
|
||||
_part setDir (_x select 2);
|
||||
_part setPos _partPos;
|
||||
|
||||
_deSimulate = _class isKindOf "ThingX";
|
||||
// disable simulation if true
|
||||
if (count _x >= 4) then {
|
||||
_deSimulate = (_x select 3) isEqualTo "true";
|
||||
};
|
||||
|
||||
if (_deSimulate) then{
|
||||
_part enableSimulationGlobal false;
|
||||
};
|
||||
_deSimulate = _class isKindOf "ThingX";
|
||||
// disable simulation if true
|
||||
if (count _x >= 4) then {
|
||||
_deSimulate = (_x select 3) isEqualTo "true";
|
||||
};
|
||||
|
||||
if (_deSimulate) then{
|
||||
_part enableSimulationGlobal false;
|
||||
};
|
||||
};
|
||||
} forEach _array;
|
||||
};
|
||||
|
||||
@ -113,6 +120,7 @@ _config = configFile >> "CfgEpoch";
|
||||
if (_pos isEqualType "") then {
|
||||
_markerName = _pos;
|
||||
_pos = getMarkerPos _markerName;
|
||||
// diag_log format ["DEBUG _pos: %1",_pos];
|
||||
// load template props for marker location
|
||||
["ProtectionZone_Invisible_F",_markerName,_pos] call _loadBaseTemplateConfig;
|
||||
} else {
|
||||
|
@ -8,7 +8,9 @@ private [
|
||||
,"_home","_work","_schedule"
|
||||
];
|
||||
|
||||
_staticTradersArray = getArray(configFile >> "CfgEpoch" >> worldName >> "staticNpcPos");
|
||||
_staticTradersArray = [] + EPOCH_staticNPCTraderPos;
|
||||
EPOCH_staticNPCTraderPos = nil;
|
||||
_staticTradersArray append getArray(configFile >> "CfgEpoch" >> worldName >> "staticNpcPos");
|
||||
_staticTradersArrCount = count _staticTradersArray;
|
||||
_aiTables = ["U_OG_leader", "U_C_Poloshirt_stripped", "U_C_Poloshirt_blue", "U_C_Poloshirt_burgundy", "U_C_Poloshirt_tricolour", "U_C_Poloshirt_salmon", "U_C_Poloshirt_redwhite", "U_C_Poor_1", "U_C_WorkerCoveralls", "U_C_Journalist", "U_C_Scientist", "U_OrestesBody"];
|
||||
|
||||
|
@ -8,6 +8,7 @@ EPOCH_cleanupQueue = [];
|
||||
EPOCH_defaultVars_SEPXVar = EPOCH_defaultVars;
|
||||
EPOCH_group_upgrade_lvl_SEPXVar = EPOCH_group_upgrade_lvl;
|
||||
EPOCH_staticTraderLocations = [];
|
||||
EPOCH_staticNPCTraderPos = [];
|
||||
|
||||
_configArray = [
|
||||
["serverRestart", false],
|
||||
|
@ -58,6 +58,17 @@ class CfgEpoch
|
||||
#include "configs\maps\chernarus_summer.h"
|
||||
#include "configs\maps\australia.h"
|
||||
#include "configs\maps\takistan.h"
|
||||
#include "configs\maps\zargabad.h"
|
||||
#include "configs\maps\Zargabad.h"
|
||||
#include "configs\maps\esseker.h"
|
||||
#include "configs\maps\Sara.h"
|
||||
#include "configs\maps\SaraLite.h"
|
||||
#include "configs\maps\Sara_dbe1.h"
|
||||
#include "configs\maps\Bootcamp_ACR.h"
|
||||
#include "configs\maps\Desert_E.h"
|
||||
#include "configs\maps\Mountains_ACR.h"
|
||||
#include "configs\maps\Porto.h"
|
||||
#include "configs\maps\ProvingGrounds_PMC.h"
|
||||
#include "configs\maps\Shapur_BAF.h"
|
||||
#include "configs\maps\Utes.h"
|
||||
#include "configs\maps\Woodland_ACR.h"
|
||||
};
|
||||
|
@ -766,7 +766,11 @@ class CfgLootTable
|
||||
{ { "Sodas", "CfgLootTable" }, 8 },
|
||||
{ { "CanFood", "CfgLootTable" }, 8 },
|
||||
{ { "Primitive", "CfgLootTable" }, 21 },
|
||||
{ { "lighter_epoch", "magazine" }, 1 }
|
||||
{ { "lighter_epoch", "magazine" }, 1 },
|
||||
|
||||
{ { "ItemAluminumBar", "magazine" }, 2 },
|
||||
{ { "ItemCopperBar", "magazine" }, 2 },
|
||||
{ { "ItemTinBar", "magazine" }, 1 },
|
||||
};
|
||||
};
|
||||
|
||||
@ -784,13 +788,14 @@ class CfgLootTable
|
||||
{
|
||||
items[] = {
|
||||
{ { "WhiskeyNoodle", "magazine" }, 5 },
|
||||
{ { "ItemSodaOrangeSherbet", "magazine" }, 14 },
|
||||
{ { "ItemSodaOrangeSherbet", "magazine" }, 13 },
|
||||
{ { "ItemSodaAlpineDude", "magazine" }, 6 },
|
||||
{ { "ItemSodaPurple", "magazine" }, 13 },
|
||||
{ { "ItemSodaMocha", "magazine" }, 14 },
|
||||
{ { "ItemSodaBurst", "magazine" }, 21 },
|
||||
{ { "ItemSodaMocha", "magazine" }, 12 },
|
||||
{ { "ItemSodaBurst", "magazine" }, 15 },
|
||||
{ { "ItemSodaRbull", "magazine" }, 13 },
|
||||
{ { "FoodWalkNSons", "magazine" }, 14 }
|
||||
{ { "FoodWalkNSons", "magazine" }, 13 },
|
||||
{ { "ItemSodaEmpty", "magazine" }, 11 }
|
||||
};
|
||||
};
|
||||
class CanFood
|
||||
@ -798,16 +803,15 @@ class CfgLootTable
|
||||
items[] = {
|
||||
{ { "honey_epoch", "magazine" }, 5 },
|
||||
{ { "emptyjar_epoch", "magazine" }, 13 },
|
||||
{ { "FoodBioMeat", "magazine" }, 13 },
|
||||
{ { "FoodBioMeat", "magazine" }, 11 },
|
||||
{ { "sardines_epoch", "magazine" }, 11 },
|
||||
{ { "meatballs_epoch", "magazine" }, 14 },
|
||||
{ { "scam_epoch", "magazine" }, 15 },
|
||||
{ { "sweetcorn_epoch", "magazine" }, 15 },
|
||||
{ { "meatballs_epoch", "magazine" }, 13 },
|
||||
{ { "scam_epoch", "magazine" }, 14 },
|
||||
{ { "sweetcorn_epoch", "magazine" }, 14 },
|
||||
{ { "FoodSnooter", "magazine" }, 9 },
|
||||
{ { "TacticalBacon", "magazine" }, 5 },
|
||||
{ { "FoodMeeps", "magazine" }, 1 }
|
||||
|
||||
|
||||
{ { "FoodMeeps", "magazine" }, 1 },
|
||||
{ { "ItemEmptyTin", "magazine" }, 5 }
|
||||
};
|
||||
};
|
||||
|
||||
@ -1318,16 +1322,25 @@ class CfgLootTable
|
||||
{
|
||||
items[] = {
|
||||
{ { "Gems", "CfgLootTable" }, 5 },
|
||||
{ { "ItemGoldBar10oz", "magazine" }, 6 },
|
||||
{ { "ItemGoldBar", "magazine" }, 9 },
|
||||
{ { "MetalBars", "CfgLootTable" }, 26 },
|
||||
{ { "PartOreGold", "magazine" }, 10 },
|
||||
{ { "ItemSilverBar", "magazine" }, 11 },
|
||||
{ { "PartOreSilver", "magazine" }, 13 },
|
||||
{ { "ItemKiloHemp", "magazine" }, 12 },
|
||||
{ { "ItemScraps", "magazine" }, 16 },
|
||||
{ { "PartOre", "magazine" }, 18 }
|
||||
};
|
||||
};
|
||||
class MetalBars
|
||||
{
|
||||
items[] = {
|
||||
{ { "ItemGoldBar10oz", "magazine" }, 1 },
|
||||
{ { "ItemGoldBar", "magazine" }, 9 },
|
||||
{ { "ItemSilverBar", "magazine" }, 20 },
|
||||
{ { "ItemCopperBar", "magazine" }, 20 },
|
||||
{ { "ItemAluminumBar", "magazine" }, 20 },
|
||||
{ { "ItemTinBar", "magazine" }, 30 },
|
||||
};
|
||||
};
|
||||
class Gems
|
||||
{
|
||||
items[] = {
|
||||
@ -1443,12 +1456,7 @@ class CfgLootTable
|
||||
class Epoch_Sapper_F
|
||||
{
|
||||
items[] = {
|
||||
{ { "ItemGoldBar", "magazine" }, 1 },
|
||||
|
||||
{ { "ItemAluminumBar", "magazine" }, 2 },
|
||||
{ { "ItemCopperBar", "magazine" }, 2 },
|
||||
{ { "ItemTinBar", "magazine" }, 1 },
|
||||
|
||||
{ { "MetalBars", "CfgLootTable" }, 6 },
|
||||
{ { "WhiskeyNoodle", "magazine" }, 11 },
|
||||
{ { "ItemKiloHemp", "magazine" }, 16 },
|
||||
{ { "ItemSilverBar", "magazine" }, 18 },
|
||||
|
47
Sources/epoch_server_settings/configs/maps/Bootcamp_ACR.h
Normal file
47
Sources/epoch_server_settings/configs/maps/Bootcamp_ACR.h
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
Author: Aaron Clark - EpochMod.com
|
||||
|
||||
Contributors:
|
||||
|
||||
Description:
|
||||
Epoch gamemode server Side map specific configs for Bootcamp_ACR.
|
||||
|
||||
Licence:
|
||||
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
||||
|
||||
Github:
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settngs/configs/maps/Bootcamp_ACR.h
|
||||
*/
|
||||
class Bootcamp_ACR : Default
|
||||
{
|
||||
worldSize = 0; // 0 = default to worldSize command
|
||||
vehicleSpawnTypes[] = {
|
||||
{"FlatAreaCity",1},
|
||||
{"FlatAreaCitySmall",1},
|
||||
{"NameCity",2},
|
||||
{"NameVillage",1},
|
||||
{"NameCityCapital",4},
|
||||
{"Airport",5},
|
||||
{"NameLocal",2},
|
||||
{"StrongpointArea",1},
|
||||
{"VegetationBroadleaf",1},
|
||||
{"VegetationFir",1},
|
||||
{"ViewPoint",1}
|
||||
};
|
||||
traderBlds[] = {};
|
||||
containerPos[] = {};
|
||||
telePos[] = {
|
||||
// N [-0.286865,8.17383,-10.3098]
|
||||
// S [-0.415527,-7.05298,-10.3098]
|
||||
// E [13.5127,0.410156,-10.3098]
|
||||
// W [-14.4316,0.112793,-10.3098]
|
||||
{ "Transport_N_EPOCH", { -0.286865, 8.17383, -10.3098 }, "", "north" }
|
||||
//{ "Transport_W_EPOCH", { -14.4316, 0.112793, -10.3098 }, "", "west" },
|
||||
//{ "Transport_E_EPOCH", { 13.5127,0.410156,-10.3098 }, "", "east" },
|
||||
//{ "Transport_C_EPOCH", { 13.5127, 0.410156, -10.3098 }, "", "south" }
|
||||
};
|
||||
propsPos[] = {
|
||||
};
|
||||
staticNpcPos[] = {
|
||||
};
|
||||
};
|
47
Sources/epoch_server_settings/configs/maps/Desert_E.h
Normal file
47
Sources/epoch_server_settings/configs/maps/Desert_E.h
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
Author: Aaron Clark - EpochMod.com
|
||||
|
||||
Contributors:
|
||||
|
||||
Description:
|
||||
Epoch gamemode server Side map specific configs for Desert_E.
|
||||
|
||||
Licence:
|
||||
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
||||
|
||||
Github:
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settngs/configs/maps/Desert_E.h
|
||||
*/
|
||||
class Desert_E : Default
|
||||
{
|
||||
worldSize = 0; // 0 = default to worldSize command
|
||||
vehicleSpawnTypes[] = {
|
||||
{"FlatAreaCity",1},
|
||||
{"FlatAreaCitySmall",1},
|
||||
{"NameCity",2},
|
||||
{"NameVillage",1},
|
||||
{"NameCityCapital",4},
|
||||
{"Airport",5},
|
||||
{"NameLocal",2},
|
||||
{"StrongpointArea",1},
|
||||
{"VegetationBroadleaf",1},
|
||||
{"VegetationFir",1},
|
||||
{"ViewPoint",1}
|
||||
};
|
||||
traderBlds[] = {};
|
||||
containerPos[] = {};
|
||||
telePos[] = {
|
||||
// N [-0.286865,8.17383,-10.3098]
|
||||
// S [-0.415527,-7.05298,-10.3098]
|
||||
// E [13.5127,0.410156,-10.3098]
|
||||
// W [-14.4316,0.112793,-10.3098]
|
||||
//{ "Transport_N_EPOCH", { -0.286865, 8.17383, -10.3098 }, "", "north" },
|
||||
//{ "Transport_W_EPOCH", { -14.4316, 0.112793, -10.3098 }, "", "west" },
|
||||
//{ "Transport_E_EPOCH", { 13.5127,0.410156,-10.3098 }, "", "east" },
|
||||
{ "Transport_C_EPOCH", { 13.5127, 0.410156, -10.3098 }, "", "south" }
|
||||
};
|
||||
propsPos[] = {
|
||||
};
|
||||
staticNpcPos[] = {
|
||||
};
|
||||
};
|
47
Sources/epoch_server_settings/configs/maps/Mountains_ACR.h
Normal file
47
Sources/epoch_server_settings/configs/maps/Mountains_ACR.h
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
Author: Aaron Clark - EpochMod.com
|
||||
|
||||
Contributors:
|
||||
|
||||
Description:
|
||||
Epoch gamemode server Side map specific configs for Mountains_ACR.
|
||||
|
||||
Licence:
|
||||
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
||||
|
||||
Github:
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settngs/configs/maps/Mountains_ACR.h
|
||||
*/
|
||||
class Mountains_ACR : Default
|
||||
{
|
||||
worldSize = 0; // 0 = default to worldSize command
|
||||
vehicleSpawnTypes[] = {
|
||||
{"FlatAreaCity",1},
|
||||
{"FlatAreaCitySmall",1},
|
||||
{"NameCity",2},
|
||||
{"NameVillage",1},
|
||||
{"NameCityCapital",4},
|
||||
{"Airport",5},
|
||||
{"NameLocal",2},
|
||||
{"StrongpointArea",1},
|
||||
{"VegetationBroadleaf",1},
|
||||
{"VegetationFir",1},
|
||||
{"ViewPoint",1}
|
||||
};
|
||||
traderBlds[] = {};
|
||||
containerPos[] = {};
|
||||
telePos[] = {
|
||||
// N [-0.286865,8.17383,-10.3098]
|
||||
// S [-0.415527,-7.05298,-10.3098]
|
||||
// E [13.5127,0.410156,-10.3098]
|
||||
// W [-14.4316,0.112793,-10.3098]
|
||||
{ "Transport_N_EPOCH", { -0.286865, 8.17383, -10.3098 }, "", "north" },
|
||||
{ "Transport_W_EPOCH", { -14.4316, 0.112793, -10.3098 }, "", "west" },
|
||||
{ "Transport_E_EPOCH", { 13.5127,0.410156,-10.3098 }, "", "east" },
|
||||
{ "Transport_C_EPOCH", { 13.5127, 0.410156, -10.3098 }, "", "south" }
|
||||
};
|
||||
propsPos[] = {
|
||||
};
|
||||
staticNpcPos[] = {
|
||||
};
|
||||
};
|
47
Sources/epoch_server_settings/configs/maps/Porto.h
Normal file
47
Sources/epoch_server_settings/configs/maps/Porto.h
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
Author: Aaron Clark - EpochMod.com
|
||||
|
||||
Contributors:
|
||||
|
||||
Description:
|
||||
Epoch gamemode server Side map specific configs for Porto.
|
||||
|
||||
Licence:
|
||||
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
||||
|
||||
Github:
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settngs/configs/maps/Porto.h
|
||||
*/
|
||||
class Porto : Default
|
||||
{
|
||||
worldSize = 0; // 0 = default to worldSize command
|
||||
vehicleSpawnTypes[] = {
|
||||
{"FlatAreaCity",1},
|
||||
{"FlatAreaCitySmall",1},
|
||||
{"NameCity",2},
|
||||
{"NameVillage",1},
|
||||
{"NameCityCapital",4},
|
||||
{"Airport",5},
|
||||
{"NameLocal",2},
|
||||
{"StrongpointArea",1},
|
||||
{"VegetationBroadleaf",1},
|
||||
{"VegetationFir",1},
|
||||
{"ViewPoint",1}
|
||||
};
|
||||
traderBlds[] = {};
|
||||
containerPos[] = {};
|
||||
telePos[] = {
|
||||
// N [-0.286865,8.17383,-10.3098]
|
||||
// S [-0.415527,-7.05298,-10.3098]
|
||||
// E [13.5127,0.410156,-10.3098]
|
||||
// W [-14.4316,0.112793,-10.3098]
|
||||
//{ "Transport_N_EPOCH", { -0.286865, 8.17383, -10.3098 }, "", "north" },
|
||||
//{ "Transport_W_EPOCH", { -14.4316, 0.112793, -10.3098 }, "", "west" },
|
||||
//{ "Transport_E_EPOCH", { 13.5127,0.410156,-10.3098 }, "", "east" },
|
||||
{ "Transport_C_EPOCH", { 13.5127, 0.410156, -10.3098 }, "", "south" }
|
||||
};
|
||||
propsPos[] = {
|
||||
};
|
||||
staticNpcPos[] = {
|
||||
};
|
||||
};
|
@ -0,0 +1,47 @@
|
||||
/*
|
||||
Author: Aaron Clark - EpochMod.com
|
||||
|
||||
Contributors:
|
||||
|
||||
Description:
|
||||
Epoch gamemode server Side map specific configs for ProvingGrounds_PMC.
|
||||
|
||||
Licence:
|
||||
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
||||
|
||||
Github:
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settngs/configs/maps/ProvingGrounds_PMC.h
|
||||
*/
|
||||
class ProvingGrounds_PMC : Default
|
||||
{
|
||||
worldSize = 0; // 0 = default to worldSize command
|
||||
vehicleSpawnTypes[] = {
|
||||
{"FlatAreaCity",1},
|
||||
{"FlatAreaCitySmall",1},
|
||||
{"NameCity",2},
|
||||
{"NameVillage",1},
|
||||
{"NameCityCapital",4},
|
||||
{"Airport",5},
|
||||
{"NameLocal",2},
|
||||
{"StrongpointArea",1},
|
||||
{"VegetationBroadleaf",1},
|
||||
{"VegetationFir",1},
|
||||
{"ViewPoint",1}
|
||||
};
|
||||
traderBlds[] = {};
|
||||
containerPos[] = {};
|
||||
telePos[] = {
|
||||
// N [-0.286865,8.17383,-10.3098]
|
||||
// S [-0.415527,-7.05298,-10.3098]
|
||||
// E [13.5127,0.410156,-10.3098]
|
||||
// W [-14.4316,0.112793,-10.3098]
|
||||
//{ "Transport_N_EPOCH", { -0.286865, 8.17383, -10.3098 }, "", "north" },
|
||||
//{ "Transport_W_EPOCH", { -14.4316, 0.112793, -10.3098 }, "", "west" },
|
||||
//{ "Transport_E_EPOCH", { 13.5127,0.410156,-10.3098 }, "", "east" },
|
||||
{ "Transport_C_EPOCH", { 13.5127, 0.410156, -10.3098 }, "", "south" }
|
||||
};
|
||||
propsPos[] = {
|
||||
};
|
||||
staticNpcPos[] = {
|
||||
};
|
||||
};
|
47
Sources/epoch_server_settings/configs/maps/Sara.h
Normal file
47
Sources/epoch_server_settings/configs/maps/Sara.h
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
Author: Aaron Clark - EpochMod.com
|
||||
|
||||
Contributors:
|
||||
|
||||
Description:
|
||||
Epoch gamemode server Side map specific configs for Sahrani.
|
||||
|
||||
Licence:
|
||||
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
||||
|
||||
Github:
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settngs/configs/maps/Sara.h
|
||||
*/
|
||||
class Sara : Default
|
||||
{
|
||||
worldSize = 0; // 0 = default to worldSize command
|
||||
vehicleSpawnTypes[] = {
|
||||
{"FlatAreaCity",1},
|
||||
{"FlatAreaCitySmall",1},
|
||||
{"NameCity",2},
|
||||
{"NameVillage",1},
|
||||
{"NameCityCapital",4},
|
||||
{"Airport",5},
|
||||
{"NameLocal",2},
|
||||
{"StrongpointArea",1},
|
||||
{"VegetationBroadleaf",1},
|
||||
{"VegetationFir",1},
|
||||
{"ViewPoint",1}
|
||||
};
|
||||
traderBlds[] = {};
|
||||
containerPos[] = {};
|
||||
telePos[] = {
|
||||
// N [-0.286865,8.17383,-10.3098]
|
||||
// S [-0.415527,-7.05298,-10.3098]
|
||||
// E [13.5127,0.410156,-10.3098]
|
||||
// W [-14.4316,0.112793,-10.3098]
|
||||
{ "Transport_N_EPOCH", { -0.286865, 8.17383, -10.3098 }, "", "north" },
|
||||
{ "Transport_W_EPOCH", { -14.4316, 0.112793, -10.3098 }, "", "west" },
|
||||
{ "Transport_E_EPOCH", { 13.5127,0.410156,-10.3098 }, "", "east" },
|
||||
//{ "Transport_C_EPOCH", { 13.5127, 0.410156, -10.3098 }, "", "south" }
|
||||
};
|
||||
propsPos[] = {
|
||||
};
|
||||
staticNpcPos[] = {
|
||||
};
|
||||
};
|
47
Sources/epoch_server_settings/configs/maps/SaraLite.h
Normal file
47
Sources/epoch_server_settings/configs/maps/SaraLite.h
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
Author: Aaron Clark - EpochMod.com
|
||||
|
||||
Contributors:
|
||||
|
||||
Description:
|
||||
Epoch gamemode server Side map specific configs for Sahrani.
|
||||
|
||||
Licence:
|
||||
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
||||
|
||||
Github:
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settngs/configs/maps/SaraLite.h
|
||||
*/
|
||||
class SaraLite : Default
|
||||
{
|
||||
worldSize = 0; // 0 = default to worldSize command
|
||||
vehicleSpawnTypes[] = {
|
||||
{"FlatAreaCity",1},
|
||||
{"FlatAreaCitySmall",1},
|
||||
{"NameCity",2},
|
||||
{"NameVillage",1},
|
||||
{"NameCityCapital",4},
|
||||
{"Airport",5},
|
||||
{"NameLocal",2},
|
||||
{"StrongpointArea",1},
|
||||
{"VegetationBroadleaf",1},
|
||||
{"VegetationFir",1},
|
||||
{"ViewPoint",1}
|
||||
};
|
||||
traderBlds[] = {};
|
||||
containerPos[] = {};
|
||||
telePos[] = {
|
||||
// N [-0.286865,8.17383,-10.3098]
|
||||
// S [-0.415527,-7.05298,-10.3098]
|
||||
// E [13.5127,0.410156,-10.3098]
|
||||
// W [-14.4316,0.112793,-10.3098]
|
||||
{ "Transport_N_EPOCH", { -0.286865, 8.17383, -10.3098 }, "", "north" },
|
||||
{ "Transport_W_EPOCH", { -14.4316, 0.112793, -10.3098 }, "", "west" },
|
||||
{ "Transport_E_EPOCH", { 13.5127,0.410156,-10.3098 }, "", "east" },
|
||||
//{ "Transport_C_EPOCH", { 13.5127, 0.410156, -10.3098 }, "", "south" }
|
||||
};
|
||||
propsPos[] = {
|
||||
};
|
||||
staticNpcPos[] = {
|
||||
};
|
||||
};
|
47
Sources/epoch_server_settings/configs/maps/Sara_dbe1.h
Normal file
47
Sources/epoch_server_settings/configs/maps/Sara_dbe1.h
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
Author: Aaron Clark - EpochMod.com
|
||||
|
||||
Contributors:
|
||||
|
||||
Description:
|
||||
Epoch gamemode server Side map specific configs for Sahrani.
|
||||
|
||||
Licence:
|
||||
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
||||
|
||||
Github:
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settngs/configs/maps/Sara_dbe1.h
|
||||
*/
|
||||
class Sara_dbe1 : Default
|
||||
{
|
||||
worldSize = 0; // 0 = default to worldSize command
|
||||
vehicleSpawnTypes[] = {
|
||||
{"FlatAreaCity",1},
|
||||
{"FlatAreaCitySmall",1},
|
||||
{"NameCity",2},
|
||||
{"NameVillage",1},
|
||||
{"NameCityCapital",4},
|
||||
{"Airport",5},
|
||||
{"NameLocal",2},
|
||||
{"StrongpointArea",1},
|
||||
{"VegetationBroadleaf",1},
|
||||
{"VegetationFir",1},
|
||||
{"ViewPoint",1}
|
||||
};
|
||||
traderBlds[] = {};
|
||||
containerPos[] = {};
|
||||
telePos[] = {
|
||||
// N [-0.286865,8.17383,-10.3098]
|
||||
// S [-0.415527,-7.05298,-10.3098]
|
||||
// E [13.5127,0.410156,-10.3098]
|
||||
// W [-14.4316,0.112793,-10.3098]
|
||||
{ "Transport_N_EPOCH", { -0.286865, 8.17383, -10.3098 }, "", "north" },
|
||||
{ "Transport_W_EPOCH", { -14.4316, 0.112793, -10.3098 }, "", "west" },
|
||||
{ "Transport_E_EPOCH", { 13.5127,0.410156,-10.3098 }, "", "east" },
|
||||
//{ "Transport_C_EPOCH", { 13.5127, 0.410156, -10.3098 }, "", "south" }
|
||||
};
|
||||
propsPos[] = {
|
||||
};
|
||||
staticNpcPos[] = {
|
||||
};
|
||||
};
|
47
Sources/epoch_server_settings/configs/maps/Shapur_BAF.h
Normal file
47
Sources/epoch_server_settings/configs/maps/Shapur_BAF.h
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
Author: Aaron Clark - EpochMod.com
|
||||
|
||||
Contributors:
|
||||
|
||||
Description:
|
||||
Epoch gamemode server Side map specific configs for Shapur_BAF.
|
||||
|
||||
Licence:
|
||||
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
||||
|
||||
Github:
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settngs/configs/maps/Shapur_BAF.h
|
||||
*/
|
||||
class Shapur_BAF : Default
|
||||
{
|
||||
worldSize = 0; // 0 = default to worldSize command
|
||||
vehicleSpawnTypes[] = {
|
||||
{"FlatAreaCity",1},
|
||||
{"FlatAreaCitySmall",1},
|
||||
{"NameCity",2},
|
||||
{"NameVillage",1},
|
||||
{"NameCityCapital",4},
|
||||
{"Airport",5},
|
||||
{"NameLocal",2},
|
||||
{"StrongpointArea",1},
|
||||
{"VegetationBroadleaf",1},
|
||||
{"VegetationFir",1},
|
||||
{"ViewPoint",1}
|
||||
};
|
||||
traderBlds[] = {};
|
||||
containerPos[] = {};
|
||||
telePos[] = {
|
||||
// N [-0.286865,8.17383,-10.3098]
|
||||
// S [-0.415527,-7.05298,-10.3098]
|
||||
// E [13.5127,0.410156,-10.3098]
|
||||
// W [-14.4316,0.112793,-10.3098]
|
||||
//{ "Transport_N_EPOCH", { -0.286865, 8.17383, -10.3098 }, "", "north" },
|
||||
//{ "Transport_W_EPOCH", { -14.4316, 0.112793, -10.3098 }, "", "west" },
|
||||
//{ "Transport_E_EPOCH", { 13.5127,0.410156,-10.3098 }, "", "east" },
|
||||
{ "Transport_C_EPOCH", { 13.5127, 0.410156, -10.3098 }, "", "south" }
|
||||
};
|
||||
propsPos[] = {
|
||||
};
|
||||
staticNpcPos[] = {
|
||||
};
|
||||
};
|
47
Sources/epoch_server_settings/configs/maps/Utes.h
Normal file
47
Sources/epoch_server_settings/configs/maps/Utes.h
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
Author: Aaron Clark - EpochMod.com
|
||||
|
||||
Contributors:
|
||||
|
||||
Description:
|
||||
Epoch gamemode server Side map specific configs for Utes.
|
||||
|
||||
Licence:
|
||||
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
||||
|
||||
Github:
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settngs/configs/maps/Utes.h
|
||||
*/
|
||||
class Utes : Default
|
||||
{
|
||||
worldSize = 0; // 0 = default to worldSize command
|
||||
vehicleSpawnTypes[] = {
|
||||
{"FlatAreaCity",1},
|
||||
{"FlatAreaCitySmall",1},
|
||||
{"NameCity",2},
|
||||
{"NameVillage",1},
|
||||
{"NameCityCapital",4},
|
||||
{"Airport",5},
|
||||
{"NameLocal",2},
|
||||
{"StrongpointArea",1},
|
||||
{"VegetationBroadleaf",1},
|
||||
{"VegetationFir",1},
|
||||
{"ViewPoint",1}
|
||||
};
|
||||
traderBlds[] = {};
|
||||
containerPos[] = {};
|
||||
telePos[] = {
|
||||
// N [-0.286865,8.17383,-10.3098]
|
||||
// S [-0.415527,-7.05298,-10.3098]
|
||||
// E [13.5127,0.410156,-10.3098]
|
||||
// W [-14.4316,0.112793,-10.3098]
|
||||
//{ "Transport_N_EPOCH", { -0.286865, 8.17383, -10.3098 }, "", "north" },
|
||||
//{ "Transport_W_EPOCH", { -14.4316, 0.112793, -10.3098 }, "", "west" },
|
||||
//{ "Transport_E_EPOCH", { 13.5127,0.410156,-10.3098 }, "", "east" },
|
||||
{ "Transport_C_EPOCH", { 13.5127, 0.410156, -10.3098 }, "", "south" }
|
||||
};
|
||||
propsPos[] = {
|
||||
};
|
||||
staticNpcPos[] = {
|
||||
};
|
||||
};
|
47
Sources/epoch_server_settings/configs/maps/Woodland_ACR.h
Normal file
47
Sources/epoch_server_settings/configs/maps/Woodland_ACR.h
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
Author: Aaron Clark - EpochMod.com
|
||||
|
||||
Contributors:
|
||||
|
||||
Description:
|
||||
Epoch gamemode server Side map specific configs for Woodland_ACR.
|
||||
|
||||
Licence:
|
||||
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
||||
|
||||
Github:
|
||||
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settngs/configs/maps/woodland_acr.h
|
||||
*/
|
||||
class Woodland_ACR : Default
|
||||
{
|
||||
worldSize = 0; // 0 = default to worldSize command
|
||||
vehicleSpawnTypes[] = {
|
||||
{"FlatAreaCity",1},
|
||||
{"FlatAreaCitySmall",1},
|
||||
{"NameCity",2},
|
||||
{"NameVillage",1},
|
||||
{"NameCityCapital",4},
|
||||
{"Airport",5},
|
||||
{"NameLocal",2},
|
||||
{"StrongpointArea",1},
|
||||
{"VegetationBroadleaf",1},
|
||||
{"VegetationFir",1},
|
||||
{"ViewPoint",1}
|
||||
};
|
||||
traderBlds[] = {};
|
||||
containerPos[] = {};
|
||||
telePos[] = {
|
||||
// N [-0.286865,8.17383,-10.3098]
|
||||
// S [-0.415527,-7.05298,-10.3098]
|
||||
// E [13.5127,0.410156,-10.3098]
|
||||
// W [-14.4316,0.112793,-10.3098]
|
||||
{ "Transport_N_EPOCH", { -0.286865, 8.17383, -10.3098 }, "", "north" },
|
||||
{ "Transport_W_EPOCH", { -14.4316, 0.112793, -10.3098 }, "", "west" },
|
||||
{ "Transport_E_EPOCH", { 13.5127,0.410156,-10.3098 }, "", "east" },
|
||||
//{ "Transport_C_EPOCH", { 13.5127, 0.410156, -10.3098 }, "", "south" }
|
||||
};
|
||||
propsPos[] = {
|
||||
};
|
||||
staticNpcPos[] = {
|
||||
};
|
||||
};
|
@ -37,7 +37,7 @@ class Zargabad : Default
|
||||
// S [-0.415527,-7.05298,-10.3098]
|
||||
// E [13.5127,0.410156,-10.3098]
|
||||
// W [-14.4316,0.112793,-10.3098]
|
||||
//{ "Transport_N_EPOCH", { -0.286865, 8.17383, -10.3098 }, "", "north" },
|
||||
{ "Transport_N_EPOCH", { -0.286865, 8.17383, -10.3098 }, "", "north" },
|
||||
//{ "Transport_W_EPOCH", { -14.4316, 0.112793, -10.3098 }, "", "west" },
|
||||
//{ "Transport_E_EPOCH", { 13.5127,0.410156,-10.3098 }, "", "east" },
|
||||
{ "Transport_C_EPOCH", { 13.5127, 0.410156, -10.3098 }, "", "south" }
|
||||
|
@ -1,282 +1,310 @@
|
||||
class CfgPropTemplate {
|
||||
east[] = {
|
||||
{ "Land_HelipadEmpty_F", {44.6897,-77.1118,-4.74999}, 0, false },
|
||||
{ "Land_Factory_Conv2_F", {24.4785,-52.6587,-4.74999}, 160.944, false },
|
||||
{ "Land_i_Garage_V2_F", {32.4902,-44.4336,-4.74999}, 355.492, true },
|
||||
{ "Land_i_Garage_V2_F", {43.4553,-60.2031,-4.74999}, 297.007, true },
|
||||
{ "Land_i_Garage_V2_F", {36.2019,-53.9028,-4.74999}, 323.572, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {49.3904,-66.0054,-4.76193}, 174.746, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {38.0574,-61.5444,-4.76193}, 205.067, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {29.313,-48.979,-4.76193}, 263.427, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {35.7991,-59.4834,-4.76193}, 235.64, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {30.7246,-52.5771,-4.76193}, 232.849, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {45.6746,-65.2988,-4.76193}, 205.328, false },
|
||||
{ "Land_CncWall1_F", {49.5886,-55.5713,-4.74999}, 191.576, false },
|
||||
{ "Land_CncWall1_F", {39.5527,-47.2285,-4.74999}, 247.048, false },
|
||||
{ "Land_CncWall1_F", {43.6902,-52.7163,-4.74999}, 223.31, false },
|
||||
{ "Land_LampSolar_F", {49.5344,-55.0137,-4.74999}, 103.123, false },
|
||||
{ "Land_RattanTable_01_F", {48.5576,-54.4971,-4.74998}, 0, false },
|
||||
{ "Land_i_Garage_V2_F", {50.0437,-23.7046,-4.74999}, 85.2151, true },
|
||||
{ "Land_i_Garage_V2_F", {34.3677,-34.6943,-4.74999}, 25.8296, true },
|
||||
{ "Land_i_Garage_V2_F", {40.5708,-27.2793,-4.74999}, 53.2947, true },
|
||||
{ "Land_cmp_Tower_F", {44.0603,-22.1572,-4.74999}, 338.149, false },
|
||||
{ "Land_LampSolar_F", {47.6533,-31.5815,-4.74999}, 241.694, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {32.9583,-29.3657,-4.76193}, 295.353, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {35.0188,-26.8726,-4.76193}, 325.931, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {28.6021,-40.4419,-4.76193}, 266.892, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {29.2581,-36.9473,-4.76193}, 297.471, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {43.5273,-19.666,-5.48809}, 158.976, false },
|
||||
{ "Land_Mil_WallBig_Corner_F", {46.8945,-18.7705,-4.74999}, 176.693, false },
|
||||
{ "Land_Mil_WallBig_Corner_F", {39.4521,-21.5269,-4.74999}, 62.9128, false },
|
||||
{ "Land_CncWall1_F", {41.8665,-34.8027,-4.74999}, 303.958, false },
|
||||
{ "Land_CncWall1_F", {38.8948,-40.6602,-4.74999}, 286.841, false },
|
||||
{ "Land_CncWall1_F", {47.3994,-30.9937,-4.74999}, 340.161, false },
|
||||
{ "Land_CampingTable_F", {44.1396,-34.7744,-4.74999}, 317.85, false },
|
||||
{ "Land_CampingTable_small_F", {43.0986,-34.4722,-4.74999}, 48.4779, false },
|
||||
{ "Land_HelipadEmpty_F", {24.6855,-20.6748,-4.74997}, 0, false },
|
||||
{ "Land_i_Garage_V2_F", {70.7117,-41.1255,-4.74999}, 174.781, true },
|
||||
{ "Land_i_Garage_V2_F", {62.7461,-58.4033,-4.74999}, 232.576, true },
|
||||
{ "Land_i_Garage_V2_F", {68.8613,-50.8916,-4.74999}, 205.119, true },
|
||||
{ "Land_i_Garage_V2_F", {53.3755,-62.0347,-4.74999}, 264.496, true },
|
||||
{ "Land_cmp_Tower_ruins_F", {59.3389,-63.6138,-4.74999}, 160.728, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {68.3745,-58.6689,-4.76193}, 144.359, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {70.3103,-56.3403,-4.76193}, 113.781, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {74.6587,-45.1123,-4.76193}, 85.1709, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {59.606,-66.4282,-4.76193}, 181.714, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {62.022,-64.8584,-6.23692}, 112.586, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {73.9607,-48.5811,-4.76193}, 115.749, false },
|
||||
{ "Land_Mil_WallBig_Corner_F", {56.2134,-67.0195,-4.74999}, 357.691, false },
|
||||
{ "Land_CncWall1_F", {56.1665,-55.0186,-4.74999}, 154.376, false },
|
||||
{ "Land_CncWall1_F", {64.158,-44.8062,-4.74999}, 99.8808, false },
|
||||
{ "Land_CncWall1_F", {61.3906,-50.9561,-4.74999}, 132.575, false },
|
||||
{ "Land_Atm_02_F", {64.0251,-40.6177,-4.74999}, 85.0679, false },
|
||||
{ "Land_i_Garage_V2_F", {59.8066,-25.4224,-4.74999}, 116.824, true },
|
||||
{ "Land_i_Garage_V2_F", {67.071,-31.7627,-4.74999}, 141.629, true },
|
||||
{ "Land_PowerPoleConcrete_F", {71.6643,-35.0068,-7.7541}, 154.907, false },
|
||||
{ "Land_LampSolar_F", {63.123,-38.8198,-4.74999}, 334.693, false },
|
||||
{ "Land_dp_transformer_F", {71.6509,-35.0024,-4.74999}, 248.56, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {73.9534,-36.3481,-4.76193}, 83.8634, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {54.1436,-19.7583,-4.76193}, 355.875, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {72.6313,-33.0283,-4.76193}, 52.7648, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {57.6519,-20.3071,-4.76193}, 26.4514, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {65.1558,-24.1499,-4.76193}, 28.0884, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {67.3975,-26.2656,-4.76193}, 50.8817, false },
|
||||
{ "Land_CncWall1_F", {63.6716,-38.4023,-4.74999}, 70.6127, false },
|
||||
{ "Land_CncWall1_F", {59.6399,-32.8857,-4.74999}, 45.0186, false },
|
||||
{ "Land_CncWall1_F", {53.8401,-30.1274,-4.74999}, 7.81649, false },
|
||||
{ "Land_TablePlastic_01_F", {59.3687,-35.062,-4.75}, 32.4742, false },
|
||||
{ "Land_HumanSkeleton_F", {64.2639,-24.9697,-4.74999}, 0, false },
|
||||
{ "Land_Volleyball_01_F", {63.8413,-25.4727,-4.74999}, 0, false },
|
||||
{ "Land_HelipadEmpty_F", {73.2156,-16.9272,-4.74998}, 0, false },
|
||||
{ "Land_HelipadEmpty_F", {-7.17188,-34.5039,-4.75}, 0, true },
|
||||
{ "Land_Factory_Conv2_F", {-27.3831,-10.0508,-4.75}, 160.944, true },
|
||||
{ "Land_i_Garage_V2_F", {-19.3713,-1.82568,-4.75}, 355.492, false },
|
||||
{ "Land_i_Garage_V2_F", {-8.40625,-17.5952,-4.75}, 297.007, false },
|
||||
{ "Land_i_Garage_V2_F", {-15.6597,-11.2949,-4.75}, 323.572, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {-2.47119,-23.3975,-4.76194}, 174.746, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-13.8042,-18.9365,-4.76194}, 205.067, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-22.5486,-6.37109,-4.76194}, 263.427, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-16.0625,-16.8755,-4.76194}, 235.64, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-21.137,-9.96924,-4.76194}, 232.849, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-6.18701,-22.6909,-4.76194}, 205.328, true },
|
||||
{ "Land_CncWall1_F", {-2.27295,-12.9634,-4.75}, 191.576, true },
|
||||
{ "Land_CncWall1_F", {-12.3088,-4.62061,-4.75}, 247.048, true },
|
||||
{ "Land_CncWall1_F", {-8.17139,-10.1084,-4.75}, 223.31, true },
|
||||
{ "Land_LampSolar_F", {-2.32715,-12.4058,-4.75}, 103.123, true },
|
||||
{ "Land_RattanTable_01_F", {-3.30396,-11.8892,-4.74999}, 0, true },
|
||||
{ "MetalBarrel_burning_F", {-11.5137,-2.75098,-4.75001}, 0, false },
|
||||
{ "Land_CampingChair_V2_F", {-11.7944,-4.27197,-4.74998}, 196.248, true },
|
||||
{ "Land_ChairPlastic_F", {-12.2952,-1.39551,-4.74999}, 33.536, true },
|
||||
{ "C_man_1", {-4.00146,-11.4497,-4.74856}, 8.80756, false },
|
||||
{ "Land_i_Garage_V2_F", {-1.81787,18.9033,-4.75}, 85.2151, false },
|
||||
{ "Land_i_Garage_V2_F", {-17.4939,7.91357,-4.75}, 25.8296, false },
|
||||
{ "Land_i_Garage_V2_F", {-11.2908,15.3286,-4.75}, 53.2947, false },
|
||||
{ "Land_cmp_Tower_F", {-7.80127,20.4507,-4.75}, 338.149, true },
|
||||
{ "Land_LampSolar_F", {-4.20825,11.0264,-4.75}, 241.694, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-18.9033,13.2422,-4.76194}, 295.353, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-16.8428,15.7354,-4.76194}, 325.931, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-23.2595,2.16602,-4.76194}, 266.892, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-22.6035,5.66064,-4.76194}, 297.471, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-8.33423,22.9419,-5.48809}, 158.976, true },
|
||||
{ "Land_Mil_WallBig_Corner_F", {-4.96704,23.8374,-4.75}, 176.693, true },
|
||||
{ "Land_Mil_WallBig_Corner_F", {-12.4094,21.0811,-4.75}, 62.9128, true },
|
||||
{ "Land_CncWall1_F", {-9.99512,7.80518,-4.75}, 303.958, true },
|
||||
{ "Land_CncWall1_F", {-12.9668,1.94775,-4.75}, 286.841, true },
|
||||
{ "Land_CncWall1_F", {-4.46216,11.6143,-4.75}, 340.161, true },
|
||||
{ "Land_CampingTable_F", {-7.72192,7.8335,-4.75}, 317.85, true },
|
||||
{ "Land_CampingTable_small_F", {-8.76294,8.13574,-4.75}, 48.4779, true },
|
||||
{ "Land_HelipadEmpty_F", {-27.176,21.9331,-4.74998}, 0, true },
|
||||
{ "C_man_1", {-8.10059,8.51221,-4.74856}, 135.807, false },
|
||||
{ "Land_i_Garage_V2_F", {10.8845,-15.7954,-4.75}, 232.576, false },
|
||||
{ "Land_i_Garage_V2_F", {16.9998,-8.28369,-4.75}, 205.119, false },
|
||||
{ "Land_i_Garage_V2_F", {1.51392,-19.4268,-4.75}, 264.496, false },
|
||||
{ "Land_i_Garage_V2_F", {18.8501,1.48242,-4.75}, 174.781, false },
|
||||
{ "Land_cmp_Tower_ruins_F", {7.47729,-21.0059,-4.75}, 160.728, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {18.4487,-13.7324,-4.76194}, 113.781, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {22.7971,-2.50439,-4.76194}, 85.1709, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {16.5129,-16.061,-4.76194}, 144.359, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {7.74438,-23.8203,-4.76194}, 181.714, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {10.1604,-22.2505,-6.23693}, 112.586, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {22.0991,-5.97314,-4.76194}, 115.749, true },
|
||||
{ "Land_Mil_WallBig_Corner_F", {4.35181,-24.4116,-4.75}, 357.691, true },
|
||||
{ "Land_CncWall1_F", {12.2964,-2.19824,-4.75}, 99.8808, true },
|
||||
{ "Land_CncWall1_F", {9.52905,-8.34814,-4.75}, 132.575, true },
|
||||
{ "Land_CncWall1_F", {4.30493,-12.4106,-4.75}, 154.376, true },
|
||||
{ "Land_Atm_02_F", {12.1636,1.99023,-4.75}, 85.0679, true },
|
||||
{ "Land_Icebox_F", {2.42456,-12.3418,-4.75}, 176.593, true },
|
||||
{ "Land_i_Garage_V2_F", {7.94507,17.1855,-4.75}, 116.824, false },
|
||||
{ "Land_i_Garage_V2_F", {15.2095,10.8452,-4.75}, 141.629, false },
|
||||
{ "Land_PowerPoleConcrete_F", {19.8027,7.60107,-7.75411}, 154.907, true },
|
||||
{ "Land_LampSolar_F", {11.2615,3.78809,-4.75}, 334.693, true },
|
||||
{ "Land_dp_transformer_F", {19.7893,7.60547,-4.75}, 248.56, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {22.0918,6.25977,-4.76194}, 83.8634, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {2.28198,22.8496,-4.76194}, 355.875, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {20.7698,9.57959,-4.76194}, 52.7648, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {5.79028,22.3008,-4.76194}, 26.4514, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {13.2942,18.458,-4.76194}, 28.0884, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {15.5359,16.3423,-4.76194}, 50.8817, true },
|
||||
{ "Land_CncWall1_F", {11.8101,4.20557,-4.75}, 70.6127, true },
|
||||
{ "Land_CncWall1_F", {7.77832,9.72217,-4.75}, 45.0186, true },
|
||||
{ "Land_CncWall1_F", {1.97852,12.4805,-4.75}, 7.81649, true },
|
||||
{ "Land_TablePlastic_01_F", {7.50708,7.5459,-4.75}, 32.4742, true },
|
||||
{ "Land_HumanSkeleton_F", {12.4023,17.6382,-4.75}, 0, true },
|
||||
{ "Land_Volleyball_01_F", {11.9797,17.1353,-4.75}, 0, true },
|
||||
{ "Land_HelipadEmpty_F", {21.354,25.6807,-4.74999}, 0, true },
|
||||
{ "C_man_1", {7.95239,8.18945,-4.74856}, 214.411, false }
|
||||
};
|
||||
west[] = {
|
||||
{ "Land_HelipadEmpty_F", {44.6897,-77.1118,-4.74999}, 0, false },
|
||||
{ "Land_Factory_Conv2_F", {24.4785,-52.6587,-4.74999}, 160.944, false },
|
||||
{ "Land_i_Garage_V2_F", {32.4902,-44.4336,-4.74999}, 355.492, true },
|
||||
{ "Land_i_Garage_V2_F", {43.4553,-60.2031,-4.74999}, 297.007, true },
|
||||
{ "Land_i_Garage_V2_F", {36.2019,-53.9028,-4.74999}, 323.572, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {49.3904,-66.0054,-4.76193}, 174.746, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {38.0574,-61.5444,-4.76193}, 205.067, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {29.313,-48.979,-4.76193}, 263.427, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {35.7991,-59.4834,-4.76193}, 235.64, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {30.7246,-52.5771,-4.76193}, 232.849, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {45.6746,-65.2988,-4.76193}, 205.328, false },
|
||||
{ "Land_CncWall1_F", {49.5886,-55.5713,-4.74999}, 191.576, false },
|
||||
{ "Land_CncWall1_F", {39.5527,-47.2285,-4.74999}, 247.048, false },
|
||||
{ "Land_CncWall1_F", {43.6902,-52.7163,-4.74999}, 223.31, false },
|
||||
{ "Land_LampSolar_F", {49.5344,-55.0137,-4.74999}, 103.123, false },
|
||||
{ "Land_RattanTable_01_F", {48.5576,-54.4971,-4.74998}, 0, false },
|
||||
{ "Land_i_Garage_V2_F", {50.0437,-23.7046,-4.74999}, 85.2151, true },
|
||||
{ "Land_i_Garage_V2_F", {34.3677,-34.6943,-4.74999}, 25.8296, true },
|
||||
{ "Land_i_Garage_V2_F", {40.5708,-27.2793,-4.74999}, 53.2947, true },
|
||||
{ "Land_cmp_Tower_F", {44.0603,-22.1572,-4.74999}, 338.149, false },
|
||||
{ "Land_LampSolar_F", {47.6533,-31.5815,-4.74999}, 241.694, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {32.9583,-29.3657,-4.76193}, 295.353, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {35.0188,-26.8726,-4.76193}, 325.931, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {28.6021,-40.4419,-4.76193}, 266.892, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {29.2581,-36.9473,-4.76193}, 297.471, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {43.5273,-19.666,-5.48809}, 158.976, false },
|
||||
{ "Land_Mil_WallBig_Corner_F", {46.8945,-18.7705,-4.74999}, 176.693, false },
|
||||
{ "Land_Mil_WallBig_Corner_F", {39.4521,-21.5269,-4.74999}, 62.9128, false },
|
||||
{ "Land_CncWall1_F", {41.8665,-34.8027,-4.74999}, 303.958, false },
|
||||
{ "Land_CncWall1_F", {38.8948,-40.6602,-4.74999}, 286.841, false },
|
||||
{ "Land_CncWall1_F", {47.3994,-30.9937,-4.74999}, 340.161, false },
|
||||
{ "Land_CampingTable_F", {44.1396,-34.7744,-4.74999}, 317.85, false },
|
||||
{ "Land_CampingTable_small_F", {43.0986,-34.4722,-4.74999}, 48.4779, false },
|
||||
{ "Land_HelipadEmpty_F", {24.6855,-20.6748,-4.74997}, 0, false },
|
||||
{ "Land_i_Garage_V2_F", {70.7117,-41.1255,-4.74999}, 174.781, true },
|
||||
{ "Land_i_Garage_V2_F", {62.7461,-58.4033,-4.74999}, 232.576, true },
|
||||
{ "Land_i_Garage_V2_F", {68.8613,-50.8916,-4.74999}, 205.119, true },
|
||||
{ "Land_i_Garage_V2_F", {53.3755,-62.0347,-4.74999}, 264.496, true },
|
||||
{ "Land_cmp_Tower_ruins_F", {59.3389,-63.6138,-4.74999}, 160.728, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {68.3745,-58.6689,-4.76193}, 144.359, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {70.3103,-56.3403,-4.76193}, 113.781, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {74.6587,-45.1123,-4.76193}, 85.1709, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {59.606,-66.4282,-4.76193}, 181.714, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {62.022,-64.8584,-6.23692}, 112.586, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {73.9607,-48.5811,-4.76193}, 115.749, false },
|
||||
{ "Land_Mil_WallBig_Corner_F", {56.2134,-67.0195,-4.74999}, 357.691, false },
|
||||
{ "Land_CncWall1_F", {56.1665,-55.0186,-4.74999}, 154.376, false },
|
||||
{ "Land_CncWall1_F", {64.158,-44.8062,-4.74999}, 99.8808, false },
|
||||
{ "Land_CncWall1_F", {61.3906,-50.9561,-4.74999}, 132.575, false },
|
||||
{ "Land_Atm_02_F", {64.0251,-40.6177,-4.74999}, 85.0679, false },
|
||||
{ "Land_i_Garage_V2_F", {59.8066,-25.4224,-4.74999}, 116.824, true },
|
||||
{ "Land_i_Garage_V2_F", {67.071,-31.7627,-4.74999}, 141.629, true },
|
||||
{ "Land_PowerPoleConcrete_F", {71.6643,-35.0068,-7.7541}, 154.907, false },
|
||||
{ "Land_LampSolar_F", {63.123,-38.8198,-4.74999}, 334.693, false },
|
||||
{ "Land_dp_transformer_F", {71.6509,-35.0024,-4.74999}, 248.56, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {73.9534,-36.3481,-4.76193}, 83.8634, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {54.1436,-19.7583,-4.76193}, 355.875, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {72.6313,-33.0283,-4.76193}, 52.7648, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {57.6519,-20.3071,-4.76193}, 26.4514, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {65.1558,-24.1499,-4.76193}, 28.0884, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {67.3975,-26.2656,-4.76193}, 50.8817, false },
|
||||
{ "Land_CncWall1_F", {63.6716,-38.4023,-4.74999}, 70.6127, false },
|
||||
{ "Land_CncWall1_F", {59.6399,-32.8857,-4.74999}, 45.0186, false },
|
||||
{ "Land_CncWall1_F", {53.8401,-30.1274,-4.74999}, 7.81649, false },
|
||||
{ "Land_TablePlastic_01_F", {59.3687,-35.062,-4.75}, 32.4742, false },
|
||||
{ "Land_HumanSkeleton_F", {64.2639,-24.9697,-4.74999}, 0, false },
|
||||
{ "Land_Volleyball_01_F", {63.8413,-25.4727,-4.74999}, 0, false },
|
||||
{ "Land_HelipadEmpty_F", {73.2156,-16.9272,-4.74998}, 0, false },
|
||||
{ "Land_HelipadEmpty_F", {-7.17188,-34.5039,-4.75}, 0, true },
|
||||
{ "Land_Factory_Conv2_F", {-27.3831,-10.0508,-4.75}, 160.944, true },
|
||||
{ "Land_i_Garage_V2_F", {-19.3713,-1.82568,-4.75}, 355.492, false },
|
||||
{ "Land_i_Garage_V2_F", {-8.40625,-17.5952,-4.75}, 297.007, false },
|
||||
{ "Land_i_Garage_V2_F", {-15.6597,-11.2949,-4.75}, 323.572, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {-2.47119,-23.3975,-4.76194}, 174.746, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-13.8042,-18.9365,-4.76194}, 205.067, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-22.5486,-6.37109,-4.76194}, 263.427, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-16.0625,-16.8755,-4.76194}, 235.64, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-21.137,-9.96924,-4.76194}, 232.849, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-6.18701,-22.6909,-4.76194}, 205.328, true },
|
||||
{ "Land_CncWall1_F", {-2.27295,-12.9634,-4.75}, 191.576, true },
|
||||
{ "Land_CncWall1_F", {-12.3088,-4.62061,-4.75}, 247.048, true },
|
||||
{ "Land_CncWall1_F", {-8.17139,-10.1084,-4.75}, 223.31, true },
|
||||
{ "Land_LampSolar_F", {-2.32715,-12.4058,-4.75}, 103.123, true },
|
||||
{ "Land_RattanTable_01_F", {-3.30396,-11.8892,-4.74999}, 0, true },
|
||||
{ "MetalBarrel_burning_F", {-11.5137,-2.75098,-4.75001}, 0, false },
|
||||
{ "Land_CampingChair_V2_F", {-11.7944,-4.27197,-4.74998}, 196.248, true },
|
||||
{ "Land_ChairPlastic_F", {-12.2952,-1.39551,-4.74999}, 33.536, true },
|
||||
{ "C_man_1", {-4.00146,-11.4497,-4.74856}, 8.80756, false },
|
||||
{ "Land_i_Garage_V2_F", {-1.81787,18.9033,-4.75}, 85.2151, false },
|
||||
{ "Land_i_Garage_V2_F", {-17.4939,7.91357,-4.75}, 25.8296, false },
|
||||
{ "Land_i_Garage_V2_F", {-11.2908,15.3286,-4.75}, 53.2947, false },
|
||||
{ "Land_cmp_Tower_F", {-7.80127,20.4507,-4.75}, 338.149, true },
|
||||
{ "Land_LampSolar_F", {-4.20825,11.0264,-4.75}, 241.694, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-18.9033,13.2422,-4.76194}, 295.353, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-16.8428,15.7354,-4.76194}, 325.931, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-23.2595,2.16602,-4.76194}, 266.892, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-22.6035,5.66064,-4.76194}, 297.471, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-8.33423,22.9419,-5.48809}, 158.976, true },
|
||||
{ "Land_Mil_WallBig_Corner_F", {-4.96704,23.8374,-4.75}, 176.693, true },
|
||||
{ "Land_Mil_WallBig_Corner_F", {-12.4094,21.0811,-4.75}, 62.9128, true },
|
||||
{ "Land_CncWall1_F", {-9.99512,7.80518,-4.75}, 303.958, true },
|
||||
{ "Land_CncWall1_F", {-12.9668,1.94775,-4.75}, 286.841, true },
|
||||
{ "Land_CncWall1_F", {-4.46216,11.6143,-4.75}, 340.161, true },
|
||||
{ "Land_CampingTable_F", {-7.72192,7.8335,-4.75}, 317.85, true },
|
||||
{ "Land_CampingTable_small_F", {-8.76294,8.13574,-4.75}, 48.4779, true },
|
||||
{ "Land_HelipadEmpty_F", {-27.176,21.9331,-4.74998}, 0, true },
|
||||
{ "C_man_1", {-8.10059,8.51221,-4.74856}, 135.807, false },
|
||||
{ "Land_i_Garage_V2_F", {10.8845,-15.7954,-4.75}, 232.576, false },
|
||||
{ "Land_i_Garage_V2_F", {16.9998,-8.28369,-4.75}, 205.119, false },
|
||||
{ "Land_i_Garage_V2_F", {1.51392,-19.4268,-4.75}, 264.496, false },
|
||||
{ "Land_i_Garage_V2_F", {18.8501,1.48242,-4.75}, 174.781, false },
|
||||
{ "Land_cmp_Tower_ruins_F", {7.47729,-21.0059,-4.75}, 160.728, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {18.4487,-13.7324,-4.76194}, 113.781, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {22.7971,-2.50439,-4.76194}, 85.1709, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {16.5129,-16.061,-4.76194}, 144.359, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {7.74438,-23.8203,-4.76194}, 181.714, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {10.1604,-22.2505,-6.23693}, 112.586, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {22.0991,-5.97314,-4.76194}, 115.749, true },
|
||||
{ "Land_Mil_WallBig_Corner_F", {4.35181,-24.4116,-4.75}, 357.691, true },
|
||||
{ "Land_CncWall1_F", {12.2964,-2.19824,-4.75}, 99.8808, true },
|
||||
{ "Land_CncWall1_F", {9.52905,-8.34814,-4.75}, 132.575, true },
|
||||
{ "Land_CncWall1_F", {4.30493,-12.4106,-4.75}, 154.376, true },
|
||||
{ "Land_Atm_02_F", {12.1636,1.99023,-4.75}, 85.0679, true },
|
||||
{ "Land_Icebox_F", {2.42456,-12.3418,-4.75}, 176.593, true },
|
||||
{ "Land_i_Garage_V2_F", {7.94507,17.1855,-4.75}, 116.824, false },
|
||||
{ "Land_i_Garage_V2_F", {15.2095,10.8452,-4.75}, 141.629, false },
|
||||
{ "Land_PowerPoleConcrete_F", {19.8027,7.60107,-7.75411}, 154.907, true },
|
||||
{ "Land_LampSolar_F", {11.2615,3.78809,-4.75}, 334.693, true },
|
||||
{ "Land_dp_transformer_F", {19.7893,7.60547,-4.75}, 248.56, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {22.0918,6.25977,-4.76194}, 83.8634, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {2.28198,22.8496,-4.76194}, 355.875, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {20.7698,9.57959,-4.76194}, 52.7648, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {5.79028,22.3008,-4.76194}, 26.4514, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {13.2942,18.458,-4.76194}, 28.0884, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {15.5359,16.3423,-4.76194}, 50.8817, true },
|
||||
{ "Land_CncWall1_F", {11.8101,4.20557,-4.75}, 70.6127, true },
|
||||
{ "Land_CncWall1_F", {7.77832,9.72217,-4.75}, 45.0186, true },
|
||||
{ "Land_CncWall1_F", {1.97852,12.4805,-4.75}, 7.81649, true },
|
||||
{ "Land_TablePlastic_01_F", {7.50708,7.5459,-4.75}, 32.4742, true },
|
||||
{ "Land_HumanSkeleton_F", {12.4023,17.6382,-4.75}, 0, true },
|
||||
{ "Land_Volleyball_01_F", {11.9797,17.1353,-4.75}, 0, true },
|
||||
{ "Land_HelipadEmpty_F", {21.354,25.6807,-4.74999}, 0, true },
|
||||
{ "C_man_1", {7.95239,8.18945,-4.74856}, 214.411, false }
|
||||
};
|
||||
north[] = {
|
||||
{ "Land_HelipadEmpty_F", {44.6897,-77.1118,-4.74999}, 0, false },
|
||||
{ "Land_Factory_Conv2_F", {24.4785,-52.6587,-4.74999}, 160.944, false },
|
||||
{ "Land_i_Garage_V2_F", {32.4902,-44.4336,-4.74999}, 355.492, true },
|
||||
{ "Land_i_Garage_V2_F", {43.4553,-60.2031,-4.74999}, 297.007, true },
|
||||
{ "Land_i_Garage_V2_F", {36.2019,-53.9028,-4.74999}, 323.572, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {49.3904,-66.0054,-4.76193}, 174.746, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {38.0574,-61.5444,-4.76193}, 205.067, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {29.313,-48.979,-4.76193}, 263.427, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {35.7991,-59.4834,-4.76193}, 235.64, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {30.7246,-52.5771,-4.76193}, 232.849, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {45.6746,-65.2988,-4.76193}, 205.328, false },
|
||||
{ "Land_CncWall1_F", {49.5886,-55.5713,-4.74999}, 191.576, false },
|
||||
{ "Land_CncWall1_F", {39.5527,-47.2285,-4.74999}, 247.048, false },
|
||||
{ "Land_CncWall1_F", {43.6902,-52.7163,-4.74999}, 223.31, false },
|
||||
{ "Land_LampSolar_F", {49.5344,-55.0137,-4.74999}, 103.123, false },
|
||||
{ "Land_RattanTable_01_F", {48.5576,-54.4971,-4.74998}, 0, false },
|
||||
{ "Land_i_Garage_V2_F", {50.0437,-23.7046,-4.74999}, 85.2151, true },
|
||||
{ "Land_i_Garage_V2_F", {34.3677,-34.6943,-4.74999}, 25.8296, true },
|
||||
{ "Land_i_Garage_V2_F", {40.5708,-27.2793,-4.74999}, 53.2947, true },
|
||||
{ "Land_cmp_Tower_F", {44.0603,-22.1572,-4.74999}, 338.149, false },
|
||||
{ "Land_LampSolar_F", {47.6533,-31.5815,-4.74999}, 241.694, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {32.9583,-29.3657,-4.76193}, 295.353, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {35.0188,-26.8726,-4.76193}, 325.931, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {28.6021,-40.4419,-4.76193}, 266.892, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {29.2581,-36.9473,-4.76193}, 297.471, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {43.5273,-19.666,-5.48809}, 158.976, false },
|
||||
{ "Land_Mil_WallBig_Corner_F", {46.8945,-18.7705,-4.74999}, 176.693, false },
|
||||
{ "Land_Mil_WallBig_Corner_F", {39.4521,-21.5269,-4.74999}, 62.9128, false },
|
||||
{ "Land_CncWall1_F", {41.8665,-34.8027,-4.74999}, 303.958, false },
|
||||
{ "Land_CncWall1_F", {38.8948,-40.6602,-4.74999}, 286.841, false },
|
||||
{ "Land_CncWall1_F", {47.3994,-30.9937,-4.74999}, 340.161, false },
|
||||
{ "Land_CampingTable_F", {44.1396,-34.7744,-4.74999}, 317.85, false },
|
||||
{ "Land_CampingTable_small_F", {43.0986,-34.4722,-4.74999}, 48.4779, false },
|
||||
{ "Land_HelipadEmpty_F", {24.6855,-20.6748,-4.74997}, 0, false },
|
||||
{ "Land_i_Garage_V2_F", {70.7117,-41.1255,-4.74999}, 174.781, true },
|
||||
{ "Land_i_Garage_V2_F", {62.7461,-58.4033,-4.74999}, 232.576, true },
|
||||
{ "Land_i_Garage_V2_F", {68.8613,-50.8916,-4.74999}, 205.119, true },
|
||||
{ "Land_i_Garage_V2_F", {53.3755,-62.0347,-4.74999}, 264.496, true },
|
||||
{ "Land_cmp_Tower_ruins_F", {59.3389,-63.6138,-4.74999}, 160.728, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {68.3745,-58.6689,-4.76193}, 144.359, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {70.3103,-56.3403,-4.76193}, 113.781, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {74.6587,-45.1123,-4.76193}, 85.1709, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {59.606,-66.4282,-4.76193}, 181.714, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {62.022,-64.8584,-6.23692}, 112.586, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {73.9607,-48.5811,-4.76193}, 115.749, false },
|
||||
{ "Land_Mil_WallBig_Corner_F", {56.2134,-67.0195,-4.74999}, 357.691, false },
|
||||
{ "Land_CncWall1_F", {56.1665,-55.0186,-4.74999}, 154.376, false },
|
||||
{ "Land_CncWall1_F", {64.158,-44.8062,-4.74999}, 99.8808, false },
|
||||
{ "Land_CncWall1_F", {61.3906,-50.9561,-4.74999}, 132.575, false },
|
||||
{ "Land_Atm_02_F", {64.0251,-40.6177,-4.74999}, 85.0679, false },
|
||||
{ "Land_i_Garage_V2_F", {59.8066,-25.4224,-4.74999}, 116.824, true },
|
||||
{ "Land_i_Garage_V2_F", {67.071,-31.7627,-4.74999}, 141.629, true },
|
||||
{ "Land_PowerPoleConcrete_F", {71.6643,-35.0068,-7.7541}, 154.907, false },
|
||||
{ "Land_LampSolar_F", {63.123,-38.8198,-4.74999}, 334.693, false },
|
||||
{ "Land_dp_transformer_F", {71.6509,-35.0024,-4.74999}, 248.56, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {73.9534,-36.3481,-4.76193}, 83.8634, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {54.1436,-19.7583,-4.76193}, 355.875, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {72.6313,-33.0283,-4.76193}, 52.7648, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {57.6519,-20.3071,-4.76193}, 26.4514, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {65.1558,-24.1499,-4.76193}, 28.0884, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {67.3975,-26.2656,-4.76193}, 50.8817, false },
|
||||
{ "Land_CncWall1_F", {63.6716,-38.4023,-4.74999}, 70.6127, false },
|
||||
{ "Land_CncWall1_F", {59.6399,-32.8857,-4.74999}, 45.0186, false },
|
||||
{ "Land_CncWall1_F", {53.8401,-30.1274,-4.74999}, 7.81649, false },
|
||||
{ "Land_TablePlastic_01_F", {59.3687,-35.062,-4.75}, 32.4742, false },
|
||||
{ "Land_HumanSkeleton_F", {64.2639,-24.9697,-4.74999}, 0, false },
|
||||
{ "Land_Volleyball_01_F", {63.8413,-25.4727,-4.74999}, 0, false },
|
||||
{ "Land_HelipadEmpty_F", {73.2156,-16.9272,-4.74998}, 0, false },
|
||||
{ "Land_HelipadEmpty_F", {-7.17188,-34.5039,-4.75}, 0, true },
|
||||
{ "Land_Factory_Conv2_F", {-27.3831,-10.0508,-4.75}, 160.944, true },
|
||||
{ "Land_i_Garage_V2_F", {-19.3713,-1.82568,-4.75}, 355.492, false },
|
||||
{ "Land_i_Garage_V2_F", {-8.40625,-17.5952,-4.75}, 297.007, false },
|
||||
{ "Land_i_Garage_V2_F", {-15.6597,-11.2949,-4.75}, 323.572, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {-2.47119,-23.3975,-4.76194}, 174.746, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-13.8042,-18.9365,-4.76194}, 205.067, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-22.5486,-6.37109,-4.76194}, 263.427, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-16.0625,-16.8755,-4.76194}, 235.64, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-21.137,-9.96924,-4.76194}, 232.849, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-6.18701,-22.6909,-4.76194}, 205.328, true },
|
||||
{ "Land_CncWall1_F", {-2.27295,-12.9634,-4.75}, 191.576, true },
|
||||
{ "Land_CncWall1_F", {-12.3088,-4.62061,-4.75}, 247.048, true },
|
||||
{ "Land_CncWall1_F", {-8.17139,-10.1084,-4.75}, 223.31, true },
|
||||
{ "Land_LampSolar_F", {-2.32715,-12.4058,-4.75}, 103.123, true },
|
||||
{ "Land_RattanTable_01_F", {-3.30396,-11.8892,-4.74999}, 0, true },
|
||||
{ "MetalBarrel_burning_F", {-11.5137,-2.75098,-4.75001}, 0, false },
|
||||
{ "Land_CampingChair_V2_F", {-11.7944,-4.27197,-4.74998}, 196.248, true },
|
||||
{ "Land_ChairPlastic_F", {-12.2952,-1.39551,-4.74999}, 33.536, true },
|
||||
{ "C_man_1", {-4.00146,-11.4497,-4.74856}, 8.80756, false },
|
||||
{ "Land_i_Garage_V2_F", {-1.81787,18.9033,-4.75}, 85.2151, false },
|
||||
{ "Land_i_Garage_V2_F", {-17.4939,7.91357,-4.75}, 25.8296, false },
|
||||
{ "Land_i_Garage_V2_F", {-11.2908,15.3286,-4.75}, 53.2947, false },
|
||||
{ "Land_cmp_Tower_F", {-7.80127,20.4507,-4.75}, 338.149, true },
|
||||
{ "Land_LampSolar_F", {-4.20825,11.0264,-4.75}, 241.694, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-18.9033,13.2422,-4.76194}, 295.353, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-16.8428,15.7354,-4.76194}, 325.931, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-23.2595,2.16602,-4.76194}, 266.892, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-22.6035,5.66064,-4.76194}, 297.471, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-8.33423,22.9419,-5.48809}, 158.976, true },
|
||||
{ "Land_Mil_WallBig_Corner_F", {-4.96704,23.8374,-4.75}, 176.693, true },
|
||||
{ "Land_Mil_WallBig_Corner_F", {-12.4094,21.0811,-4.75}, 62.9128, true },
|
||||
{ "Land_CncWall1_F", {-9.99512,7.80518,-4.75}, 303.958, true },
|
||||
{ "Land_CncWall1_F", {-12.9668,1.94775,-4.75}, 286.841, true },
|
||||
{ "Land_CncWall1_F", {-4.46216,11.6143,-4.75}, 340.161, true },
|
||||
{ "Land_CampingTable_F", {-7.72192,7.8335,-4.75}, 317.85, true },
|
||||
{ "Land_CampingTable_small_F", {-8.76294,8.13574,-4.75}, 48.4779, true },
|
||||
{ "Land_HelipadEmpty_F", {-27.176,21.9331,-4.74998}, 0, true },
|
||||
{ "C_man_1", {-8.10059,8.51221,-4.74856}, 135.807, false },
|
||||
{ "Land_i_Garage_V2_F", {10.8845,-15.7954,-4.75}, 232.576, false },
|
||||
{ "Land_i_Garage_V2_F", {16.9998,-8.28369,-4.75}, 205.119, false },
|
||||
{ "Land_i_Garage_V2_F", {1.51392,-19.4268,-4.75}, 264.496, false },
|
||||
{ "Land_i_Garage_V2_F", {18.8501,1.48242,-4.75}, 174.781, false },
|
||||
{ "Land_cmp_Tower_ruins_F", {7.47729,-21.0059,-4.75}, 160.728, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {18.4487,-13.7324,-4.76194}, 113.781, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {22.7971,-2.50439,-4.76194}, 85.1709, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {16.5129,-16.061,-4.76194}, 144.359, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {7.74438,-23.8203,-4.76194}, 181.714, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {10.1604,-22.2505,-6.23693}, 112.586, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {22.0991,-5.97314,-4.76194}, 115.749, true },
|
||||
{ "Land_Mil_WallBig_Corner_F", {4.35181,-24.4116,-4.75}, 357.691, true },
|
||||
{ "Land_CncWall1_F", {12.2964,-2.19824,-4.75}, 99.8808, true },
|
||||
{ "Land_CncWall1_F", {9.52905,-8.34814,-4.75}, 132.575, true },
|
||||
{ "Land_CncWall1_F", {4.30493,-12.4106,-4.75}, 154.376, true },
|
||||
{ "Land_Atm_02_F", {12.1636,1.99023,-4.75}, 85.0679, true },
|
||||
{ "Land_Icebox_F", {2.42456,-12.3418,-4.75}, 176.593, true },
|
||||
{ "Land_i_Garage_V2_F", {7.94507,17.1855,-4.75}, 116.824, false },
|
||||
{ "Land_i_Garage_V2_F", {15.2095,10.8452,-4.75}, 141.629, false },
|
||||
{ "Land_PowerPoleConcrete_F", {19.8027,7.60107,-7.75411}, 154.907, true },
|
||||
{ "Land_LampSolar_F", {11.2615,3.78809,-4.75}, 334.693, true },
|
||||
{ "Land_dp_transformer_F", {19.7893,7.60547,-4.75}, 248.56, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {22.0918,6.25977,-4.76194}, 83.8634, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {2.28198,22.8496,-4.76194}, 355.875, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {20.7698,9.57959,-4.76194}, 52.7648, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {5.79028,22.3008,-4.76194}, 26.4514, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {13.2942,18.458,-4.76194}, 28.0884, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {15.5359,16.3423,-4.76194}, 50.8817, true },
|
||||
{ "Land_CncWall1_F", {11.8101,4.20557,-4.75}, 70.6127, true },
|
||||
{ "Land_CncWall1_F", {7.77832,9.72217,-4.75}, 45.0186, true },
|
||||
{ "Land_CncWall1_F", {1.97852,12.4805,-4.75}, 7.81649, true },
|
||||
{ "Land_TablePlastic_01_F", {7.50708,7.5459,-4.75}, 32.4742, true },
|
||||
{ "Land_HumanSkeleton_F", {12.4023,17.6382,-4.75}, 0, true },
|
||||
{ "Land_Volleyball_01_F", {11.9797,17.1353,-4.75}, 0, true },
|
||||
{ "Land_HelipadEmpty_F", {21.354,25.6807,-4.74999}, 0, true },
|
||||
{ "C_man_1", {7.95239,8.18945,-4.74856}, 214.411, false }
|
||||
};
|
||||
south[] = {
|
||||
{ "Land_HelipadEmpty_F", {44.6897,-77.1118,-4.74999}, 0, false },
|
||||
{ "Land_Factory_Conv2_F", {24.4785,-52.6587,-4.74999}, 160.944, false },
|
||||
{ "Land_i_Garage_V2_F", {32.4902,-44.4336,-4.74999}, 355.492, true },
|
||||
{ "Land_i_Garage_V2_F", {43.4553,-60.2031,-4.74999}, 297.007, true },
|
||||
{ "Land_i_Garage_V2_F", {36.2019,-53.9028,-4.74999}, 323.572, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {49.3904,-66.0054,-4.76193}, 174.746, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {38.0574,-61.5444,-4.76193}, 205.067, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {29.313,-48.979,-4.76193}, 263.427, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {35.7991,-59.4834,-4.76193}, 235.64, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {30.7246,-52.5771,-4.76193}, 232.849, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {45.6746,-65.2988,-4.76193}, 205.328, false },
|
||||
{ "Land_CncWall1_F", {49.5886,-55.5713,-4.74999}, 191.576, false },
|
||||
{ "Land_CncWall1_F", {39.5527,-47.2285,-4.74999}, 247.048, false },
|
||||
{ "Land_CncWall1_F", {43.6902,-52.7163,-4.74999}, 223.31, false },
|
||||
{ "Land_LampSolar_F", {49.5344,-55.0137,-4.74999}, 103.123, false },
|
||||
{ "Land_RattanTable_01_F", {48.5576,-54.4971,-4.74998}, 0, false },
|
||||
{ "Land_i_Garage_V2_F", {50.0437,-23.7046,-4.74999}, 85.2151, true },
|
||||
{ "Land_i_Garage_V2_F", {34.3677,-34.6943,-4.74999}, 25.8296, true },
|
||||
{ "Land_i_Garage_V2_F", {40.5708,-27.2793,-4.74999}, 53.2947, true },
|
||||
{ "Land_cmp_Tower_F", {44.0603,-22.1572,-4.74999}, 338.149, false },
|
||||
{ "Land_LampSolar_F", {47.6533,-31.5815,-4.74999}, 241.694, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {32.9583,-29.3657,-4.76193}, 295.353, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {35.0188,-26.8726,-4.76193}, 325.931, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {28.6021,-40.4419,-4.76193}, 266.892, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {29.2581,-36.9473,-4.76193}, 297.471, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {43.5273,-19.666,-5.48809}, 158.976, false },
|
||||
{ "Land_Mil_WallBig_Corner_F", {46.8945,-18.7705,-4.74999}, 176.693, false },
|
||||
{ "Land_Mil_WallBig_Corner_F", {39.4521,-21.5269,-4.74999}, 62.9128, false },
|
||||
{ "Land_CncWall1_F", {41.8665,-34.8027,-4.74999}, 303.958, false },
|
||||
{ "Land_CncWall1_F", {38.8948,-40.6602,-4.74999}, 286.841, false },
|
||||
{ "Land_CncWall1_F", {47.3994,-30.9937,-4.74999}, 340.161, false },
|
||||
{ "Land_CampingTable_F", {44.1396,-34.7744,-4.74999}, 317.85, false },
|
||||
{ "Land_CampingTable_small_F", {43.0986,-34.4722,-4.74999}, 48.4779, false },
|
||||
{ "Land_HelipadEmpty_F", {24.6855,-20.6748,-4.74997}, 0, false },
|
||||
{ "Land_i_Garage_V2_F", {70.7117,-41.1255,-4.74999}, 174.781, true },
|
||||
{ "Land_i_Garage_V2_F", {62.7461,-58.4033,-4.74999}, 232.576, true },
|
||||
{ "Land_i_Garage_V2_F", {68.8613,-50.8916,-4.74999}, 205.119, true },
|
||||
{ "Land_i_Garage_V2_F", {53.3755,-62.0347,-4.74999}, 264.496, true },
|
||||
{ "Land_cmp_Tower_ruins_F", {59.3389,-63.6138,-4.74999}, 160.728, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {68.3745,-58.6689,-4.76193}, 144.359, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {70.3103,-56.3403,-4.76193}, 113.781, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {74.6587,-45.1123,-4.76193}, 85.1709, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {59.606,-66.4282,-4.76193}, 181.714, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {62.022,-64.8584,-6.23692}, 112.586, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {73.9607,-48.5811,-4.76193}, 115.749, false },
|
||||
{ "Land_Mil_WallBig_Corner_F", {56.2134,-67.0195,-4.74999}, 357.691, false },
|
||||
{ "Land_CncWall1_F", {56.1665,-55.0186,-4.74999}, 154.376, false },
|
||||
{ "Land_CncWall1_F", {64.158,-44.8062,-4.74999}, 99.8808, false },
|
||||
{ "Land_CncWall1_F", {61.3906,-50.9561,-4.74999}, 132.575, false },
|
||||
{ "Land_Atm_02_F", {64.0251,-40.6177,-4.74999}, 85.0679, false },
|
||||
{ "Land_i_Garage_V2_F", {59.8066,-25.4224,-4.74999}, 116.824, true },
|
||||
{ "Land_i_Garage_V2_F", {67.071,-31.7627,-4.74999}, 141.629, true },
|
||||
{ "Land_PowerPoleConcrete_F", {71.6643,-35.0068,-7.7541}, 154.907, false },
|
||||
{ "Land_LampSolar_F", {63.123,-38.8198,-4.74999}, 334.693, false },
|
||||
{ "Land_dp_transformer_F", {71.6509,-35.0024,-4.74999}, 248.56, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {73.9534,-36.3481,-4.76193}, 83.8634, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {54.1436,-19.7583,-4.76193}, 355.875, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {72.6313,-33.0283,-4.76193}, 52.7648, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {57.6519,-20.3071,-4.76193}, 26.4514, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {65.1558,-24.1499,-4.76193}, 28.0884, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {67.3975,-26.2656,-4.76193}, 50.8817, false },
|
||||
{ "Land_CncWall1_F", {63.6716,-38.4023,-4.74999}, 70.6127, false },
|
||||
{ "Land_CncWall1_F", {59.6399,-32.8857,-4.74999}, 45.0186, false },
|
||||
{ "Land_CncWall1_F", {53.8401,-30.1274,-4.74999}, 7.81649, false },
|
||||
{ "Land_TablePlastic_01_F", {59.3687,-35.062,-4.75}, 32.4742, false },
|
||||
{ "Land_HumanSkeleton_F", {64.2639,-24.9697,-4.74999}, 0, false },
|
||||
{ "Land_Volleyball_01_F", {63.8413,-25.4727,-4.74999}, 0, false },
|
||||
{ "Land_HelipadEmpty_F", {73.2156,-16.9272,-4.74998}, 0, false },
|
||||
{ "Land_HelipadEmpty_F", {-7.17188,-34.5039,-4.75}, 0, true },
|
||||
{ "Land_Factory_Conv2_F", {-27.3831,-10.0508,-4.75}, 160.944, true },
|
||||
{ "Land_i_Garage_V2_F", {-19.3713,-1.82568,-4.75}, 355.492, false },
|
||||
{ "Land_i_Garage_V2_F", {-8.40625,-17.5952,-4.75}, 297.007, false },
|
||||
{ "Land_i_Garage_V2_F", {-15.6597,-11.2949,-4.75}, 323.572, false },
|
||||
{ "Land_Mil_WallBig_4m_F", {-2.47119,-23.3975,-4.76194}, 174.746, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-13.8042,-18.9365,-4.76194}, 205.067, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-22.5486,-6.37109,-4.76194}, 263.427, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-16.0625,-16.8755,-4.76194}, 235.64, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-21.137,-9.96924,-4.76194}, 232.849, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-6.18701,-22.6909,-4.76194}, 205.328, true },
|
||||
{ "Land_CncWall1_F", {-2.27295,-12.9634,-4.75}, 191.576, true },
|
||||
{ "Land_CncWall1_F", {-12.3088,-4.62061,-4.75}, 247.048, true },
|
||||
{ "Land_CncWall1_F", {-8.17139,-10.1084,-4.75}, 223.31, true },
|
||||
{ "Land_LampSolar_F", {-2.32715,-12.4058,-4.75}, 103.123, true },
|
||||
{ "Land_RattanTable_01_F", {-3.30396,-11.8892,-4.74999}, 0, true },
|
||||
{ "MetalBarrel_burning_F", {-11.5137,-2.75098,-4.75001}, 0, false },
|
||||
{ "Land_CampingChair_V2_F", {-11.7944,-4.27197,-4.74998}, 196.248, true },
|
||||
{ "Land_ChairPlastic_F", {-12.2952,-1.39551,-4.74999}, 33.536, true },
|
||||
{ "C_man_1", {-4.00146,-11.4497,-4.74856}, 8.80756, false },
|
||||
{ "Land_i_Garage_V2_F", {-1.81787,18.9033,-4.75}, 85.2151, false },
|
||||
{ "Land_i_Garage_V2_F", {-17.4939,7.91357,-4.75}, 25.8296, false },
|
||||
{ "Land_i_Garage_V2_F", {-11.2908,15.3286,-4.75}, 53.2947, false },
|
||||
{ "Land_cmp_Tower_F", {-7.80127,20.4507,-4.75}, 338.149, true },
|
||||
{ "Land_LampSolar_F", {-4.20825,11.0264,-4.75}, 241.694, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-18.9033,13.2422,-4.76194}, 295.353, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-16.8428,15.7354,-4.76194}, 325.931, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-23.2595,2.16602,-4.76194}, 266.892, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-22.6035,5.66064,-4.76194}, 297.471, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {-8.33423,22.9419,-5.48809}, 158.976, true },
|
||||
{ "Land_Mil_WallBig_Corner_F", {-4.96704,23.8374,-4.75}, 176.693, true },
|
||||
{ "Land_Mil_WallBig_Corner_F", {-12.4094,21.0811,-4.75}, 62.9128, true },
|
||||
{ "Land_CncWall1_F", {-9.99512,7.80518,-4.75}, 303.958, true },
|
||||
{ "Land_CncWall1_F", {-12.9668,1.94775,-4.75}, 286.841, true },
|
||||
{ "Land_CncWall1_F", {-4.46216,11.6143,-4.75}, 340.161, true },
|
||||
{ "Land_CampingTable_F", {-7.72192,7.8335,-4.75}, 317.85, true },
|
||||
{ "Land_CampingTable_small_F", {-8.76294,8.13574,-4.75}, 48.4779, true },
|
||||
{ "Land_HelipadEmpty_F", {-27.176,21.9331,-4.74998}, 0, true },
|
||||
{ "C_man_1", {-8.10059,8.51221,-4.74856}, 135.807, false },
|
||||
{ "Land_i_Garage_V2_F", {10.8845,-15.7954,-4.75}, 232.576, false },
|
||||
{ "Land_i_Garage_V2_F", {16.9998,-8.28369,-4.75}, 205.119, false },
|
||||
{ "Land_i_Garage_V2_F", {1.51392,-19.4268,-4.75}, 264.496, false },
|
||||
{ "Land_i_Garage_V2_F", {18.8501,1.48242,-4.75}, 174.781, false },
|
||||
{ "Land_cmp_Tower_ruins_F", {7.47729,-21.0059,-4.75}, 160.728, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {18.4487,-13.7324,-4.76194}, 113.781, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {22.7971,-2.50439,-4.76194}, 85.1709, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {16.5129,-16.061,-4.76194}, 144.359, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {7.74438,-23.8203,-4.76194}, 181.714, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {10.1604,-22.2505,-6.23693}, 112.586, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {22.0991,-5.97314,-4.76194}, 115.749, true },
|
||||
{ "Land_Mil_WallBig_Corner_F", {4.35181,-24.4116,-4.75}, 357.691, true },
|
||||
{ "Land_CncWall1_F", {12.2964,-2.19824,-4.75}, 99.8808, true },
|
||||
{ "Land_CncWall1_F", {9.52905,-8.34814,-4.75}, 132.575, true },
|
||||
{ "Land_CncWall1_F", {4.30493,-12.4106,-4.75}, 154.376, true },
|
||||
{ "Land_Atm_02_F", {12.1636,1.99023,-4.75}, 85.0679, true },
|
||||
{ "Land_Icebox_F", {2.42456,-12.3418,-4.75}, 176.593, true },
|
||||
{ "Land_i_Garage_V2_F", {7.94507,17.1855,-4.75}, 116.824, false },
|
||||
{ "Land_i_Garage_V2_F", {15.2095,10.8452,-4.75}, 141.629, false },
|
||||
{ "Land_PowerPoleConcrete_F", {19.8027,7.60107,-7.75411}, 154.907, true },
|
||||
{ "Land_LampSolar_F", {11.2615,3.78809,-4.75}, 334.693, true },
|
||||
{ "Land_dp_transformer_F", {19.7893,7.60547,-4.75}, 248.56, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {22.0918,6.25977,-4.76194}, 83.8634, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {2.28198,22.8496,-4.76194}, 355.875, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {20.7698,9.57959,-4.76194}, 52.7648, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {5.79028,22.3008,-4.76194}, 26.4514, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {13.2942,18.458,-4.76194}, 28.0884, true },
|
||||
{ "Land_Mil_WallBig_4m_F", {15.5359,16.3423,-4.76194}, 50.8817, true },
|
||||
{ "Land_CncWall1_F", {11.8101,4.20557,-4.75}, 70.6127, true },
|
||||
{ "Land_CncWall1_F", {7.77832,9.72217,-4.75}, 45.0186, true },
|
||||
{ "Land_CncWall1_F", {1.97852,12.4805,-4.75}, 7.81649, true },
|
||||
{ "Land_TablePlastic_01_F", {7.50708,7.5459,-4.75}, 32.4742, true },
|
||||
{ "Land_HumanSkeleton_F", {12.4023,17.6382,-4.75}, 0, true },
|
||||
{ "Land_Volleyball_01_F", {11.9797,17.1353,-4.75}, 0, true },
|
||||
{ "Land_HelipadEmpty_F", {21.354,25.6807,-4.74999}, 0, true },
|
||||
{ "C_man_1", {7.95239,8.18945,-4.74856}, 214.411, false }
|
||||
};
|
||||
};
|
||||
|
@ -2051,7 +2051,7 @@ class Mission
|
||||
};
|
||||
class Markers
|
||||
{
|
||||
items=3;
|
||||
items=4;
|
||||
class Item0
|
||||
{
|
||||
position[]={1911.549,337.52249,1911.0021};
|
||||
@ -2072,6 +2072,13 @@ class Mission
|
||||
type="Empty";
|
||||
angle=23.608498;
|
||||
};
|
||||
class Item3
|
||||
{
|
||||
position[]={1028.3756,371.85095,3152.8765};
|
||||
name="north";
|
||||
type="Empty";
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
class Intro
|
||||
|
@ -2051,7 +2051,7 @@ class Mission
|
||||
};
|
||||
class Markers
|
||||
{
|
||||
items=3;
|
||||
items=4;
|
||||
class Item0
|
||||
{
|
||||
position[]={1012.0472,72.656128,1032.3983};
|
||||
@ -2072,6 +2072,12 @@ class Mission
|
||||
type="Empty";
|
||||
angle=23.608498;
|
||||
};
|
||||
class Item3
|
||||
{
|
||||
position[]={1000.0581,78.919403,999.62445};
|
||||
name="south";
|
||||
type="Empty";
|
||||
};
|
||||
};
|
||||
};
|
||||
class Intro
|
||||
|
@ -2051,7 +2051,7 @@ class Mission
|
||||
};
|
||||
class Markers
|
||||
{
|
||||
items=3;
|
||||
items=7;
|
||||
class Item0
|
||||
{
|
||||
position[]={3142.9163,516.2464,3143.6187};
|
||||
@ -2072,6 +2072,30 @@ class Mission
|
||||
type="Empty";
|
||||
angle=23.608498;
|
||||
};
|
||||
class Item3
|
||||
{
|
||||
position[]={4499.1489,179.04671,6384.4321};
|
||||
name="north";
|
||||
type="Empty";
|
||||
};
|
||||
class Item4
|
||||
{
|
||||
position[]={5992.3813,371.16095,4527.5952};
|
||||
name="east";
|
||||
type="Empty";
|
||||
};
|
||||
class Item5
|
||||
{
|
||||
position[]={4.1384859,242.85356,2824.0986};
|
||||
name="west";
|
||||
type="Empty";
|
||||
};
|
||||
class Item6
|
||||
{
|
||||
position[]={3163.2278,337.64359,575.92761};
|
||||
name="south";
|
||||
type="Empty";
|
||||
};
|
||||
};
|
||||
};
|
||||
class Intro
|
||||
|
@ -2051,7 +2051,7 @@ class Mission
|
||||
};
|
||||
class Markers
|
||||
{
|
||||
items=3;
|
||||
items=4;
|
||||
class Item0
|
||||
{
|
||||
position[]={2614.9648,5.0293379,2520.1047};
|
||||
@ -2072,6 +2072,13 @@ class Mission
|
||||
type="Empty";
|
||||
angle=23.608498;
|
||||
};
|
||||
class Item3
|
||||
{
|
||||
position[]={2767.6277,7.9964304,2410.2876};
|
||||
name="south";
|
||||
type="Empty";
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
class Intro
|
||||
|
@ -2051,7 +2051,7 @@ class Mission
|
||||
};
|
||||
class Markers
|
||||
{
|
||||
items=3;
|
||||
items=4;
|
||||
class Item0
|
||||
{
|
||||
position[]={1012.0472,72.656128,1032.3983};
|
||||
@ -2072,6 +2072,12 @@ class Mission
|
||||
type="Empty";
|
||||
angle=23.608498;
|
||||
};
|
||||
class Item3
|
||||
{
|
||||
position[]={880.46552,70.202377,1192.3643};
|
||||
name="south";
|
||||
type="Empty";
|
||||
};
|
||||
};
|
||||
};
|
||||
class Intro
|
||||
|
@ -2053,7 +2053,7 @@ class Mission
|
||||
};
|
||||
class Markers
|
||||
{
|
||||
items=3;
|
||||
items=6;
|
||||
class Item0
|
||||
{
|
||||
position[]={10174.496,58.218452,10682.625};
|
||||
@ -2074,6 +2074,24 @@ class Mission
|
||||
type="Empty";
|
||||
angle=23.608498;
|
||||
};
|
||||
class Item3
|
||||
{
|
||||
position[]={18742.016,11.967041,14367.299};
|
||||
name="east";
|
||||
type="Empty";
|
||||
};
|
||||
class Item4
|
||||
{
|
||||
position[]={7894.6885,169.86865,7424.731};
|
||||
name="west";
|
||||
type="Empty";
|
||||
};
|
||||
class Item5
|
||||
{
|
||||
position[]={11287.963,21.335205,16866.096};
|
||||
name="north";
|
||||
type="Empty";
|
||||
};
|
||||
};
|
||||
};
|
||||
class Intro
|
||||
|
@ -2052,7 +2052,7 @@ class Mission
|
||||
};
|
||||
class Markers
|
||||
{
|
||||
items=3;
|
||||
items=6;
|
||||
class Item0
|
||||
{
|
||||
position[]={5089.8052,183.3139,4903.1738};
|
||||
@ -2073,6 +2073,24 @@ class Mission
|
||||
type="Empty";
|
||||
angle=23.608498;
|
||||
};
|
||||
class Item3
|
||||
{
|
||||
position[]={4136.1978,110.03162,7967.731};
|
||||
name="north";
|
||||
type="Empty";
|
||||
};
|
||||
class Item4
|
||||
{
|
||||
position[]={8471.2861,17.215754,4849.915};
|
||||
name="east";
|
||||
type="Empty";
|
||||
};
|
||||
class Item5
|
||||
{
|
||||
position[]={3014.3894,176.72061,4664.7939};
|
||||
name="west";
|
||||
type="Empty";
|
||||
};
|
||||
};
|
||||
};
|
||||
class Intro
|
||||
|
@ -2052,10 +2052,10 @@ class Mission
|
||||
};
|
||||
class Markers
|
||||
{
|
||||
items=3;
|
||||
items=6;
|
||||
class Item0
|
||||
{
|
||||
position[]={10224.963,63.2766,10649.693};
|
||||
position[]={10174.496,58.218452,10682.625};
|
||||
name="center";
|
||||
type="Empty";
|
||||
};
|
||||
@ -2073,6 +2073,24 @@ class Mission
|
||||
type="Empty";
|
||||
angle=23.608498;
|
||||
};
|
||||
class Item3
|
||||
{
|
||||
position[]={18742.016,11.967041,14367.299};
|
||||
name="east";
|
||||
type="Empty";
|
||||
};
|
||||
class Item4
|
||||
{
|
||||
position[]={7894.6885,169.86865,7424.731};
|
||||
name="west";
|
||||
type="Empty";
|
||||
};
|
||||
class Item5
|
||||
{
|
||||
position[]={11287.963,21.335205,16866.096};
|
||||
name="north";
|
||||
type="Empty";
|
||||
};
|
||||
};
|
||||
};
|
||||
class Intro
|
||||
|
@ -2051,7 +2051,7 @@ class Mission
|
||||
};
|
||||
class Markers
|
||||
{
|
||||
items=3;
|
||||
items=4;
|
||||
class Item0
|
||||
{
|
||||
position[]={993.37225,55.231731,1032.3983};
|
||||
@ -2072,6 +2072,13 @@ class Mission
|
||||
type="Empty";
|
||||
angle=23.608498;
|
||||
};
|
||||
class Item3
|
||||
{
|
||||
position[]={429.01022,43.600964,1078.9574};
|
||||
name="south";
|
||||
type="Empty";
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
class Intro
|
||||
|
@ -2051,7 +2051,7 @@ class Mission
|
||||
};
|
||||
class Markers
|
||||
{
|
||||
items=3;
|
||||
items=6;
|
||||
class Item0
|
||||
{
|
||||
position[]={3831.5488,191.16527,3856.3152};
|
||||
@ -2072,6 +2072,25 @@ class Mission
|
||||
type="Empty";
|
||||
angle=23.608498;
|
||||
};
|
||||
class Item3
|
||||
{
|
||||
position[]={5235.8208,234.87129,7635.3589};
|
||||
name="north";
|
||||
type="Empty";
|
||||
};
|
||||
class Item4
|
||||
{
|
||||
position[]={7641.9482,182.4407,4723.2275};
|
||||
name="east";
|
||||
type="Empty";
|
||||
};
|
||||
class Item5
|
||||
{
|
||||
position[]={276.99246,527.01801,6481.0313};
|
||||
name="west";
|
||||
type="Empty";
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
class Intro
|
||||
|
@ -2051,7 +2051,7 @@ class Mission
|
||||
};
|
||||
class Markers
|
||||
{
|
||||
items=4;
|
||||
items=5;
|
||||
class Item0
|
||||
{
|
||||
position[]={4135.0137,17.095903,4039.3584};
|
||||
@ -2074,10 +2074,16 @@ class Mission
|
||||
};
|
||||
class Item3
|
||||
{
|
||||
position[]={2999.5986,6.6424584,247.24414};
|
||||
position[]={3257.1497,13.147415,1079.2324};
|
||||
name="south";
|
||||
type="Empty";
|
||||
};
|
||||
class Item4
|
||||
{
|
||||
position[]={3154.1616,28.781305,5169.5229};
|
||||
name="north";
|
||||
type="Empty";
|
||||
};
|
||||
};
|
||||
};
|
||||
class Intro
|
||||
|
@ -2051,7 +2051,7 @@ class Mission
|
||||
};
|
||||
class Markers
|
||||
{
|
||||
items=3;
|
||||
items=4;
|
||||
class Item0
|
||||
{
|
||||
position[]={3634.2954,23.313885,3688.4602};
|
||||
@ -2072,6 +2072,12 @@ class Mission
|
||||
type="Empty";
|
||||
angle=23.608498;
|
||||
};
|
||||
class Item3
|
||||
{
|
||||
position[]={4021.7595,34.938976,3114.637};
|
||||
name="south";
|
||||
type="Empty";
|
||||
};
|
||||
};
|
||||
};
|
||||
class Intro
|
||||
|
Loading…
Reference in New Issue
Block a user