Jump to content

[HowTo] Add Buildings or other Objects


Suppe

Recommended Posts

In your: \Arma 3\@epochhive\addons\a3_epoch_server_settings.pbo are the different maps...

unpack the pbo and open \configs\maps MAPUWANTTOEDIT.H  [ It is divided into the different maps. (Stratis, Altis, Cherno, add more if u need ...) ]

 

Example:Altis.H start with:

    };
    class Altis : Default
    {
        worldSize = 20000;                         //  =  say the name :D the size of the world, in Altis 20000
        traderBlds[] = { "Land_Kiosk_blueking_F", "Land_FuelStation_Build_F", "Land_CarService_F", "Land_i_Garage_V1_F", "Land_i_Shed_Ind_F", "Land_i_Shop_01_V1_F" };
        containerPos[] = {                          //  =  the container spawn pos ingame, if a container spawned then there:
                { 8599.97, 24513.6, 0 },          //  container1

                { 17702.8, 19466.5, 0 }           //  container2  //last one without comma
        };
        telePos[] = {                                 // = the 3 Spawnpoints.

                { "Transport_C_EPOCH", { 23600.5, 18009, 0.233421 }, "", { 13326.5, 14515.2, 0.16426 } }, // Trader city 1
                { "Transport_W_EPOCH", { 23585.4, 18000.7, 0.233424 }, "", { 6192.46, 16834, 0.00154114 } }, // Trader city 2
                { "Transport_E_EPOCH", { 23615.5, 18000.9, 0.233423 }, "", { 18451.9, 14278.1, 0.00143814 } } // Trader city 3
        };
        propsPos[] = {                            // = the position were houses spawn then:
                //trader city #1
                {"Land_MarketShelter_F", { 13315.3, 14512.4, 0.0361125 }, 119.966},
                { "Land_ScrapHeap_2_F", { 13315.9, 14499, 0.00584948 }, 255.706 }

                ...............................................................................

propsPos[] = {                                    //in the propsPos you can add houses, atm, waterbarrels or everything you want. just....

propsPos[] = {
                //trader city #1
                {"Land_MarketShelter_F", { 13315.3, 14512.4, 0.0361125 }, 119.966},
                { "Land_ScrapHeap_2_F", { 13315.9, 14499, 0.00584948 }, 255.706 },

                { "classnameyouneed" ,    { X ,              Z ,       offsetY    }, azimut }           //  add more if u wish, but the last one without comma

 

Important is only the last batch may not a "comma"  so, look at the "," at the end from the line.

 

Build what you want with the A3 Editor, save coordinates for your cpp (press "copy Epoch CFG to Clipbord"), then past this in a empty txt file, or directly into the cpp.

*with the custom pbo you can specify more features, such as set vector and so

 

Repack the .pbo and ready 

 

*If you want to build with the MCC Sandbox Tool or Zeus, save with MCC Sandbox (press "save all sqm"), then convert the coordinates and add this into the cpp. (Use the Mission converter)*

 

The coordinates:

The A3 Editor has a "Copy Epoch CFG to Clipbord" button, these are just the right coordinates for the config.cpp, So the A3 Editor is very good and easy to get the right coordinates.

*If you want to build with the MCC Sandbox Tool or Zeus, save with MCC Sandbox (press "save all sqm"), then convert the coordinates and add this into the cpp. (Use the Mission converter)

 

If you need more Infos about coordinates:

 

mission.sqm coordinates:

       };
        class Item4
        {                             {X,           Y,                Z}
            position[]={1325.1554,13.24902,8729.6484};
            azimut=-303.53421;
            id=4;
            side="EMPTY";
            vehicle="Land_CampingChair_V2_F";
            skill=0.60000002;
        };

 

in the config.cpp:

                { "classname", { X, Z, offsetY }, azimut },

 

so... we need the offsetY

Get the offsetY with help of the MCC Sandbox Editor Tool. export the code (save), then you get this block: (with offsetY)

 

mission.sqm coordinates after saving with MCC:

       };
        class Item4
        {
            position[]={1325.1554,13.24902,8729.6484};
            azimut=-303.53421;
            id=4;
            side="EMPTY";
            vehicle="Land_CampingChair_V2_F";
            skill=0.60000002;

            offsetY=0.0144939;
        };

with the offsetY, now we have everything we need.

 

important is:

            position[]={X, Y, Z};
            azimut=-azimut;     (azimut is the"look direction")
            vehicle="classname";

            offsetY=NUMBER;

 

            Y = we dont need Y in the config.cpp

 

in the config.cpp:

                { "Land_CampingChair_V2_F", { 1325.1554, 6484, 0.0144939 }, 303.53421 },  //last one without comma

and ready is the chair :D

 

useful tools and links:


- A3 3D Editor and the custom pbo

 

http://www.armaholic.com/page.php?id=19580  - MCC Sandbox Editor
https://www.dropbox.com/sh/nbn9nrpo92cafqe/AAD6h5KuWmYP74zJ6CYjcQK7a?dl=0  - Mission.sqm formater ( convert a complete mission.sqm ) ( Instructions after the verification by an Mod, than here im Forum under Tools )

 

http://www.armaholic.com/page.php?id=16369  - to open and repack PBOs

https://community.bistudio.com/wiki/Arma_3_CfgVehicles_EMPTY  - list with all things you can place: (wiki arma 3, CfgVehicle EMPTY)

Link to comment
Share on other sites

Yep, this is the place to add phonebooths for example..

 

Snippet :

 

propsPos[] = {
    { "Land_cargo_addon02_V1_F", { 28.07, 1588.58, 2.00141 }, 315.017 },
    // phones
    { "Land_PhoneBooth_02_F", { 4770.6304, 7481.7207, 0.0088642277 }, -20.303209 },
    { "Land_PhoneBooth_02_F", { 5230.5488, 8228.6309, 0.11357399 }, -131.58987 },
    { "Land_PhoneBooth_02_F", { 8682.8027, 3150.0779, 2.8371811e-005 }, 108.46211 },
  };

 

if you can get good coordinates (debug, admin tools w/e) this is pretty easy.. teleport to places you want one, note the coords {x,y,z} direction

Link to comment
Share on other sites

............................your example............................................

// { "Land_Hangar_F", { 23962.6, 18151.2, 0 }, 42.7919 },

// { "Land_Hangar_F", { 24059.2, 18258.6, 0 }, 36.9806 }

 

this looks right... without the // this must work.... if the cords are right, or fly the house in the sky or stuck in the ground ?

Link to comment
Share on other sites

or send me your mission.sqm with the objekts you want to place... i convert it for u

 

Do you use a tool to convert it or manually copy and paste? Iv done it loads already...takes some time xD

 

Thinking if not, it might be a good idea if someone could make a small program that takes these values and creates a file in the right format. 

I only know a bit of javascript and web based code so maybe possible to even do a web app for it.

Link to comment
Share on other sites

I might do when i'm finished, yeah it will be mcc - best way to add objects! 

 

PM me the program if your friend is ok with it but does not want it on the fourms yet...awesome that you got something to do it. 

 

 

Do you know if you can include a file in the config.cpp? Example:

 

propsPos[] = {

    #include buildingslist.txt // txt file or cpp?

};

 

buildinglist.txt example:

 

 {"Land_MarketShelter_F", { 13315.3, 14512.4, 0.0361125 }, 119.966},
 { "Land_ScrapHeap_2_F", { 13315.9, 14499, 0.00584948 }, 255.706 },

 {"Land_MarketShelter_F", { 13315.3, 14512.4, 0.0361125 }, 119.966},

 { "Land_ScrapHeap_2_F", { 13315.9, 14499, 0.00584948 }, 255.706 }

 

Would make big lists easier and keep the file tidy 

Link to comment
Share on other sites

I've created a military base in the top north west corner of the map for AI convoys to originate from and included them using this method. I placed the items with the @m3editor addon and had all the items flush with the landscape but when you look at it in game they are all place horizontally flat (not flush with the landscape).  It appears using this method the extra positional info isn't exported. 

 

{"Land_HBarrierWall6_F", {2262.88, 15261.3, -0.308136}, 118.182},
    {"Land_HBarrierWall6_F", {2272.11, 15255.9, 0.132599}, 298.182},
    {"Land_Mil_WallBig_4m_F", {2270.96, 15251.9, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2344.65, 15301.7, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2278.35, 15248.6, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2281.99, 15246.8, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2285.64, 15245, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2289.28, 15243.3, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2292.93, 15241.5, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2296.57, 15239.7, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2300.22, 15238, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2303.86, 15236.2, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2307.51, 15234.4, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2310.33, 15235, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2312.28, 15238.6, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2314.22, 15242.2, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2316.16, 15245.7, 3.05176e-005}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2318.1, 15249.3, 3.05176e-005}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2320.04, 15252.8, 3.05176e-005}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2321.99, 15256.4, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2323.93, 15259.9, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2325.87, 15263.5, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2327.81, 15267.1, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2329.75, 15270.6, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2331.69, 15274.2, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2333.64, 15277.7, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2335.58, 15281.3, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2337.52, 15284.8, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2339.46, 15288.4, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2341.4, 15292, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2343.35, 15295.5, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2345.29, 15299.1, 0}, 298.636},
    {"Land_Mil_WallBig_4m_F", {2274.6, 15250.1, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2341.1, 15303.7, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2337.54, 15305.6, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2333.99, 15307.5, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2330.43, 15309.5, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2326.87, 15311.4, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2323.32, 15313.4, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2319.76, 15315.3, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2316.2, 15317.3, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2312.65, 15319.2, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2309.09, 15321.1, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2305.53, 15323.1, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2301.98, 15325, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2298.42, 15327, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2294.87, 15328.9, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2291.31, 15330.9, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2287.75, 15332.8, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2284.2, 15334.7, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2280.64, 15336.7, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2277.08, 15338.6, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2273.53, 15340.6, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2269.97, 15342.5, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2266.41, 15344.5, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2262.86, 15346.4, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2260.02, 15257.2, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2256.38, 15258.9, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2252.73, 15260.7, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2249.09, 15262.5, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2245.44, 15264.2, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2241.8, 15266, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2238.15, 15267.8, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2234.51, 15269.6, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2230.86, 15271.3, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2227.22, 15273.1, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2223.58, 15274.9, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2219.93, 15276.6, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2216.29, 15278.4, 0}, 25.9091},
    {"Land_Mil_WallBig_4m_F", {2215.91, 15280.9, 0}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2215.91, 15280.9, 0}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2217.71, 15284.6, 0}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2219.51, 15288.2, 0}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2221.31, 15291.8, 0}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2223.11, 15295.5, 0}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2224.91, 15299.1, 0}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2226.71, 15302.7, 3.05176e-005}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2228.51, 15306.3, 3.05176e-005}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2230.31, 15310, 6.10352e-005}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2232.1, 15313.6, 6.10352e-005}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2233.9, 15317.2, 6.10352e-005}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2235.7, 15320.9, 6.10352e-005}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2237.5, 15324.5, 6.10352e-005}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2239.3, 15328.1, 6.10352e-005}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2241.1, 15331.8, 6.10352e-005}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2242.9, 15335.4, 6.10352e-005}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2244.7, 15339, 6.10352e-005}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2246.5, 15342.7, 6.10352e-005}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2248.3, 15346.3, 6.10352e-005}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2250.1, 15349.9, 6.10352e-005}, 116.364},
    {"Land_Mil_WallBig_4m_F", {2259.3, 15348.3, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2255.74, 15350.3, 0}, 208.636},
    {"Land_Mil_WallBig_4m_F", {2252.31, 15351.6, 0}, 184.545},
    {"Fort_Barracks_USMC", {2242.11, 15309.3, 0.25351}, 215.909},
    {"Fortress2", {2272.28, 15244.4, 0}, 345.909},
    {"Land_Ind_IlluminantTower", {2276.7, 15255.1, 0}, 25},
    {"Land_Ind_IlluminantTower", {2259.36, 15263.7, 0}, 25},
    {"Land_pristresek_camo", {2293.26, 15308, 1.09912}, 27.7271},
    {"HeliHCivil", {2233.42, 15283.3, 0}, 0},
    {"HeliHRescue", {2272.29, 15300.1, 0}, 0},
    {"MASH", {2292.26, 15325.8, 0}, 301.364},
    {"MASH", {2288.38, 15320.2, -0.0100098}, 300.922},
    {"MASH", {2284.6, 15314.2, 0.134827}, 300.863},
    {"MASH", {2280.88, 15308.1, -0.032959}, 300.771},
    {"Land_Hangar_2", {2324.05, 15296.3, 0}, 28.1818},
    {"B_Truck_01_transport_F", {2298.86, 15288, -0.108948}, 253.182},
    {"B_G_Offroad_01_F", {2318.41, 15276, -0.00592041}, 293.636},
    {"B_Truck_01_transport_F", {2299.59, 15282.4, -0.161804}, 254.004},
    {"B_G_Offroad_01_F", {2317.14, 15273.3, -0.041626}, 293.726},
    {"B_G_Offroad_01_F", {2315.85, 15270.6, -0.0756836}, 293.873},
    {"B_G_Offroad_01_F", {2314.53, 15267.8, -0.104736}, 294.061},
    {"B_G_Offroad_01_F", {2313.2, 15265.1, -0.137207}, 294.264},
    {"B_G_Offroad_01_F", {2311.85, 15262.4, -0.168213}, 294.479},

Link to comment
Share on other sites

hi. I have to watch what coordinates come from the a3editor... I thought there comes  { "classnameyouneed", { X, Z, offsetY }, azimut }   out, but it looks like the a3editor sort the cords not like this.... i check this.... then u need to save your work with the mmc sandbox tool, then u get this block:

       };
        class Item4
        {
            position[]={1325.1554,13.24902,8729.6484};
            azimut=-303.53421;
            id=4;
            side="EMPTY";
            vehicle="Land_CampingChair_V2_F";
            skill=0.60000002;

            offsetY=0.0144939;

 

send it to me and i convert it for u, and i check what cords came out the a3editor

Link to comment
Share on other sites

im wonder if you can help me setting up the spawns for bornholm, currently they don't appear on the main respawn where u got to choose to spawn, help please.

 

the config.cpp

#include "BIS_AddonInfo.hpp"


#define _ARMA_

class CfgPatches {
class A3_server_settings {
units[] = {};
weapons[] = {};
requiredVersion = 0.1;
epochVersion = "0.2.5.21";
requiredAddons[] = {};
};
};

// import settings
class CfgEpochServer
{
#include "\@epochhive\epochah.hpp"
#include "\@epochhive\epochconfig.hpp"
};

// map config
class CfgEpoch
{
class Default
{
worldSize = 12000;
traderBlds[] = {};
containerPos[] = {};
telePos[] = {};
telePosCenter[] = {};
propsPos[] = {};
staticNpcPos[] = {};
};
class Stratis : Default
{
worldSize = 6000;
traderBlds[] = { "Land_Kiosk_blueking_F", "Land_FuelStation_Build_F", "Land_CarService_F", "Land_i_Garage_V1_F", "Land_i_Shed_Ind_F", "Land_i_Shop_01_V1_F" };
containerPos[] = {
{ 2583.59, 6024.51, 0 },
{ 3830.73, 7823.08, 0 },
{ 5153.42, 7048.41, 0 },
{ 6871.89, 5628.74, 0 },
{ 4429.52, 2354.84, 0 },
{ 2907.18, 543.774, 0 },
{ 2213.17, 1095.78, 0 },
{ 1663.35, 2728.73, 0 },
{ 1661.67, 2861.41, 0 },
{ 1646.04, 2882.86, 0 },
{ 1748.63, 3488.93, 0 },
{ 1461.86, 4783.48, 0 }
};
telePos[] = {
{ "Transport_C_EPOCH", { 1719.32, 5129.06, 0.233428 }, "", { 4089.82, 4597.71, 0.00143433 } }
};
telePosCenter[] = {1719, 5129, 0};
propsPos[] = {
{ "Land_Castle_01_wall_08_F", { 1830.55, 3389.67, 0 }, 285.304 },
{ "Land_Castle_01_tower_F", { 1852.1, 3361.42, 1.51087 }, 283.624 },
{ "Land_Stone_HouseBig_V1_ruins_F", { 1877.76, 2747.02, 0.58992 }, 350.47 },
{ "Land_Research_house_V1_F", { 1882.16, 3420.11, 0 }, 114.473 },
{ "Land_Research_house_V1_F", { 1926.81, 3483.25, 0 }, 78.3937 },
{ "Land_Research_house_V1_F", { 1981.81, 3454.27, 0 }, 114.473 },
{ "Land_Swing_01_F", { 1985.26, 4154.77, 0.000238657 }, 0 },
{ "Land_LifeguardTower_01_F", { 1984.14, 4165.94, 0.0106359 }, 96.173 },
{ "Land_i_House_Small_02_V1_F", { 2038.01, 4155.31, -2.38419e-007 }, 104.737 },
{ "Land_d_House_Small_02_V1_F", { 2078.54, 4114.41, 2.38419e-007 }, 0 },
{ "Land_Offices_01_V1_F", { 2057.75, 5451.7, 4.76837e-007 }, 282.813 },
{ "Land_Hospital_side1_F", { 2058.38, 5592.42, 0 }, 192.575 },
{ "Land_Hospital_main_F", { 2070.05, 5623.08, 0 }, 192.575 },
{ "Land_i_House_Big_01_V3_F", { 2086.85, 4150.62, 0 }, 107.808 },
{ "Land_Kiosk_papers_F", { 2093.64, 5570.47, 6.53267e-005 }, 283.475 },
{ "Land_Hospital_side2_F", { 2099.4, 5626.81, 0 }, 192.575 },
{ "Land_Slum_House03_F", { 2141.66, 4792.06, 0.0015676 }, 0 },
{ "Land_Slum_House02_F", { 2143.03, 4775.16, -0.0263515 }, 0 },
{ "Land_Kiosk_blueking_F", { 2727.62, 5826.22, 0.000421524 }, 132.967 },
{ "Land_d_House_Small_01_V1_F", { 2801.58, 1046.55, 0 }, 41.0052 },
{ "Land_Chapel_V1_F", { 2871.78, 6067.89, 0 }, 211.514 },
{ "Land_Cargo_HQ_V3_F", { 2971.3, 1866.99, 0 }, 179.108 },
{ "Land_u_House_Small_01_V1_F", { 2973.94, 6218.94, 0.325663 }, 0 },
{ "Land_Cargo_House_V3_F", { 2995.03, 1873.41, 1.52588e-005 }, 0 },
{ "Land_i_Garage_V2_F", { 2989, 6223.63, -1.90735e-006 }, 273.954 },
{ "Land_i_House_Big_01_V1_F", { 3049.42, 5942.24, 2.38419e-007 }, 311.557 },
{ "Land_Kiosk_redburger_F", { 3044.55, 6076.2, 9.44138e-005 }, 91.6749 },
{ "Land_i_House_Small_02_V3_F", { 3155.17, 6013.37, 0.458257 }, 332.154 },
{ "Land_Chapel_V2_F", { 3232.37, 6857.66, 0.685185 }, 272.76 },
{ "Land_cargo_house_slum_F", { 3538.77, 2707.56, 0 }, 177.058 },
{ "Land_cargo_addon01_V1_F", { 3541.2, 2705.14, 0 }, 357.446 },
{ "Land_d_Stone_HouseBig_V1_F", { 3623.09, 5245.06, 0.009758 }, 166.481 },
{ "Land_d_House_Small_01_V1_F", { 3743.54, 4780.82, 1.57976 }, 0 },
{ "Land_Slum_House03_F", { 3797.53, 2993.58, 0 }, 0 },
{ "Land_Slum_House02_F", { 3831.47, 2971.8, 0 }, 0 },
{ "Land_HelipadCircle_F", { 4067.47, 4572.62, 1.52588e-005 }, 359.244 },
{ "Land_TouristShelter_01_F", { 4073.64, 4549.6, 0 }, 192.51 },
{ "Land_cargo_addon02_V1_F", { 4078.63, 4592.18, 0 }, 0 },
{ "Land_Loudspeakers_F", { 4092.04, 4598.9, 0 }, 0 },
{ "Land_ScrapHeap_1_F", { 4079.07, 4596.36, 0.00553894 }, 99.9798 },
{ "Land_CncBarrierMedium4_F", { 4079.99, 4588.74, 0.0153656 }, 359.686 },
{ "Land_CncWall4_F", { 4089.64, 4588.13, -0.00886536 }, 12.7799 },
{ "Land_CncWall4_F", { 4094.76, 4586.89, -0.00213623 }, 12.7868 },
{ "Land_LampShabby_F", { 4076.45, 4589.55, 0 }, 121.571 },
{ "Land_BC_Basket_F", { 4078.18, 4602.15, 1.52588e-005 }, 106.029 },
{ "Land_InvisibleBarrier_F", { 4075.89, 4589.43, 0.753189 }, 201.944 },
{ "Land_InvisibleBarrier_F", { 4075.31, 4596.73, 1.33836 }, 120.492 },
{ "Land_InvisibleBarrier_F", { 4075.13, 4590.7, 1.13405 }, 81.5166 },
{ "Land_InvisibleBarrier_F", { 4076.48, 4600.02, 1.22104 }, 115.878 },
{ "Land_InvisibleBarrier_F", { 4078.54, 4604.28, 1.28917 }, 115.887 },
{ "Land_InvisibleBarrier_F", { 4075.15, 4594.21, 1.20979 }, 96.9556 },
{ "Land_InvisibleBarrier_F", { 4080.46, 4607.96, 1.49496 }, 115.887 },
{ "Land_CncBarrierMedium_F", { 4085.46, 4589.37, 0.00686646 }, 359.902 },
{ "Land_Garbage_square3_F", { 4081.92, 4590.14, 0.0126038 }, 359.751 },
{ "Land_Garbage_square3_F", { 4087.47, 4605.58, 0 }, 0 },
{ "Land_Campfire_F", { 4087.44, 4605.57, 0 }, 359.692 },
{ "Land_HBarrier_1_F", { 4073.01, 4589.24, 0.00802612 }, 196.111 },
{ "Land_HBarrier_1_F", { 4074.2, 4587.82, 0.0124664 }, 104.304 },
{ "Land_WoodenTable_large_F", { 4080.83, 4591.95, -0.00935364 }, 359.965 },
{ "Land_Bench_01_F", { 4090.86, 4589.01, 0 }, 187.798 },
{ "Land_Graffiti_03_F", { 4090.15, 4587.4, 2.04541 }, 13.1322 },
{ "Land_Tyre_F", { 4077.24, 4593.93, -0.0040741 }, 359.906 },
{ "Land_cargo_addon02_V2_F", { 4088.04, 4609.67, 0.864685 }, 0 },
{ "Land_CncWall4_F", { 4095.45, 4610.17, 0 }, 19.8004 },
{ "Flag_US_F", { 4083.69, 4609.71, 0 }, 0 },
{ "Land_InvisibleBarrier_F", { 4090.66, 4611.46, 1.21396 }, 181.969 },
{ "Land_InvisibleBarrier_F", { 4083.03, 4610.92, 1.30064 }, 155.064 },
{ "Land_InvisibleBarrier_F", { 4085.83, 4611.93, 1.50397 }, 181.969 },
{ "Land_GarbageContainer_open_F", { 4093.96, 4612.7, 1.52588e-005 }, 14.0197 },
{ "Land_Sun_chair_F", { 4089.87, 4609.37, 0.0206299 }, 230.807 },
{ "Land_WoodenTable_small_F", { 4087.48, 4609.82, 0 }, 0.0139882 },
{ "Land_ChairPlastic_F", { 4085.61, 4609.59, 4.57764e-005 }, 56.7009 },
{ "Land_PartyTent_01_F", { 4102.91, 4597.95, 0 }, 99.5276 },
{ "Land_spp_Mirror_F", { 4116.51, 4586.74, 0.00367737 }, 123.312 },
{ "Land_spp_Mirror_Broken_F", { 4112.67, 4580.57, 0.0202332 }, 125.593 },
{ "Land_CncWall4_F", { 4106.1, 4604.81, -0.00102234 }, 19.7979 },
{ "Land_LampShabby_F", { 4096.18, 4607.97, 0 }, 206.995 },
{ "Land_LampShabby_F", { 4097.33, 4587.92, 0.0244751 }, 31.518 },
{ "Land_InvisibleBarrier_F", { 4109.2, 4597.37, 1.52361 }, 277.612 },
{ "Land_InvisibleBarrier_F", { 4108.27, 4592.6, 1.73965 }, 277.612 },
{ "Land_InvisibleBarrier_F", { 4109.82, 4601.67, 1.56946 }, 277.612 },
{ "Land_InvisibleBarrier_F", { 4107.04, 4586.27, 1.85316 }, 319.546 },
{ "Land_InvisibleBarrier_F", { 4104.05, 4585.58, 1.68684 }, 7.11481 },
{ "Land_InvisibleBarrier_F", { 4099.71, 4585.46, 1.77679 }, 2.57549 },
{ "Land_WorkStand_F", { 4099.94, 4600.94, -1.52588e-005 }, 295.919 },
{ "Land_WaterTank_F", { 4104.34, 4589.11, 0.0553589 }, 268.9 },
{ "Land_CncBarrierMedium_F", { 4102.32, 4607.87, -6.10352e-005 }, 227.793 },
{ "Land_Garbage_square3_F", { 4097.21, 4596.75, 0 }, 0 },
{ "Land_PowerGenerator_F", { 4102.48, 4603.53, 0 }, 195.669 },
{ "Land_PortableLight_double_F", { 4106.97, 4601.45, 1.52588e-005 }, 54.431 },
{ "Land_CargoBox_V1_F", { 4105.27, 4594.12, 0.0321808 }, 359.692 },
{ "Land_HBarrier_1_F", { 4108.91, 4587.86, 0.0543213 }, 190.858 },
{ "Land_HBarrier_1_F", { 4104.23, 4584.41, 0.0659485 }, 102.162 },
{ "Land_HBarrier_1_F", { 4105.92, 4584.86, 0.0720825 }, 91.1097 },
{ "Land_HBarrier_1_F", { 4108.57, 4586.13, 0.00216675 }, 192.397 },
{ "Land_HBarrier_1_F", { 4107.47, 4584.94, 0.060257 }, 102.162 },
{ "Land_HBarrier_1_F", { 4102.35, 4584.26, 0.0769043 }, 102.051 },
{ "Land_HBarrier_1_F", { 4109.11, 4589.47, 0.11763 }, 9.99734 },
{ "Land_PaperBox_open_full_F", { 4102.1, 4594.33, 1.52588e-005 }, 263.73 },
{ "Land_PaperBox_open_empty_F", { 4105.48, 4596.11, -0.0014801 }, 0 },
{ "Land_Cages_F", { 4105.58, 4591.83, 0.0664368 }, 185.048 },
{ "Land_CncBarrier_F", { 4097.61, 4596.8, 0 }, 99.6326 },
{ "Land_CncBarrier_F", { 4100.22, 4593.2, 3.05176e-005 }, 190.22 },
{ "Land_CampingTable_F", { 4101.72, 4596.48, 0.00106812 }, 281.325 },
{ "Land_BagFence_Corner_F", { 4097.22, 4593.88, 0.0379028 }, 190.245 },
{ "Land_CratesPlastic_F", { 4103.75, 4593.7, -0.000549316 }, 359.881 },
{ "Land_Axe_F", { 4099.65, 4600.64, -0.00337219 }, 295.967 },
{ "Land_Bucket_F", { 4097.32, 4594.08, 6.10352e-005 }, 356.543 },
{ "Land_ToiletBox_F", { 4096.96, 4611.27, 0.000183105 }, 289.938 },
{ "Land_CncBarrierMedium_F", { 4099.65, 4608.55, 0 }, 359.899 },
{ "Land_Research_HQ_F", { 4380.18, 3823.79, 0 }, 355.975 },
{ "Land_Unfinished_Building_01_F", { 4649.67, 5884.08, 0.293839 }, 198.291 },
{ "Land_Unfinished_Building_02_F", { 5174.01, 5007.38, 0 }, 243.495 },
{ "Land_i_Stone_HouseBig_V3_F", { 5498.5, 4727.75, -0.0115128 }, 293.658 },
{ "Land_i_Stone_Shed_V2_F", { 5505.49, 4702.41, 0.00200653 }, 297.882 },
{ "Land_i_Stone_HouseSmall_V1_F", { 5981.14, 4959.02, 0 }, 9.37543 },
{ "Land_i_Stone_Shed_V3_F", { 6023.49, 4945.2, 0 }, 176.441 },
{ "Land_WIP_F", { 6366.69, 5475.46, 0 }, 130.712 },
{ "Land_BC_Court_F", { 6419.24, 5433.65, 0.43597 }, 223.519 },
{ "Land_BC_Basket_F", { 6411.08, 5425.05, -4.76837e-007 }, 44.4966 },
{ "Land_BC_Basket_F", { 6427.29, 5442.33, 4.76837e-007 }, 223.664 },
{ "ProtectionZone_Invisible_F", { 4079.01, 4573.1, 0.0611725 }, 359.768 },
// Coastline trader
{ "Land_LightHouse_F", { 1845.07, 2988.35, -1.90735e-006 }, 0 },
{ "Land_HelipadEmpty_F", { 1882.75, 2942.03, 1.42167 }, 358.907 },
{ "Land_Pier_small_F", { 1891.08, 2938.65, -2.98023e-007 }, 56.3395 },
{ "Land_RowBoat_V2_F", { 1909.67, 2941.81, 0.0138569 }, 2.33694 },
{ "Land_WorkStand_F", { 1908.58, 2944.58, -0.020708 }, 122.503 },
{ "Land_CargoBox_V1_F", { 1907.39, 2947.01, 0.0350925 }, 359.867 },
{ "Land_Axe_F", { 1908.74, 2945.41, -0.00328684 }, 359.986 },
{ "Land_ToiletBox_F", { 1913.84, 2986.91, 0.0251269 }, 349.174 },
{ "Land_BeachBooth_01_F", { 1907.22, 2978.81, -0.00382352 }, 55.1352 },
{ "Land_TentDome_F", { 1937.39, 2959.15, -0.0218604 }, 326.44 },
{ "Land_Campfire_F", { 1933.14, 2949.95, -0.00123048 }, 359.804 },
{ "Land_Sun_chair_F", { 1933.75, 2952.72, 0.0220282 }, 197.997 },
{ "ProtectionZone_Invisible_F", { 1912.9, 2950.53, 0.0313282 }, 359.93 }
};
staticNpcPos[] = {
{ "C_man_hunter_1_F", { 4079.2, 4592.1, 0.00123596 }, 358.384 },
{ "C_man_w_worker_F", { 4103, 4595.83, 0.00146484 }, 265.753 },
// Coastline trader
{ "C_man_shorts_4_F_asia", { 1899.42, 2944, 0.500793 }, 255.304 }
};
};
class Altis : Default
{
worldSize = 20000;
traderBlds[] = { "Land_Kiosk_blueking_F", "Land_FuelStation_Build_F", "Land_CarService_F", "Land_i_Garage_V1_F", "Land_i_Shed_Ind_F", "Land_i_Shop_01_V1_F" };
containerPos[] = {
{ 8599.97, 24513.6, 0 },
{ 6282.61, 22654, 0 },
{ 3431.42, 22447.1, 0 },
{ 3524.53, 22718.1, 0 },
{ 3528.63, 22747.7, 0 },
{ 2185.4, 21454.6, 0 },
{ 2180.42, 21429.5, 0 },
{ 2105.21, 23439.7, 0 },
{ 2352.68, 19379.2, 0 },
{ 3022.73, 13520.1, 0 },
{ 2997.03, 13502.6, 0 },
{ 1940.41, 10095.8, 0 },
{ 7454.79, 9247.77, 0 },
{ 7485.66, 9255.52, 0 },
{ 12060.5, 6203.39, 0 },
{ 12059.2, 6183.42, 0 },
{ 14205.4, 7549.47, 0 },
{ 14373.1, 7688.5, 0 },
{ 14376.8, 7715.9, 0 },
{ 13115, 9491.82, 0 },
{ 13666, 11913.7, 0 },
{ 13682.8, 11890.2, 0 },
{ 15209.5, 14341.1, 0 },
{ 15326.2, 14361.6, 0 },
{ 15340.7, 14291.1, 0 },
{ 15351.3, 14278.1, 0 },
{ 15419.5, 14287.1, 0 },
{ 15951.8, 9707.72, 0 },
{ 22199.6, 5697.94, 0 },
{ 22279.2, 8641.17, 0 },
{ 26135.7, 19798.5, 0 },
{ 27908.6, 24460.4, 0 },
{ 23164.5, 24046.1, 0 },
{ 21016.3, 20024.2, 0 },
{ 18776.8, 18291.9, 0 },
{ 17361.2, 18792.1, 0 },
{ 17598.9, 18813.6, 0 },
{ 17560, 18928.3, 0 },
{ 17702.8, 19466.5, 0 }
};
telePos[] = {
{ "Transport_C_EPOCH", { 23600.5, 18009, 0.233421 }, "", { 13326.5, 14515.2, 0.16426 } }, // Trader city 1
{ "Transport_W_EPOCH", { 23585.4, 18000.7, 0.233424 }, "", { 6192.46, 16834, 0.00154114 } }, // Trader city 2
{ "Transport_E_EPOCH", { 23615.5, 18000.9, 0.233423 }, "", { 18451.9, 14278.1, 0.00143814 } } // Trader city 3
};
telePosCenter[] = {23600, 18009, 0};
propsPos[] = {
//trader city #1
{"Land_MarketShelter_F", { 13315.3, 14512.4, 0.0361125 }, 119.966},
{ "Land_ScrapHeap_2_F", { 13315.9, 14499, 0.00584948 }, 255.706 },
{ "Land_HBarrier_Big_F", { 13313.7, 14494.8, 0.050712 }, 352.447 },
{ "Land_spp_Mirror_Broken_F", { 13303.6, 14516.4, 0 }, 300.644 },
{ "Land_Mil_WallBig_4m_F", { 13309.9, 14500.4, 0.000857234 }, 58.0228 },
{ "Land_Mil_WallBig_4m_F", { 13308.4, 14510.6, 0.00314641 }, 78.5001 },
{ "Land_Mil_WallBig_4m_F", { 13308, 14507, 0.0178673 }, 112.416 },
{ "Land_Mil_WallBig_4m_F", { 13311.2, 14517.6, -0.00578284 }, 121.855 },
{ "Land_Mil_WallBig_4m_F", { 13308.1, 14503.5, 0.0163193 }, 66.6886 },
{ "Land_Mil_WallBig_4m_F", { 13311.6, 14496.9, 0.0774074 }, 68.9098 },
{ "Land_Mil_WallBig_4m_F", { 13309.1, 14514.3, -0.00295639 }, 122.56 },
{ "Land_LampHarbour_F", { 13311.4, 14507.1, -0.00963879 }, 11.7876 },
{ "Land_LampHarbour_F", { 13315, 14519.4, -4.76837e-007 }, 114.758 },
{ "Land_CrabCages_F", { 13313.8, 14507.6, 0.0636249 }, 0.0560406 },
{ "Land_JunkPile_F", { 13313.8, 14515, -0.00780201 }, 297.013 },
{ "Land_WorkStand_F", { 13315.9, 14511.8, -0.00349522 }, 310.495 },
{ "Land_Garbage_square3_F", { 13313.6, 14511.6, 0.00600243 }, 0.0279988 },
{ "Land_Metal_wooden_rack_F", { 13315.9, 14518.9, 0.00110078 }, 304.348 },
{ "Land_WheelCart_F", { 13313.1, 14513, 0.00185466 }, 117.515 },
{ "Land_HelipadCircle_F", { 13314.1, 14540.2, 0 }, 0 },
{ "Land_spp_Mirror_F", { 13309, 14521.7, -2.38419e-007 }, 309.358 },
{ "Land_dp_transformer_F", { 13313.7, 14524, 0 }, 333.717 },
{ "Land_CncWall4_F", { 13316.5, 14530.1, -0.00036478 }, 289.927 },
{ "Land_Mil_WallBig_4m_F", { 13319.7, 14524.7, -0.0120368 }, 154.164 },
{ "Land_Mil_WallBig_4m_F", { 13313.4, 14520.5, -0.00267744 }, 136.556 },
{ "Land_Mil_WallBig_4m_F", { 13316.4, 14522.8, -0.00857091 }, 147.592 },
{ "Land_Garbage_square5_F", { 13316.5, 14525.7, 0.00277591 }, 237.692 },
{ "Land_Garbage_line_F", { 13318.9, 14523.7, 0.0254805 }, 252.492 },
{ "Land_TouristShelter_01_F", { 13291.3, 14614.9, -9.53674e-007 }, 76.9832 },
{ "ProtectionZone_Invisible_F", { 13344.1, 14483.7, 0.00191855 }, 359.768 },
{ "Land_Pier_Box_F", { 13334.8, 14498.2, 0.104769 }, 71.6957 },
{ "Land_PartyTent_01_F", { 13343.3, 14514.7, 0.000879049 }, 161.543 },
{ "Land_HBarrier_Big_F", { 13321.3, 14496.8, 0.0973002 }, 349.224 },
{ "Land_Sunshade_04_F", { 13329.9, 14502.9, 0.00681627 }, 0.199829 },
{ "Land_LampHarbour_F", { 13339, 14500.7, -5.96046e-007 }, 324.419 },
{ "Land_LampHarbour_F", { 13328, 14501.7, -0.0183594 }, 11.7876 },
{ "Land_CrabCages_F", { 13338.9, 14503.4, 0.0179708 }, 359.976 },
{ "Land_TentDome_F", { 13334.2, 14503.9, 0.0171249 }, 287.115 },
{ "Land_Garbage_line_F", { 13336.4, 14501.4, -0.0589776 }, 270.921 },
{ "Land_Garbage_square3_F", { 13324.3, 14502.1, -0.0118027 }, 0.0174958 },
{ "Land_Garbage_square3_F", { 13338.7, 14505.8, 0.00524509 }, 0.0174958 },
{ "Land_Garbage_square3_F", { 13333.1, 14501.1, -0.00621545 }, 0.0174958 },
{ "Land_Campfire_F", { 13328.4, 14512.1, -0.0409672 }, 0.0174958 },
{ "Land_GarbageContainer_open_F", { 13335.7, 14519.3, 0.00106692 }, 251.651 },
{ "Land_BagFence_Long_F", { 13340.3, 14519.6, 0.000348806 }, 342.607 },
{ "Land_Sink_F", { 13349.6, 14518, 0.00516319 }, 72.7978 },
{ "Land_CampingTable_F", { 13340.8, 14518.7, 0.000142813 }, 335.017 },
{ "Land_Bench_F", { 13331, 14512.4, 0.000242233 }, 353.009 },
{ "Land_Bench_F", { 13326.9, 14510.1, 0.0057652 }, 124.855 },
{ "Land_Sleeping_bag_brown_F", { 13330.5, 14503.4, 0.0382801 }, 6.17074 },
{ "Land_Sleeping_bag_blue_F", { 13329.2, 14503.4, 0.0390047 }, 0.199829 },
{ "Land_CampingTable_small_F", { 13327.4, 14514.5, 0.00646973 }, 158.107 },
{ "Land_CampingChair_V1_F", { 13341.6, 14517.3, 0.00326729 }, 117.152 },
{ "Land_CampingChair_V2_F", { 13325.9, 14513.6, 0.001086 }, 317.349 },
{ "Land_CampingChair_V2_F", { 13329.2, 14514.8, 3.52859e-005 }, 359.941 },
{ "Land_Pillow_camouflage_F", { 13330.3, 14504.2, -0.00268662 }, 9.06669 },
{ "Land_Pillow_grey_F", { 13329, 14504, -0.00269282 }, 9.13059 },
{ "Land_HBarrier_Big_F", { 13342.7, 14535.4, 2.21729e-005 }, 347.07 },
{ "Land_HBarrier_Big_F", { 13345.1, 14530.8, -0.000231266 }, 253.023 },
{ "Land_HBarrier_Big_F", { 13330.9, 14531, -2.38419e-007 }, 336.999 },
{ "Land_CncWall4_F", { 13327.1, 14533.5, -2.38419e-007 }, 229.304 },
{ "Land_CncWall4_F", { 13338.2, 14530.2, 0.000161886 }, 157.719 },
{ "Land_CncWall4_F", { 13321.7, 14532.4, -0.000200987 }, 344.886 },
{ "Flag_US_F", { 13320.7, 14524.6, -2.38419e-007 }, 0 },
{ "Land_Mil_WallBig_4m_F", { 13334.7, 14524.1, 0.000475168 }, 247.87 },
{ "Land_Mil_WallBig_4m_F", { 13336.1, 14520.5, 0.000475407 }, 247.907 },
{ "Land_Mil_WallBig_4m_F", { 13321.1, 14527.6, -0.000753164 }, 78.6046 },
{ "Land_Mil_WallBig_4m_F", { 13324.5, 14528.4, 0.000790119 }, 254.564 },
{ "Land_Mil_WallBig_4m_F", { 13327.1, 14527.2, 0.00105166 }, 163.344 },
{ "Land_Mil_WallBig_4m_F", { 13330.8, 14528.5, 0 }, 157.189 },
{ "Land_Mil_WallBig_4m_F", { 13333.1, 14527.5, -5.72205e-006 }, 241.672 },
{ "Land_Garbage_square5_F", { 13332.5, 14530.3, 2.6226e-006 }, 310.573 },
{ "Land_Garbage_square5_F", { 13329.1, 14527.4, 0.000170469 }, 0.0174853 },
{ "Land_LampHarbour_F", { 13331.7, 14523.6, -7.15256e-007 }, 219.543 },
{ "Land_Garbage_line_F", { 13331, 14533.3, 0.000420094 }, 56.4977 },
{ "Land_Garbage_line_F", { 13326.3, 14529.9, 0 }, 0 },
{ "Land_Garbage_line_F", { 13329.2, 14534.4, 0.000157356 }, 153.869 },
{ "Land_Garbage_line_F", { 13331.3, 14521.7, 0.00176883 }, 335.57 },
{ "Land_Garbage_square3_F", { 13338.7, 14530, 0.000244141 }, 0 },
{ "Land_Pallet_MilBoxes_F", { 13331.6, 14527.6, 0 }, 339.477 },
{ "Land_BagFence_Long_F", { 13322.6, 14529.4, 5.00679e-006 }, 342.605 },
{ "Land_BagFence_Long_F", { 13343.2, 14520.5, 9.29832e-005 }, 342.605 },
{ "Land_TablePlastic_01_F", { 13322.6, 14528.6, -2.38419e-007 }, 345.367 },
{ "Land_PaperBox_open_empty_F", { 13329.9, 14527.1, 7.86781e-006 }, 339.477 },
{ "Land_Graffiti_01_F", { 13338.5, 14530.9, 2.13621 }, 157.817 },
{ "Land_ChairWood_F", { 13323.8, 14527.9, -1.66893e-006 }, 126.97 },
{ "Land_HBarrier_Big_F", { 13359.5, 14502.3, 0.0664403 }, 55.4318 },
{ "Land_Mil_WallBig_4m_F", { 13353.3, 14518.3, 0.00565863 }, 253.583 },
{ "Land_Mil_WallBig_4m_F", { 13356.1, 14505.4, 0.0153434 }, 67.557 },
{ "Land_Mil_WallBig_4m_F", { 13353.3, 14514.7, 0.00991702 }, 289.908 },
{ "Land_Mil_WallBig_4m_F", { 13355.3, 14507.7, 0.0977246 }, 225.78 },
{ "Land_Mil_WallBig_4m_F", { 13352.9, 14510.7, 0.0773071 }, 248.711 },
{ "Land_Garbage_line_F", { 13351, 14514.1, -0.026839 }, 296.754 },
{ "Land_ToiletBox_F", { 13351, 14515.4, 0.0014267 }, 38.3472 },
{ "Land_HBarrierTower_F", { 13357.5, 14530.1, -0.00182509 }, 206.67 },
{ "Land_Grave_rocks_F", { 13355.5, 14540.3, 0 }, 333.404 },
{ "Land_Grave_rocks_F", { 13354.6, 14542, 0 }, 333.404 },
//trader city 2
{ "Land_Mound02_8m_F", { 6162.68, 16812.2, 0.0149612 }, 315.554 },
{ "Land_Cargo20_orange_F", { 6179.76, 16829.7, 0.0505295 }, 311.232 },
{ "Land_CncBarrierMedium_F", { 6176.92, 16830, 0.00748444 }, 51.7517 },
{ "Land_HelipadEmpty_F", { 6169.49, 16821.5, 0 }, 359.986 },
{ "Land_Cargo40_grey_F", { 6176.53, 16833.2, 2.63681 }, 53.613 },
{ "Land_Cargo20_sand_F", { 6176.11, 16837.8, 0.0252686 }, 144.241 },
{ "Land_Cargo20_military_green_F", { 6177.59, 16844.3, 0.0136719 }, 113.546 },
{ "Land_CncBarrierMedium_F", { 6177.5, 16833, 0.00309753 }, 51.6071 },
{ "Land_CargoBox_V1_F", { 6178.72, 16841, 0.0587616 }, 250.318 },
{ "Land_CargoBox_V1_F", { 6173.7, 16834.1, 0.0386658 }, 241.477 },
{ "Land_CargoBox_V1_F", { 6175.78, 16840.3, 0.0342102 }, 241.651 },
{ "Land_CncBarrier_stripes_F", { 6176.66, 16835.2, 0.000656128 }, 266.466 },
{ "Land_Grave_dirt_F", { 6175.62, 16862, 0 }, 230.746 },
{ "Land_Grave_forest_F", { 6174.19, 16860.9, 0 }, 232.613 },
{ "Land_Cargo20_grey_F", { 6183.96, 16827.5, 0.0208817 }, 216.529 },
{ "Flag_POWMIA_F", { 6185.59, 16829.4, 0 }, 0 },
{ "Land_Garbage_line_F", { 6197.65, 16825.8, -0.040535 }, 275.131 },
{ "Land_CncWall1_F", { 6186.84, 16825.1, 0.020401 }, 8.73224 },
{ "Land_CncWall1_F", { 6199.79, 16824.8, 0.0112305 }, 314.427 },
{ "Land_CncWall1_F", { 6188.11, 16824.7, 0.0179138 }, 8.76634 },
{ "Land_CncWall1_F", { 6200.97, 16826, 0.0130386 }, 314.442 },
{ "Land_InvisibleBarrier_F", { 6195.92, 16823.3, 6.00636 }, 0.0314739 },
{ "Land_InvisibleBarrier_F", { 6191.93, 16823.6, 6.12908 }, 0.0420273 },
{ "Land_InvisibleBarrier_F", { 6192.48, 16823.6, 5.09669 }, 0.0420273 },
{ "Land_InvisibleBarrier_F", { 6196.23, 16823.4, 4.86904 }, 359.916 },
{ "Land_Garbage_square3_F", { 6187.7, 16827.2, 0.000137329 }, 0.101566 },
{ "Land_CncBarrier_F", { 6188.64, 16828.8, 0.00197601 }, 276.469 },
{ "Land_CampingTable_F", { 6192.76, 16829.8, 0.00217438 }, 181.885 },
{ "Land_CampingChair_V1_F", { 6193.31, 16828.4, 0.00823212 }, 178.199 },
{ "Land_PartyTent_01_F", { 6193.72, 16831.7, 0.0133286 }, 0.157519 },
{ "Land_Cargo40_grey_F", { 6184.39, 16851, 0.042366 }, 150.893 },
{ "Land_HBarrier_Big_F", { 6202.7, 16840.1, 0.00379181 }, 100.324 },
{ "Land_HBarrier_Big_F", { 6194.52, 16853.4, 0.0065918 }, 7.52855 },
{ "Land_HBarrier_Big_F", { 6201.46, 16831.1, 0.000526428 }, 99.2688 },
{ "Land_HBarrier_Big_F", { 6201.1, 16848.4, -0.00135803 }, 63.1847 },
{ "Land_Garbage_square5_F", { 6199.71, 16835.5, 0.000144958 }, 0.16451 },
{ "Land_Garbage_line_F", { 6192.65, 16851.8, -0.0195236 }, 291.183 },
{ "Land_Garbage_line_F", { 6188.4, 16831.8, -0.0666351 }, 359.934 },
{ "Land_WorkStand_F", { 6198.14, 16834.3, 0.00075531 }, 52.4856 },
{ "Land_ToiletBox_F", { 6196.38, 16849.9, 0.00205231 }, 63.7064 },
{ "Land_WaterTank_F", { 6200.39, 16841.4, 0.00341034 }, 273.366 },
{ "Land_Garbage_square3_F", { 6185.6, 16849.1, 6.10352e-005 }, 0.0209828 },
{ "Land_Campfire_F", { 6183.06, 16843.3, 0.0350647 }, 359.996 },
{ "Land_WoodenTable_large_F", { 6185.71, 16846.1, 0.00247192 }, 151.316 },
{ "Land_Sink_F", { 6190.75, 16849.5, 0.000732422 }, 232.857 },
{ "Land_WoodPile_F", { 6198.75, 16835.3, 0.00598145 }, 0.16451 },
{ "Land_CncBarrier_F", { 6195.53, 16836.4, 0.00226593 }, 0.16802 },
{ "Land_CncBarrier_stripes_F", { 6188.69, 16834, 0.00474548 }, 266.564 },
{ "Land_CncBarrier_stripes_F", { 6191.22, 16836.5, 0.00266266 }, 0.399046 },
{ "Land_WheelCart_F", { 6187.45, 16847, 0.00171661 }, 359.36 },
{ "Land_Bench_F", { 6180.3, 16843, 0.000434875 }, 359.72 },
{ "Land_ShelvesWooden_F", { 6198.24, 16831.5, 0.00237274 }, 1.02574 },
{ "Land_ChairPlastic_F", { 6181.8, 16846.2, 0.00118256 }, 53.9327 },
{ "Land_Axe_F", { 6197.86, 16835.8, -0.00292969 }, 246.133 },
//tradercity 3
{ "Land_BarGate_F", { 18436.5, 14277, 0.10347 }, 58.0699 },
{ "Land_HBarrierBig_F", { 18440.4, 14268.3, 0.00117111 }, 60.1274 },
{ "Land_HBarrierBig_F", { 18444.9, 14261, 0.00129318 }, 60.1036 },
{ "Land_Mil_WiredFence_F", { 18440.6, 14268.7, 0.00332832 }, 62.0634 },
{ "Land_Mil_WiredFence_F", { 18444.4, 14262, 0.00336647 }, 60.6549 },
{ "Land_Mil_WiredFence_F", { 18449.2, 14256.4, 0.00034523 }, 35.4755 },
{ "Land_LampShabby_F", { 18440.4, 14271.3, 1.90735e-006 }, 39.7611 },
{ "Land_CncWall1_F", { 18438.8, 14275.1, -0.00109291 }, 60.6932 },
{ "Land_CncWall1_F", { 18437.7, 14277.3, -0.00398445 }, 62.128 },
{ "Land_CncWall1_F", { 18436.8, 14279.5, -0.00417328 }, 63.9977 },
{ "Land_HBarrier_1_F", { 18437.7, 14272.8, 0.000751495 }, 0.0209884 },
{ "MapBoard_seismic_F", { 18445.1, 14263.8, 0.000398636 }, 236.033 },
{ "Land_WoodenTable_small_F", { 18440.5, 14272.3, -0.014082 }, 359.976 },
{ "Land_Bench_F", { 18449.1, 14270.4, 0.00127792 }, 185.11 },
{ "Land_CampingChair_V1_F", { 18441.4, 14270.9, 0.00442886 }, 194.898 },
{ "Land_HelipadEmpty_F", { 18427, 14271.2, 1.90735e-006 }, 359.885 },
{ "Land_HBarrierBig_F", { 18438.9, 14283.8, 0.000347137 }, 149.02 },
{ "Land_HBarrierBig_F", { 18446.5, 14285.9, 0.00609207 }, 175.83 },
{ "Land_Mil_WiredFence_F", { 18445.9, 14286, 0.00409126 }, 354.943 },
{ "Land_Mil_WiredFence_F", { 18439, 14283.5, 0.000944138 }, 144.943 },
{ "Land_cargo_addon02_V2_F", { 18460.6, 14258.8, 0 }, 330.21 },
{ "Land_HBarrierBig_F", { 18470.7, 14266.7, 0.00342369 }, 93.2859 },
{ "Land_HBarrierBig_F", { 18451.4, 14255.2, 0.00950432 }, 212.484 },
{ "Land_HBarrierBig_F", { 18466.7, 14259.2, 0.0402298 }, 315.017 },
{ "Land_HBarrierBig_F", { 18459.5, 14254.7, 0.0263481 }, 342.966 },
{ "Land_HBarrierBig_F", { 18469.4, 14274.9, 0.00435257 }, 71.0256 },
{ "Land_Mil_WiredFence_F", { 18468, 14261.2, 0.0418205 }, 310.274 },
{ "Land_Mil_WiredFence_F", { 18462.6, 14256.1, 0.0299683 }, 328.217 },
{ "Land_Mil_WiredFence_F", { 18469.2, 14275, 0.0172825 }, 250.01 },
{ "Land_Mil_WiredFence_F", { 18470.5, 14267.7, 0.0156116 }, 271.558 },
{ "Land_Mil_WiredFence_F", { 18455.8, 14254.1, 0.011919 }, 0.620575 },
{ "Land_LampShabby_F", { 18454.4, 14277.9, -0.0150127 }, 0 },
{ "Land_LampShabby_F", { 18469, 14264.4, 0 }, 323.398 },
{ "Land_LampShabby_F", { 18457.2, 14256.1, 1.90735e-006 }, 0 },
{ "Land_Garbage_square5_F", { 18466.9, 14266.7, 1.71661e-005 }, 359.857 },
{ "Land_Garbage_line_F", { 18456.7, 14259.8, -0.0267105 }, 117.139 },
{ "Land_JunkPile_F", { 18451.7, 14257.9, 0.00698853 }, 0.737973 },
{ "Land_StallWater_F", { 18458, 14257, 0.00478554 }, 0.0420984 },
{ "Land_Campfire_F", { 18452.4, 14270.5, 0.000808716 }, 359.867 },
{ "Land_GarbageContainer_open_F", { 18468, 14265.1, 0.0781498 }, 284.391 },
{ "Land_Cages_F", { 18462.1, 14259.4, 0.00989532 }, 283.389 },
{ "Land_WoodenTable_large_F", { 18459.1, 14261.2, 0.00582504 }, 236.32 },
{ "Land_Sink_F", { 18456.8, 14275.2, 0.00865936 }, 359.072 },
{ "Oil_Spill_F", { 18467.5, 14263.8, 0.0297527 }, 0.257763 },
{ "Land_Bench_F", { 18454.2, 14267.7, 0.00108147 }, 240.873 },
{ "Land_Tyre_F", { 18469, 14263.5, -0.00253868 }, 0.460022 },
{ "Land_KartTyre_01_x4_F", { 18468.5, 14262.8, -0.00620651 }, 2.02641 },
{ "Land_HBarrierBig_F", { 18462.3, 14287.2, -0.00127792 }, 43.0428 },
{ "Land_HBarrierBig_F", { 18454.6, 14288.1, 0.0716648 }, 161.76 },
{ "Land_Mil_WiredFence_F", { 18453.8, 14287.5, 0.076416 }, 154.537 },
{ "Land_Tank_rust_F", { 18459.4, 14284.8, 0.00293159 }, 242.028 },
{ "Land_CncBarrierMedium4_F", { 18464.2, 14281.7, 0.00330925 }, 62.7671 },
{ "Land_LampShabby_F", { 18451.7, 14285.3, 0 }, 221.564 },
{ "Land_HBarrier_1_F", { 18458.1, 14290.3, 0.0128841 }, 317.438 }
};
staticNpcPos[] = {
// tradercity 1
{ "C_man_w_worker_F", { 13323.1, 14527.3, 0.00144649 }, 201.163 },
{ "C_man_w_worker_F", { 13331.2, 14524.6, 0.00144362 }, 182.606 },
{ "C_Orestes", { 13318, 14518.3, 0 }, 173.189 },
{ "C_man_shorts_4_F_asia", { 13349.9, 14490.7, 0.750791 }, 339.975 },
// tradercity 2
{ "C_man_hunter_1_F", { 6177.13, 16835.1, 0.0014267 }, 66.2026 },
{ "C_man_p_fugitive_F_afro", { 6196.01, 16833, 0.00157166 }, 310.814 },
// tradercity 3
{ "C_journalist_F", { 18460.6, 14259.6, 0.00160599 }, 317.76 },
{ "C_scientist_F", { 18441.7, 14271.7, 0.00142479 }, 49.9898 }
};
};
class Chernarus : Default
{
worldSize = 12000;
traderBlds[] = { "Land_A_FuelStation_Build", "Land_A_GeneralStore_01", "Land_A_GeneralStore_01a", "Land_A_Office01", "Land_Ind_Garage01", "Land_Ind_Workshop01_04", "Land_Ind_Workshop01_L", "Land_Shed_Ind02", "Land_Tovarna2", "Land_sara_hasic_zbroj" };
telePos[] = {
{ "Transport_W_EPOCH", { 1009.76, 2023.75, 0.224995 }, "", { 4569.52, 4524.24, 0.201431 } }, // South West
{ "Transport_E_EPOCH", { 1040.27, 2023.47, 0.224995 }, "", { 12077.8, 5121.92, 0.00144958 } }, // South East
{ "Transport_N_EPOCH", { 1024.91, 2031.31, 0.224995 }, "", { 10688.6, 9428.98, 0.00144958 } } // North East
};
telePosCenter[] = {1025, 2025, 0};
propsPos[] = {
//debug lights
{ "Land_PortableLight_double_F", { 1041.07,2032.96,0.249583 }, 48.2164 },
{ "Land_PortableLight_double_F", { 1008.24,2013.97,0.217788 }, 233.858 },
// phones
{ "Land_PhoneBooth_02_F", { 10455.2, 2214.84, 0 }, 52.4502 },
{ "Land_PhoneBooth_02_F", { 10480, 2350.02, 0.101999 }, 326.023 },
{ "Land_PhoneBooth_02_F", { 10479.1, 2349.45, 0.101999 }, 326.023 },
{ "Land_PhoneBooth_02_F", { 6809.42, 2703.85, 0.101999 }, 131.438 },
{ "Land_PhoneBooth_02_F", { 6795.85, 2484.88, 0 }, 312.46 },
{ "Land_PhoneBooth_02_F", { 6738.58, 2393.89, 0 }, 221.25 },
{ "Land_PhoneBooth_02_F", { 6409.57, 2439.88, 0.0883212 }, 46.4278 },
{ "Land_PhoneBooth_02_F", { 7496.04, 5126.04, -0.000732422 }, 182.17 },
{ "Land_PhoneBooth_02_F", { 10132.1, 5471.31, 1.52588e-005 }, 46.4049 },
{ "Land_TouristShelter_01_F", { 11285.3, 5492.9, 1.52588e-005 }, 160.867 },
{ "Land_PhoneBooth_02_F", { 11282.8, 5491.04, 0 }, 162.031 },
{ "Land_PhoneBooth_02_F", { 13359.8, 6170.49, 0 }, 176.672 },
{ "Land_PhoneBooth_02_F", { 12102.1, 7283.6, 0 }, 96.4346 },
{ "Land_PhoneBooth_02_F", { 10654.9, 8013.35, 0.102005 }, 303.161 },
{ "Land_PhoneBooth_02_F", { 12022.4, 9151.21, 0 }, 47.4504 },
{ "Land_PhoneBooth_02_F", { 12023.3, 9150.26, 0 }, 45.6474 },
{ "Land_PhoneBooth_02_F", { 12265.6, 9479.49, 1.18411 }, 141.691 },
{ "Land_PhoneBooth_02_F", { 6017.95, 7821.39, -0.00500488 }, 223.037 },
{ "Land_PhoneBooth_02_F", { 6227.46, 7721.33, 0 }, 36.2285 },
{ "Land_TouristShelter_01_F", { 1969.65, 7361.86, 0 }, 35.9378 },
{ "Land_PhoneBooth_02_F", { 1971.84, 7359.15, -1.52588e-005 }, 127.545 },
{ "Land_PhoneBooth_02_F", { 8785.43, 11618.8, 0 }, 100.044 },
{ "Land_PhoneBooth_02_F", { 11242.2, 12209.9, 0 }, 118.072 },
{ "Land_PhoneBooth_02_F", { 2706.84, 10002.9, 0 }, 12.6221 },
// City Klen
{ "Land_MarketShelter_F", { 11396.6, 11368.6, -0.0245056 }, 216.043 },
{ "Land_i_Stone_Shed_V1_F", { 11392.3, 11388.6, 0 }, 216.9 },
{ "Land_Wreck_Offroad2_F", { 11398.5, 11382.7, -0.00628662 }, 181.726 },
{ "Land_Slums01_8m", { 11383.6, 11393.7, 0.00790405 }, 300.102 },
{ "Land_Slums01_8m", { 11379.6, 11386.9, -0.00378418 }, 300.014 },
{ "Land_GarbageBags_F", { 11394.1, 11382.3, 0.00491333 }, 0.000760495 },
{ "Land_CratesPlastic_F", { 11398.8, 11372.4, -0.000823975 }, 359.71 },
{ "Land_BarrelWater_F", { 11390, 11370.7, 0.000457764 }, 359.997 },
{ "Land_Chapel_V2_F", { 11429, 11352.8, 0.258972 }, 126.48 },
{ "Land_u_House_Big_02_V1_F", { 11417.7, 11362.8, 0 }, 36.7593 },
{ "Land_Cages_F", { 11401.1, 11369.3, 0.00457764 }, 76.3813 },
{ "Land_GarbagePallet_F", { 11426.1, 11367.2, 0.00119019 }, 0.234284 },
{ "Land_i_Stone_HouseBig_V3_F", { 11405.1, 11375.6, 0 }, 129.339 },
{ "Land_Slums02_4m", { 11414.1, 11377.4, 0.0258484 }, 39.2923 },
{ "Land_Slums02_4m", { 11417, 11375.1, 0.00820923 }, 39.284 },
{ "Land_Slums02_4m", { 11407.2, 11383.1, 0.00335693 }, 39.2788 },
{ "Land_Slums02_4m", { 11419.8, 11372.7, 0.00827026 }, 39.284 },
{ "Land_Wreck_Truck_dropside_F", { 11429.9, 11380.5, 0.000671387 }, 0.00762456 },
{ "Land_d_Shop_01_V1_F", { 11453.7, 11350.2, 0.298096 }, 127.575 },
{ "Land_Garbage_square5_F", { 11449.2, 11357.1, 3.05176e-005 }, 0.000244135 },
{ "Land_GarbagePallet_F", { 11452.4, 11353.4, -0.0103455 }, 0.234284 },
{ "Land_PhoneBooth_02_F", { 11459, 11364.1, 3.05176e-005 }, 124.922 },
{ "Land_d_Addon_02_V1_F", { 11436, 11377.1, 3.05176e-005 }, 37.7171 },
{ "Land_i_Stone_HouseSmall_V3_F", { 11464.1, 11229.2, 0 }, 206.45 },
{ "Land_Wired_Fence_8mD_F", { 11480.2, 11247.8, 0.228699 }, 359.571 },
{ "Land_GarbagePallet_F", { 11473.9, 11223.8, -0.0253296 }, 0.234284 },
{ "Land_Wired_Fence_8m_F", { 11476.1, 11253.8, 0.219452 }, 359.549 },
{ "Land_d_Shop_02_V1_F", { 11460.3, 11357.9, 0 }, 215.984 },
{ "Land_Garbage_line_F", { 11464.2, 11351.2, 0.000854492 }, 52.1301 },
{ "Land_WheelieBin_01_F", { 11461.5, 11349.7, 0 }, 0.0691075 },
{ "Land_GarbagePallet_F", { 11463.7, 11363.2, -0.0102539 }, 0.234284 },
{ "Land_GarbageContainer_closed_F", { 11463.6, 11351.2, 3.05176e-005 }, 130.585 },
{ "Land_Timbers_F", { 11469.3, 11389.7, 0.0153503 }, 359.649 },
{ "Land_d_Stone_HouseBig_V1_F", { 11461.3, 11389.2, 0 }, 0 },
{ "Land_GarbagePallet_F", { 11466.6, 11393.2, -0.0388489 }, 0.234284 },
{ "Land_Wreck_Van_F", { 11462.1, 11396.9, -0.0365906 }, 282.773 },
{ "Land_Ancient_Wall_8m_F", { 11535.8, 11265.3, -0.125122 }, 144.692 },
{ "Land_Ancient_Wall_4m_F", { 11556.4, 11279, -0.112091 }, 148.121 },
{ "Land_Ancient_Wall_8m_F", { 11567.8, 11287.4, 0.0343018 }, 144.515 },
{ "Land_HBarrier_5_F", { 11577.4, 11307.8, -0.0361633 }, 324.948 },
{ "Land_HBarrier_5_F", { 11572.7, 11307.1, 0.0201416 }, 21.0099 },
{ "Land_HBarrier_5_F", { 11562.9, 11309.6, 0.0461121 }, 48.0841 },
{ "Land_HBarrier_5_F", { 11567.4, 11307.6, 0.0220337 }, 355.004 },
{ "Land_Cargo_HQ_V3_F", { 11571.9, 11330.1, -0.0317078 }, 268 },
{ "Land_HBarrier_5_F", { 11555.9, 11323.6, 0.0753479 }, 231.934 },
{ "Land_HBarrier_5_F", { 11562.4, 11326.7, -0.125763 }, 49.9669 },
{ "Land_HBarrier_5_F", { 11560.6, 11331.7, -0.0820618 }, 87.9061 },
{ "Land_HBarrier_5_F", { 11564.1, 11322.1, 0.0942078 }, 88.1076 },
{ "Land_HBarrier_5_F", { 11557.4, 11319, -0.0873108 }, 272.274 },
{ "Land_HBarrier_5_F", { 11564.8, 11339.8, 0.0496521 }, 177.031 },
{ "Land_HBarrier_5_F", { 11561.2, 11337.2, -0.0386963 }, 107.942 },
{ "Land_HBarrier_5_F", { 11557.3, 11313.6, -0.120697 }, 271.244 },
{ "Land_HBarrier_5_F", { 11566.1, 11318.1, 0.0227051 }, 36.0297 },
{ "Land_HBarrier_5_F", { 11557.1, 11332, 0.112 }, 177.096 },
{ "Land_HBarrier_3_F", { 11559.8, 11311.4, 0.0235596 }, 180.944 },
{ "Land_PortableLight_double_F", { 11578.2, 11325.2, -0.00167847 }, 357.96 },
{ "Land_PortableLight_double_F", { 11565.8, 11331, 0.00180054 }, 87.9936 },
{ "Land_PortableLight_double_F", { 11579.4, 11336.2, 0.00131226 }, 229.004 },
{ "Land_HBarrier_5_F", { 11570.4, 11340, 0.0419312 }, 176.992 },
{ "Land_HBarrier_5_F", { 11575.8, 11340.3, -0.00686646 }, 176.886 },
{ "Land_Cargo_Patrol_V3_F", { 11598.1, 11309, -0.261566 }, 315 },
{ "Land_HBarrier_5_F", { 11604.1, 11309.6, 0.263916 }, 91.8105 },
{ "Land_HBarrier_5_F", { 11592.5, 11305.2, 0.325073 }, 42.8493 },
{ "Land_HBarrier_5_F", { 11587.8, 11308.1, 0.193237 }, 23.3538 },
{ "Land_HBarrier_5_F", { 11602, 11304.9, -0.0116272 }, 133.822 },
{ "Land_HBarrier_5_F", { 11582.7, 11309.1, -0.0935974 }, 179.212 },
{ "Land_HBarrier_5_F", { 11597.2, 11303.2, 0.501007 }, 1.93882 },
{ "Land_PortableLight_double_F", { 11600.9, 11306.2, 0.0727539 }, 311.827 },
{ "Land_Wreck_HMMWV_F", { 11601.7, 11318.8, 0.0107117 }, 0.254173 },
{ "Land_HBarrier_5_F", { 11580.2, 11338.1, -0.0474548 }, 230.951 },
{ "Land_HBarrier_5_F", { 11604.3, 11315.3, 0.15564 }, 90.3624 },
{ "Land_HBarrier_5_F", { 11605.4, 11320.6, 0.00527954 }, 108.727 },
{ "Land_HBarrier_5_F", { 11605.2, 11325.8, -0.31781 }, 239.194 },
{ "Land_HBarrier_5_F", { 11602.4, 11336.2, -0.191833 }, 230.52 },
{ "Land_HBarrier_5_F", { 11587, 11332.5, 0.0287476 }, 272.043 },
{ "Land_HBarrier_5_F", { 11588, 11327.3, -0.0723877 }, 242.815 },
{ "Land_HBarrier_5_F", { 11604, 11331, 0.0708313 }, 271.184 },
{ "Land_HBarrier_5_F", { 11589.1, 11322.3, -0.0202026 }, 273.918 },
{ "Land_HBarrier_5_F", { 11586.6, 11318.1, 0.0480652 }, 330.046 },
{ "Land_HBarrier_5_F", { 11581.5, 11316.5, 0.0766602 }, 358.179 },
{ "Land_HBarrier_5_F", { 11584.9, 11336.1, -0.142578 }, 180.844 },
{ "Land_Tyres_F", { 11589.7, 11334.3, -0.0446472 }, 202.731 },
{ "Land_ToiletBox_F", { 11585.2, 11333.7, 0.00323486 }, 359.952 },
{ "Land_ToiletBox_F", { 11582.7, 11333.7, 0.00323486 }, 359.965 },
{ "Land_WaterTank_F", { 11584.8, 11322.4, 0.00262451 }, 270.952 },
{ "Land_Pallet_F", { 11599.1, 11334.4, 0.0012207 }, 167.913 },
{ "Land_PaperBox_open_empty_F", { 11593.4, 11312.9, 0.0102844 }, 166.48 },
{ "Land_PaperBox_closed_F", { 11595.3, 11314, 0.0174255 }, 20.1509 },
{ "Land_Pallets_stack_F", { 11599, 11336.3, 0.00747681 }, 107.491 },
{ "Land_BarrelSand_grey_F", { 11582.4, 11318.9, 0.00143433 }, 200.963 },
{ "Land_BarrelEmpty_F", { 11583, 11319.7, 0.00137329 }, 143.048 },
{ "Land_wpp_Turbine_V2_F", { 11630.6, 11256.4, 3.05176e-005 }, 0 },
{ "Land_wpp_Turbine_V2_F", { 11634.6, 11338.9, 0 }, 0 },
{ "Land_wpp_Turbine_V2_F", { 11645.6, 11296.8, 0 }, 0 },
// North East
{"Land_ClutterCutter_medium_F",{10679.6,9435.62,7.62939e-006},0.0643096},
{"Land_LampShabby_F",{10673.1,9422,-7.62939e-006},48.6578},
{"Land_WoodenCart_F",{10677.4,9442.94,-0.0199509},0.1255},
{"Land_Slums02_4m",{10674.5,9433.75,0.00186157},224.018},
{"Land_Slums02_4m",{10673.4,9444.57,0.0374298},309.223},
{"Land_Slums02_4m",{10672.1,9437.09,-0.00406647},244.438},
{"Land_Slums02_4m",{10676.8,9446.41,0.0543442},0.119723},
{"Land_Slums02_4m",{10671.6,9441.05,0.0140839},283.663},
{"Land_Garbage_line_F",{10674,9443.57,0.0653152},217.23},
{"Land_JunkPile_F",{10679.5,9444.45,0.00154877},359.709},
{"Land_InvisibleBarrier_F",{10673.7,9444.29,0},131.152},
{"Land_InvisibleBarrier_F",{10672,9440.85,7.62939e-006},285.049},
{"Land_InvisibleBarrier_F",{10676.8,9445.61,0},182.439},
{"Land_InvisibleBarrier_F",{10672.5,9437.2,0},63.0227},
{"Land_InvisibleBarrier_F",{10674.8,9434.01,0},43.6106},
{"Land_Campfire_F",{10679.6,9435.56,0.000465393},359.367},
{"Land_WoodPile_F",{10675.9,9441.61,0.00293732},359.088},
{"Land_CncBarrier_F",{10677,9430.56,3.8147e-005},38.2729},
{"Land_Axe_F",{10676.6,9441.46,-0.00322723},73.9678},
{"Land_HelipadEmpty_F",{10686.6,9418.95,4.57764e-005},0.0323291},
{"Land_ClutterCutter_large_F",{10686.8,9435.84,-7.62939e-006},359.153},
{"Land_Garbage_square5_F",{10690.6,9430.02,0.000267029},0.00641501},
{"Land_Slums02_4m",{10684.4,9427.61,0.00271606},33.3528},
{"Land_Slums02_4m",{10694.4,9429.21,0.0391235},116.206},
{"Land_Slums02_4m",{10690.7,9442.29,0.0845108},48.305},
{"Land_Slums02_4m",{10694.1,9436.97,0.0754395},67.0969},
{"Land_Slums02_4m",{10695.1,9433.24,0.0348969},86.0347},
{"Land_Slums02_4m",{10687.4,9444.58,0.0864868},22.401},
{"Land_Slums02_4m",{10687.7,9426.84,0.00393677},356.182},
{"Land_Slums02_4m",{10680.9,9446.4,0.0634003},1.21943},
{"Land_Slums02_4m",{10681,9429.68,0.00272369},33.3528},
{"Land_Slums02_4m",{10691.6,9426.76,-0.00839233},160.21},
{"Land_TentDome_F",{10687.7,9442.09,-0.0244064},290.361},
{"Land_InvisibleBarrier_F",{10680.9,9445.82,0},182.266},
{"Land_InvisibleBarrier_F",{10684.1,9427.22,0},33.8221},
{"Land_InvisibleBarrier_F",{10680.8,9429.46,0},33.8225},
{"Land_InvisibleBarrier_F",{10690.3,9441.82,0},227.277},
{"Land_InvisibleBarrier_F",{10694.5,9433.07,0},268.195},
{"Land_InvisibleBarrier_F",{10687,9444.06,7.62939e-006},196.736},
{"Land_InvisibleBarrier_F",{10687.7,9426.38,0},351.992},
{"Land_InvisibleBarrier_F",{10691.6,9427.21,-7.62939e-006},334.964},
{"Land_InvisibleBarrier_F",{10693.8,9436.79,0},248.547},
{"Land_InvisibleBarrier_F",{10687.7,9426.38,0},352.452},
{"Land_InvisibleBarrier_F",{10693.9,9429.35,0},297.599},
{"Land_WorkStand_F",{10689.6,9431.71,0.00012207},0.4623},
{"Land_FieldToilet_F",{10700.1,9449.24,0.0270386},229.999},
{"Land_PortableLight_double_F",{10688.4,9426.99,-7.62939e-006},152.941},
{"Land_Cages_F",{10691,9428.64,9.91821e-005},359.15},
{"Land_WoodenTable_large_F",{10685.9,9434.16,0.000358582},143.934},
{"Land_Pallets_stack_F",{10692.5,9430.88,0.0114899},359.393},
{"Land_WheelCart_F",{10683.8,9441.73,0.0119476},181.87},
{"Land_ShelvesWooden_khaki_F",{10685.5,9440.39,0.0146866},238.174},
{"Land_CampingChair_V1_F",{10683.2,9430.95,0.00310516},0.668239},
{"Land_CratesPlastic_F",{10699.1,9449.65,0.00570679},110.237},
{"Land_BarrelWater_F",{10684.7,9440.29,0.0127869},2.49711},
{"Land_Slums02_pole",{10682.8,9445.84,0.00499725},0.672715},
{"Land_Slums02_pole",{10691.6,9440.46,0.00566864},321.615},
{"Land_GasTank_01_khaki_F",{10690.6,9431.43,0.00012207},200.712},
// South East
{ "Land_spp_Mirror_F", { 12021.8, 5100.76, -7.62939e-006 }, 182.521 },
{ "Land_spp_Mirror_Broken_F", { 12031.5, 5104.48, 0 }, 182.521 },
{ "Land_Slums01_8m", { 12050.9, 5109.1, -0.00202179 }, 359.933 },
{ "Land_Slums01_8m", { 12051, 5121.93, 0.0187302 }, 118.143 },
{ "Land_Slums01_8m", { 12054.5, 5128.94, 0.0217743 }, 118.269 },
{ "Land_WoodPile_large_F", { 12057.6, 5121.48, -9.15527e-005 }, 21.8792 },
{ "Land_WoodPile_large_F", { 12057.1, 5119.12, 9.91821e-005 }, 203.739 },
{ "Land_WoodPile_large_F", { 12058.9, 5123.89, -0.00171661 }, 197.098 },
{ "Land_WoodPile_large_F", { 12055.8, 5119.65, -9.15527e-005 }, 16.6504 },
{ "Land_Garbage_square3_F", { 12058.5, 5119.32, -0.000190735 }, 200.54 },
{ "Land_Cages_F", { 12051, 5119.59, 0.00479126 }, 22.0683 },
{ "Land_HelipadEmpty_F", { 12058.1, 5100.99, 0 }, 359.533 },
{ "Land_cargo_addon02_V2_F", { 12075.8, 5110.74, 0 }, 313.277 },
{ "Land_Slums01_8m", { 12067.6, 5108.54, -0.00462341 }, 194.501 },
{ "Land_Slums01_8m", { 12067, 5122.79, -0.00128937 }, 106.496 },
{ "Land_Slums01_8m", { 12078.5, 5109.96, -0.00531769 }, 302.472 },
{ "Land_Slums01_8m", { 12080.8, 5125.66, -0.0038147 }, 62.4229 },
{ "Land_Slums01_8m", { 12071.9, 5107.49, -0.00380707 }, 194.501 },
{ "Land_Wreck_Offroad_F", { 12074.4, 5127.79, 0.0411682 }, 325.773 },
{ "Land_LampShabby_F", { 12070.6, 5109.13, -0.0195618 }, 0 },
{ "Land_Wreck_Car3_F", { 12078.6, 5126.01, 0.0244293 }, 146.6 },
{ "Land_TentDome_F", { 12076.8, 5111.69, 3.8147e-005 }, 359.62 },
{ "Land_Garbage_line_F", { 12078, 5124.46, -0.0770569 }, 142.344 },
{ "Land_JunkPile_F", { 12073.8, 5125.85, -0.0101395 }, 359.544 },
{ "Land_InvisibleBarrier_F", { 12065.4, 5108.95, 0 }, 16.7308 },
{ "Land_InvisibleBarrier_F", { 12074.6, 5106.78, 0 }, 19.2329 },
{ "Land_InvisibleBarrier_F", { 12081.8, 5123.84, 0 }, 243.383 },
{ "Land_InvisibleBarrier_F", { 12070.3, 5107.81, 0 }, 16.7344 },
{ "Land_InvisibleBarrier_F", { 12079.7, 5111.63, 0 }, 122.723 },
{ "Land_InvisibleBarrier_F", { 12080.1, 5127.47, 0 }, 239.065 },
{ "Land_InvisibleBarrier_F", { 12077.2, 5107.93, 0 }, 122.631 },
{ "Land_InvisibleBarrier_F", { 12069.1, 5128.14, 0 }, 122.279 },
{ "Land_InvisibleBarrier_F", { 12067.6, 5124.65, 0 }, 112.368 },
{ "Land_InvisibleBarrier_F", { 12066.5, 5120.62, 0 }, 104.748 },
{ "Land_Campfire_F", { 12070.3, 5113.58, 0.00119019 }, 0 },
{ "Land_WoodPile_F", { 12073, 5117.34, -0.00229645 }, 236.097 },
{ "Land_CncBarrier_F", { 12065.4, 5116.71, 0 }, 103.32 },
{ "Land_CncBarrier_stripes_F", { 12082.8, 5121.11, 0.0150528 }, 90.5238 },
{ "Land_CncBarrier_stripes_F", { 12082.3, 5117.84, 0.0185394 }, 104.536 },
{ "Land_CncBarrier_stripes_F", { 12064.5, 5112.14, 0.0020752 }, 279.748 },
{ "Land_CncBarrier_stripes_F", { 12081.2, 5114.26, 0.0116425 }, 300.824 },
{ "Land_WheelCart_F", { 12073, 5108.21, 0.00278473 }, 301.42 },
{ "Land_Slums01_pole", { 12068.4, 5126.9, 0.000801086 }, 260.084 },
{ "Land_Portable_generator_F", { 12069.8, 5108.61, 0.00123596 }, 359.87 },
{ "Land_CampingChair_V2_F", { 12076.1, 5109.27, 0.00286865 }, 99.2684 },
{ "Land_CratesPlastic_F", { 12072.4, 5118.94, 3.05176e-005 }, 359.993 },
{ "Land_BarrelWater_F", { 12073.1, 5110.06, 0.00231171 }, 359.255 },
{ "Land_Axe_fire_F", { 12077.1, 5109.95, -0.00322723 }, 359.907 },
{ "Land_Slums01_8m", { 12070.5, 5130.62, 0.0177002 }, 300.964 },
{ "Land_Slums01_8m", { 12075.7, 5131.46, 0.00196838 }, 40.0636 },
{ "Land_Slums01_8m", { 12060.6, 5133.4, 0.000160217 }, 168.792 },
{ "Land_LampShabby_F", { 12063, 5131.89, 0 }, 169.228 },
{ "Land_InvisibleBarrier_F", { 12073.8, 5133.13, -7.62939e-006 }, 221.588 },
{ "Land_InvisibleBarrier_F", { 12071.2, 5131.82, 0 }, 122.469 },
{ "Land_InvisibleBarrier_F", { 12077.1, 5130.37, 0 }, 221.588 },
{ "Land_Slums01_pole", { 12072.6, 5134.17, 0.00662994 }, 359.468 },
{ "Land_Slums01_pole", { 12064.7, 5134.13, 0.0012207 }, 359.827 },
{ "Land_Garbage_square5_F", { 12093.4, 5120.34, 0.00907135 }, 359.692 },
{ "Land_FieldToilet_F", { 12093.7, 5119.73, 0.0153198 }, 155.607 },
{ "Land_Grave_rocks_F", { 12116.8, 5130.7, 0 }, 0 },
// South West
{ "Flag_US_F", { 4542.15, 4522, -1.52588e-005 }, 209.275 },
{ "Land_HelipadEmpty_F", { 4552.98, 4515.85, 0 }, 0 },
{ "Land_ToiletBox_F", { 4556.27, 4549.86, 0.175018 }, 0.00193372 },
{ "Land_Timbers_F", { 4564.65, 4516.04, 0.199997 }, 325.751 },
{ "Land_Wreck_Van_F", { 4573.34, 4506.86, 0.199997 }, 151.285 },
{ "Land_Garbage_square5_F", { 4588.59, 4516.25, 0.199997 }, 0 },
{ "Land_LampStreet_small_F", { 4577.73, 4514.35, 0.199997 }, 239.902 },
{ "Land_Pipes_large_F", { 4581.84, 4521.72, 0.174988 }, 146.546 },
{ "Land_Pallets_F", { 4586.84, 4514.64, 0.275681 }, 335.695 },
{ "Land_EngineCrane_01_F", { 4581.71, 4510.71, 0.174988 }, 95.9295 },
{ "Land_GarbageContainer_open_F", { 4582.15, 4523.48, 0.175003 }, 151.569 },
{ "Land_Workbench_01_F", { 4585.25, 4521.76, 0.174988 }, 50.0718 },
{ "Barrels", { 4589.08, 4516.4, 0.225494 }, 239.1 },
{ "SignAd_SponsorS_Redstone_F", { 4585.1, 4511.84, 0 }, 142.53 },
{ "Land_WoodenTable_large_F", { 4579.26, 4513.71, 0.175003 }, 142.285 },
{ "Land_Sink_F", { 4573.95, 4519.14, 0.175003 }, 51.2154 },
{ "Land_CncBarrier_stripes_F", { 4578.63, 4513.11, 0.199997 }, 231.189 },
{ "Land_CncBarrier_stripes_F", { 4577.53, 4518.75, 0.199997 }, 325.531 },
{ "Land_CncBarrier_stripes_F", { 4576.61, 4515.73, 0.199997 }, 231.189 },
{ "Land_WoodenTable_small_F", { 4578.02, 4515.24, 0.174988 }, 319.098 },
{ "Land_WeldingTrolley_01_F", { 4585.96, 4513.3, 0.174988 }, 236.669 },
{ "Land_Bench_F", { 4573.12, 4520.15, 0.175003 }, 232.492 },
{ "Land_ToolTrolley_01_F", { 4586.23, 4520.34, 0.175018 }, 228.625 },
{ "Land_ToolTrolley_02_F", { 4587.01, 4519.39, 0.174973 }, 320.682 },
{ "Land_PlasticCase_01_large_F", { 4588.17, 4518.07, 0.174988 }, 321.256 },
{ "Land_WheelieBin_01_F", { 4581.21, 4522.58, 0.175003 }, 139.325 },
{ "Land_WaterCooler_01_old_F", { 4575.21, 4518.16, 0.175064 }, 226.8 },
{ "Land_ChairWood_F", { 4583.23, 4521.15, 0.175018 }, 270.935 },
{ "Land_BarrelWater_F", { 4574.63, 4517.66, 0.175049 }, 354.242 },
{ "Land_PlasticCase_01_medium_F", { 4579.23, 4513.68, 0.175003 }, 120.138 },
{ "Land_Tyre_F", { 4576.11, 4505.51, 0.0297241 }, 358.563 },
{ "Land_GasTank_01_blue_F", { 4588.49, 4515.58, 0.175034 }, 327.133 },
{ "Land_GasTank_01_yellow_F", { 4588.23, 4515.09, 0.175034 }, 247.551 },
{ "Land_PlasticCase_01_small_F", { 4578.02, 4515.24, 0.174988 }, 137.793 },
{ "Land_SurvivalRadio_F", { 4586.07, 4521.12, 0.941803 }, 269.968 },
{ "Fridge_01_closed_F", { 4576.98, 4516.48, 0.175064 }, 238.777 },
// Boat Vendor
{ "Land_WorkStand_F", { 13678.8, 4032.35, -0.00124931 }, 359.908 },
{ "Land_WheelCart_F", { 13671.7, 4037.31, 0.00549078 }, 0.0201131 },
{ "Land_TentDome_F", { 13661.6, 4027.37, -0.014101 }, 359.452 },
{ "Land_Pier_Box_F", { 13696.5, 4033.33, 0.599987 }, 0 },
{ "Land_Campfire_F", { 13681.2, 4035.13, 0.00247145 }, 0.1179 },
{ "Land_Wreck_Traw_F", { 13710.9, 3862.6, 0.242525 }, 0.611813 },
{ "Land_WavePowerPlant_F", { 13878.7, 3932.25, 9.53635 }, 345.483 },
// Stary Sobor Military
{ "Land_HBarrierBig_F", { 6296.66, 7795.88, -0.00692749 }, 219.542 },
{ "Land_HBarrier_5_F", { 6290.16, 7793.43, 0.0203857 }, 218.553 },
{ "Land_HBarrier_5_F", { 6297.02, 7790.79, 0.110291 }, 130.462 },
{ "Land_HBarrier_5_F", { 6285.72, 7796.98, 0.0177002 }, 219.491 },
{ "Land_PaperBox_closed_F", { 6292.73, 7799.57, -0.00213623 }, 221.545 },
{ "Land_WaterTank_F", { 6299.27, 7797.89, 0.00109863 }, 219.43 },
{ "Land_HBarrierBig_F", { 6272.08, 7813.91, 0.00427246 }, 193.847 },
{ "Land_HBarrierBig_F", { 6297.31, 7802.14, -0.00527954 }, 307.543 },
{ "Land_HBarrierBig_F", { 6276.2, 7808.03, 0.000549316 }, 83.8871 },
{ "Land_HBarrierBig_F", { 6280.2, 7801.39, -0.00228882 }, 37.4585 },
{ "Land_HBarrier_5_F", { 6288.43, 7824.38, 0.00488281 }, 217.5 },
{ "Land_HBarrier_5_F", { 6293.44, 7822.44, -0.00402832 }, 175.45 },
{ "Land_PortableLight_double_F", { 6278.42, 7808.37, 0 }, 261.498 },
{ "Land_Pallets_stack_F", { 6291.09, 7800.92, 0.000518799 }, 203.664 },
{ "Land_HBarrierBig_F", { 6293.92, 7846.05, -0.000823975 }, 37.5492 },
{ "Land_HBarrier_5_F", { 6288.87, 7844.77, 0.0146179 }, 125.61 },
{ "Land_HBarrier_5_F", { 6287.4, 7836.51, 0.00183105 }, 36.5104 },
{ "Land_HBarrier_5_F", { 6285.68, 7840.26, 0.00210571 }, 125.565 },
{ "Land_PortableLight_double_F", { 6288.7, 7841.98, 0 }, 125.471 },
{ "Land_Cargo_Patrol_V1_F", { 6291.25, 7840.74, 0 }, 125.498 },
{ "Land_BagBunker_Large_F", { 6284.77, 7830.87, 0.000396729 }, 125.544 },
{ "Land_Cargo_Patrol_V1_F", { 6315.33, 7798.51, 0 }, 306.498 },
{ "Land_HBarrierBig_F", { 6304.61, 7794.26, -0.00469971 }, 164.31 },
{ "Land_HBarrierBig_F", { 6312.32, 7793.03, -0.00683594 }, 219.624 },
{ "Land_HBarrier_5_F", { 6317.45, 7794.16, 0.0157166 }, 307.501 },
{ "Land_HBarrier_5_F", { 6320.83, 7798.61, 0.0254822 }, 307.457 },
{ "Land_PortableLight_double_F", { 6317.92, 7796.97, 0 }, 307.493 },
{ "Land_PortableLight_double_F", { 6309.06, 7797.2, 0 }, 188.5 },
{ "Land_ToiletBox_F", { 6314.53, 7793.88, 0.000274658 }, 132.45 },
{ "Land_BagBunker_Large_F", { 6326.43, 7813.56, -0.000640869 }, 307.499 },
{ "Land_HBarrier_5_F", { 6319.26, 7802.51, -0.00213623 }, 219.502 },
{ "Land_HBarrier_5_F", { 6318.51, 7814.62, -0.00192261 }, 219.497 },
{ "Land_HBarrier_5_F", { 6329.87, 7820.18, 0.0175171 }, 299.066 },
{ "Land_HBarrier_5_F", { 6301.78, 7807.92, -0.00479126 }, 307.524 },
{ "Land_HBarrier_5_F", { 6313.51, 7816.39, -0.000457764 }, 171.499 },
{ "Land_TentA_F", { 6325.46, 7824.22, 9.15527e-005 }, 94.5132 },
{ "Land_TentA_F", { 6323.97, 7829.37, 0.00863647 }, 82.3408 },
{ "Land_Campfire_F", { 6317.24, 7829.11, -0.0592346 }, 26.001 },
{ "Land_WoodPile_F", { 6312.93, 7826.2, 0.00164795 }, 1.00009 },
{ "Land_WaterBarrel_F", { 6304.27, 7808.83, -3.05176e-005 }, 136.44 },
{ "Land_Sack_F", { 6326, 7822.95, 0.010437 }, 353.513 },
{ "Land_Basket_F", { 6325.17, 7822.36, 9.15527e-005 }, 137.301 },
{ "Land_MetalBarrel_F", { 6305.22, 7808.31, 0 }, 244.342 },
{ "Land_BarrelTrash_grey_F", { 6305.45, 7807.6, 0.000549316 }, 313.436 },
{ "Land_BarrelEmpty_grey_F", { 6304.88, 7807.12, 0 }, 307.487 },
{ "Land_WoodenLog_F", { 6317.17, 7827.17, 0.000335693 }, 77.1906 },
{ "Land_Axe_F", { 6313.81, 7826.37, -0.00338745 }, 248.999 },
{ "Land_CanisterFuel_F", { 6313.75, 7825.28, 6.10352e-005 }, 34.3382 },
{ "Land_Canteen_F", { 6323.97, 7823.34, 9.15527e-005 }, 347.753 },
{ "Land_TinContainer_F", { 6317.53, 7827.55, 0.00189209 }, 235.145 },
{ "Land_Camping_Light_F", { 6317.18, 7827.1, 0.481659 }, 78.9907 },
{ "Land_HBarrierBig_F", { 6325.11, 7838.57, 0.00241089 }, 219.523 },
{ "Land_HBarrierBig_F", { 6301.64, 7845.13, -0.00299072 }, 342.464 },
{ "Land_HBarrierBig_F", { 6309.64, 7843.89, -0.00140381 }, 37.508 },
{ "Land_HBarrierBig_F", { 6317.6, 7841.65, 0.00088501 }, 187.754 },
{ "Land_HBarrierBig_F", { 6309.25, 7837.67, 0.0010376 }, 125.494 },
{ "Land_HBarrierBig_F", { 6328.96, 7831.3, 0.000183105 }, 265.544 },
{ "Land_HBarrier_5_F", { 6305.08, 7831.75, 0.013855 }, 306.499 },
{ "Land_TentA_F", { 6323.29, 7833.88, -3.05176e-005 }, 56.9963 },
{ "Land_ToiletBox_F", { 6306.66, 7840.59, 0.000305176 }, 37.4933 },
{ "Land_Pallets_F", { 6305.09, 7836.28, 0.00402832 }, 301.498 },
{ "Land_WoodenBox_F", { 6315.52, 7830.8, 0.000152588 }, 135.939 },
{ "Land_HBarrierBig_F", { 6355.05, 7758.61, 0.01651 }, 180.899 },
{ "Land_HBarrier_3_F", { 6341.05, 7763.39, -0.024231 }, 230.09 },
{ "Land_PaperBox_closed_F", { 6355.89, 7769.34, 0.000213623 }, 300.988 },
{ "Land_HBarrierBig_F", { 6356.52, 7790.86, -0.0449524 }, 90.0002 },
{ "Land_HBarrierBig_F", { 6334.66, 7777.03, 0.000701904 }, 260.011 },
{ "Land_HBarrierBig_F", { 6356.92, 7782.55, -0.0672607 }, 89.0069 },
{ "Land_HBarrier_5_F", { 6358.21, 7796.04, -0.00231934 }, 178 },
{ "Land_HBarrier_5_F", { 6359.02, 7777.34, -0.0152588 }, 177.997 },
{ "Land_HBarrier_3_F", { 6345.2, 7793.81, 0.00137329 }, 299 },
{ "Land_HBarrier_3_F", { 6349.54, 7771.55, -0.00192261 }, 230.001 },
{ "Land_HBarrier_3_F", { 6332.6, 7798.95, 0.00323486 }, 299 },
{ "Land_PaperBox_closed_F", { 6357.05, 7771.16, 0 }, 270 },
{ "Land_Pallets_stack_F", { 6348.26, 7791.23, 3.05176e-005 }, 225.003 },
{ "Land_Pallets_stack_F", { 6348.28, 7788.84, 0.00216675 }, 263.003 },
{ "Land_HBarrierBig_F", { 6350.34, 7814.14, -0.000396729 }, 134.998 },
{ "Land_Razorwire_F", { 6352.86, 7822.44, 0.000793457 }, 196.803 },
{ "Land_HBarrier_5_F", { 6330.96, 7824.57, -0.0115967 }, 68.0471 },
{ "Land_HBarrierBig_F", { 6375.54, 7759.76, 0.0117493 }, 178.122 },
{ "Land_HBarrier_3_F", { 6386.83, 7765.76, 0.0414429 }, 128.913 },
{ "Land_Cargo_Tower_V1_F", { 6364.71, 7786.91, 0.00137329 }, 269 },
{ "Land_HBarrierBig_F", { 6371.91, 7791.33, -0.0449524 }, 90 },
{ "Land_HBarrierBig_F", { 6372.13, 7782.9, -0.0224304 }, 90.0001 },
{ "Land_HBarrier_5_F", { 6370.43, 7777.76, -0.0215149 }, 177.996 },
{ "Land_HBarrier_5_F", { 6369.94, 7796.64, -0.00372314 }, 179 },
{ "Land_HBarrier_3_F", { 6380.18, 7795.26, 0.00366211 }, 244.001 },
{ "Land_HBarrier_3_F", { 6378.41, 7772.92, -0.0100403 }, 129 },
{ "Land_ToiletBox_F", { 6360.83, 7789.36, -3.05176e-005 }, 269.005 },
{ "Land_WaterTank_F", { 6375.86, 7785.65, 0.00012207 }, 0.000633659 },
{ "Land_WaterTank_F", { 6375.74, 7788.49, 0.000183105 }, 0.000302211 },
{ "Land_PortableLight_double_F", { 6360.99, 7782.88, 8.57773 }, 88.0059 },
{ "Land_PortableLight_double_F", { 6363.69, 7791.14, 4.66943 }, 272 },
{ "Land_HBarrierBig_F", { 6375.25, 7815.47, 0.00146484 }, 226.006 },
{ "Land_Razorwire_F", { 6361.44, 7821.18, -0.0170898 }, 353.994 },
{ "Land_HBarrier_3_F", { 6363.49, 7807.3, 0.00195313 }, 357.999 },
{ "Land_HBarrierBig_F", { 6390.12, 7781.39, -0.000366211 }, 275 },
{ "Land_HBarrier_3_F", { 6391.39, 7801.7, 0.00195313 }, 244 },
// NW Airfield
{ "Land_Airport_Tower_F", { 4327.37, 10905.9, 0 }, 61.1295 },
{ "Land_Offices_01_V1_F", { 4573.46, 9819.88, 0 }, 244.926 },
{ "Land_i_Barracks_V2_F", { 4598.97, 9720.41, 0 }, 100.719 },
// Wind Farm
{"Land_wpp_Turbine_V2_F", { 5449.11, 13270.3, -0.00350952 }, 0 },
{"Land_wpp_Turbine_V2_F", { 5477.64, 13280.7, 3.05176e-005 }, 0 },
{"Land_spp_Transformer_F", { 5478.29, 13300.4, 0 }, 0},
{"Land_dp_transformer_F", { 5482.13, 13300.9, -3.05176e-005 }, 0 },
{"Land_wpp_Turbine_V2_F", { 5503.9, 13291.3, 0.0585327 }, 0 },
// Old Hero small military post.
{ "Land_HBarrier_5_F", { 12899.8, 12748.4, 0.02034 }, 354.796 },
{ "Land_HBarrier_5_F", { 12894.1, 12748, 0.013916 }, 354.737 },
{ "Land_Cargo_Patrol_V2_F", { 12897.5, 12750.2, 0 }, 85.8348 },
{ "Land_HBarrier_5_F", { 12898.8, 12763.6, 0.00309753 }, 354.799 },
{ "Land_HBarrier_5_F", { 12891.9, 12751.4, 0.132568 }, 85.9089 },
{ "Land_HBarrier_5_F", { 12893.1, 12763.1, 0.0252838 }, 354.791 },
{ "Land_Garbage_square5_F", { 12898.5, 12754.1, 0.403336 }, 356.786 },
{ "Land_HBarrier_3_F", { 12894.2, 12753.5, -0.00849915 }, 176.727 },
{ "Land_Sign_WarningMilitaryArea_F", { 12878.3, 12753.7, 0 }, 86.9098 },
{ "Land_Cargo_HQ_V2_F", { 12921.2, 12747.4, 1.52588e-005 }, 354.835 },
{ "Land_HBarrier_5_F", { 12906.8, 12739.5, 0.185944 }, 32.8205 },
{ "Land_HBarrier_5_F", { 12928.2, 12739.4, -0.0260773 }, 353.715 },
{ "Land_HBarrier_5_F", { 12922.9, 12739.1, -0.00527954 }, 353.753 },
{ "Land_HBarrier_5_F", { 12917.2, 12738.6, -0.00486755 }, 353.757 },
{ "Land_HBarrier_5_F", { 12912.2, 12738.2, -0.0137329 }, 353.744 },
{ "Land_HBarrier_5_F", { 12901.8, 12744.8, 0.200394 }, 86.3687 },
{ "Land_Garbage_square5_F", { 12909.3, 12746, 1.08038 }, 303.574 },
{ "Land_HBarrier_3_F", { 12903.3, 12741.9, -0.0743713 }, 214.774 },
{ "Land_Cargo_Patrol_V2_F", { 12924.7, 12773.8, 0 }, 210.835 },
{ "Land_ScrapHeap_2_F", { 12915.2, 12759.6, 0.0301971 }, 169.814 },
{ "Land_Loudspeakers_F", { 12915.6, 12750.6, 0 }, 356.835 },
{ "Land_ScrapHeap_1_F", { 12921.4, 12760.3, 0.0139313 }, 349.801 },
{ "Land_HBarrier_5_F", { 12921.6, 12756, -0.0275116 }, 353.819 },
{ "Land_HBarrier_5_F", { 12929.5, 12770.1, 0.118179 }, 84.8375 },
{ "Land_HBarrier_5_F", { 12929.9, 12764.5, 0.142838 }, 84.8577 },
{ "Land_HBarrier_5_F", { 12918.7, 12776.7, -0.0367279 }, 353.82 },
{ "Land_HBarrier_5_F", { 12913.2, 12776.2, -0.0335236 }, 353.831 },
{ "Land_HBarrier_5_F", { 12919.8, 12776.8, -0.0367126 }, 353.82 },
{ "Land_HBarrier_5_F", { 12916, 12755.5, -0.0212097 }, 353.818 },
{ "Land_HBarrier_5_F", { 12927.1, 12773.9, 0.00674438 }, 30.819 },
{ "Land_HBarrier_5_F", { 12927.1, 12756.5, -0.0491486 }, 353.797 },
{ "Land_HBarrier_5_F", { 12900.6, 12767.1, 0.0879211 }, 86.4439 },
{ "Land_HBarrier_5_F", { 12903.9, 12773.6, -0.0444031 }, 307.87 },
{ "Land_HBarrier_5_F", { 12901.7, 12752, 0.132278 }, 86.4207 },
{ "Land_HBarrier_5_F", { 12907.7, 12775.7, -0.0238953 }, 353.847 },
{ "Land_HBarrier_5_F", { 12905.2, 12754.4, 0.00515747 }, 354.814 },
{ "Land_GarbageBags_F", { 12904.7, 12751, -0.0263214 }, 26.6415 },
{ "Land_Garbage_square5_F", { 12917.5, 12761.8, 0.00386047 }, 19.7988 },
{ "Land_HBarrier_3_F", { 12901.2, 12770.2, 0.0333557 }, 130.704 },
{ "Land_HBarrier_3_F", { 12923.5, 12776.2, -0.00253296 }, 212.829 },
{ "Land_JunkPile_F", { 12907.2, 12769.1, 0.00367737 }, 354.816 },
{ "Land_Pallets_stack_F", { 12909, 12767.7, 0.000915527 }, 128.791 },
{ "Land_CratesShabby_F", { 12910.4, 12768, 0.0017395 }, 245.684 },
{ "Land_GarbageBarrel_01_F", { 12914.8, 12763.5, -0.00370789 }, 182.87 },
{ "Land_HBarrier_5_F", { 12931.5, 12742.2, -0.338425 }, 264.829 },
{ "Land_HBarrier_5_F", { 12931.2, 12747.7, -0.208801 }, 264.774 },
{ "Land_HBarrier_5_F", { 12930.4, 12758.9, 0.141861 }, 84.8576 },
{ "Land_HBarrier_5_F", { 12930.8, 12753.3, -0.150925 }, 264.812 }
};
staticNpcPos[] = {
// South West
{ "C_man_hunter_1_F", { 4585.05, 4516.51, 0.201431 }, 273.197 },
// South East
{ "C_man_hunter_1_F", { 12075.5, 5109.38, 0.00123596 }, 313.34},
// North East
{ "C_man_hunter_1_F", { 10686.8,9437.87,0.00151825 }, 231.976},
//Boat Trader
{ "C_man_hunter_1_F", { 13694, 4033.22, 0.0021317 }, 93.5839 }
};
};

};

 

the mission.sqm

version=12;


class Mission
{
addOns[]=
{
"bornholm",
"bornholmlayers",
"bornholmobjects",
"A3_Soft_F_Car",
"A3_Soft_F_Quadbike",
"a3_soft_f_beta_quadbike",
"A3_Boat_F_Civilian_Boat",
"A3_Boat_F_Boat_Transport_01",
"A3_Air_F_Heli_Light_01",
"A3_Air_F_Heli_Heli_Transport_04",
"A3_Air_F_Heli_Heli_Transport_03",
"A3_Characters_F_OPFOR",
"A3_Characters_F_INDEP",
"A3_Characters_F_Civil",
"A3_epoch_config",
"A3_Data_F_Curator_Virtual",
"epoch_objects",
"A3_Structures_F_Mil_Fortification",
"A3_Structures_F_Heli_Items_Sport",
"A3_Structures_F_Civ_Accessories",
"A3_Structures_F_Heli_Civ_Market",
"A3_Structures_F_Civ_Market",
"A3_Structures_F_Items_Vessels",
"A3_Structures_F_EPB_Civ_Garbage",
"A3_Structures_F_Mil_Helipads",
"A3_Structures_F_Mil_Flags",
"A3_Structures_F_Heli_Ind_Cargo",
"A3_Structures_F_Civ_InfoBoards",
"A3_Structures_F_Bootcamp_Civ_SportsGrounds",
"A3_Structures_F_EPA_Mil_Scrapyard",
"A3_Structures_F_Furniture",
"A3_Structures_F_EPB_Items_Luggage",
"A3_Structures_F_Heli_Furniture",
"A3_Structures_F_EPB_Civ_Accessories",
"a3_characters_f",
"A3_Characters_F_BLUFOR",
"A3_Structures_F_Walls"
};
addOnsAuto[]=
{
"a3_epoch_config",
"A3_Structures_F_Walls",
"bornholm"
};
randomSeed=43857643;
class Intel
{
briefingName="Epoch Mod Bornholm";
resistanceWest=0;
timeOfChanges=28800;
startWeather=0;
startWind=0;
forecastWeather=0;
forecastWind=0;
forecastWaves=0;
wavesForced=1;
windForced=1;
year=2035;
month=6;
day=24;
hour=12;
minute=55;
startFogDecay=0.013;
forecastFogDecay=0.013;
};
class Groups
{
items=100;
class Item0
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.813,80.981033,6880.5835};
azimut=136.241;
offsetY=1;
special="NONE";
id=0;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item1
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.274,81.113113,6882.5459};
azimut=130.01601;
offsetY=1;
special="NONE";
id=1;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item2
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13814.199,81.017487,6881.2207};
azimut=130.01601;
offsetY=1;
special="NONE";
id=2;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item3
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.696,81.176804,6883.436};
azimut=130.01601;
offsetY=1;
special="NONE";
id=3;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item4
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.283,80.982201,6880.5073};
azimut=130.01601;
offsetY=1;
special="NONE";
id=4;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item5
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.389,81.0298,6881.0894};
azimut=130.01601;
offsetY=1;
special="NONE";
id=5;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item6
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13811.813,81.130768,6882.5601};
azimut=130.01601;
offsetY=1;
special="NONE";
id=6;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item7
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13814.009,80.991814,6880.7866};
azimut=130.01601;
offsetY=1;
special="NONE";
id=7;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item8
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.254,81.04599,6881.3179};
azimut=130.01601;
offsetY=1;
special="NONE";
id=8;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item9
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.111,81.141167,6882.9541};
azimut=130.01601;
offsetY=1;
special="NONE";
id=9;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item10
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13811.933,81.073021,6881.6812};
azimut=130.01601;
offsetY=1;
special="NONE";
id=10;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item11
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.982,81.031136,6881.2163};
azimut=130.01601;
offsetY=1;
special="NONE";
id=11;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item12
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13814.342,80.982346,6880.6987};
azimut=130.01601;
offsetY=1;
special="NONE";
id=12;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item13
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.787,81.008087,6881.001};
azimut=130.01601;
offsetY=1;
special="NONE";
id=13;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item14
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13814.351,81.119865,6882.8369};
azimut=130.01601;
offsetY=1;
special="NONE";
id=14;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item15
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.729,80.980049,6880.3105};
azimut=130.01601;
offsetY=1;
special="NONE";
id=15;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item16
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.44,80.998878,6880.7949};
azimut=130.01601;
offsetY=1;
special="NONE";
id=16;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item17
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13814.613,81.030609,6881.4995};
azimut=130.01601;
offsetY=1;
special="NONE";
id=17;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item18
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13814.117,81.069466,6882.0166};
azimut=130.01601;
offsetY=1;
special="NONE";
id=18;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item19
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.921,81.137108,6882.8569};
azimut=130.01601;
offsetY=1;
special="NONE";
id=19;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item20
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.232,80.985764,6880.5537};
azimut=136.241;
offsetY=1;
special="NONE";
id=20;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item21
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.241,81.132179,6882.8379};
azimut=130.01601;
offsetY=1;
special="NONE";
id=21;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item22
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.45,80.969955,6880.2676};
azimut=130.01601;
offsetY=1;
special="NONE";
id=22;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item23
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.509,81.087952,6882.0171};
azimut=130.01601;
offsetY=1;
special="NONE";
id=23;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item24
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.756,81.083656,6881.9941};
azimut=130.01601;
offsetY=1;
special="NONE";
id=24;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item25
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13814.823,81.024284,6881.4385};
azimut=130.01601;
offsetY=1;
special="NONE";
id=25;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item26
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.488,81.079514,6882.0605};
azimut=130.01601;
offsetY=1;
special="NONE";
id=26;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item27
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.298,81.106163,6882.4419};
azimut=130.01601;
offsetY=1;
special="NONE";
id=27;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item28
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.296,81.02845,6881.0518};
azimut=130.01601;
offsetY=1;
special="NONE";
id=28;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item29
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.567,81.031151,6881.1426};
azimut=130.01601;
offsetY=1;
special="NONE";
id=29;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item30
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.261,81.076828,6881.9785};
azimut=130.01601;
offsetY=1;
special="NONE";
id=30;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item31
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.509,81.054642,6881.6768};
azimut=130.01601;
offsetY=1;
special="NONE";
id=31;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item32
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13815.053,81.01252,6881.2959};
azimut=130.01601;
offsetY=1;
special="NONE";
id=32;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item33
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13814.122,81.032623,6881.4429};
azimut=130.01601;
offsetY=1;
special="NONE";
id=33;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item34
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.41,81.130287,6882.6597};
azimut=130.01601;
offsetY=1;
special="NONE";
id=34;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item35
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13811.915,80.988892,6880.2993};
azimut=130.01601;
offsetY=1;
special="NONE";
id=35;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item36
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13814.322,81.135094,6883.0669};
azimut=130.01601;
offsetY=1;
special="NONE";
id=36;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item37
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.192,80.985245,6880.2886};
azimut=130.01601;
offsetY=1;
special="NONE";
id=37;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item38
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.499,81.026543,6881.2373};
azimut=130.01601;
offsetY=1;
special="NONE";
id=38;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item39
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.033,80.990448,6880.5913};
azimut=130.01601;
offsetY=1;
special="NONE";
id=39;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item40
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.472,81.130882,6882.6797};
azimut=136.241;
offsetY=1;
special="NONE";
id=40;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item41
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13811.646,81.017502,6880.7651};
azimut=130.01601;
offsetY=1;
special="NONE";
id=41;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item42
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13814.596,81.09269,6882.4585};
azimut=130.01601;
offsetY=1;
special="NONE";
id=42;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item43
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13811.27,81.027985,6880.8608};
azimut=130.01601;
offsetY=1;
special="NONE";
id=43;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item44
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.472,81.04203,6881.4736};
azimut=130.01601;
offsetY=1;
special="NONE";
id=44;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item45
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13811.801,81.076202,6881.7075};
azimut=130.01601;
offsetY=1;
special="NONE";
id=45;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item46
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.499,81.039894,6881.4448};
azimut=130.01601;
offsetY=1;
special="NONE";
id=46;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item47
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.729,81.091011,6882.2827};
azimut=130.01601;
offsetY=1;
special="NONE";
id=47;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item48
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.712,81.084747,6882.0039};
azimut=130.01601;
offsetY=1;
special="NONE";
id=48;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item49
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13814.364,80.994492,6880.8916};
azimut=130.01601;
offsetY=1;
special="NONE";
id=49;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item50
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13811.144,81.115692,6882.2061};
azimut=130.01601;
offsetY=1;
special="NONE";
id=50;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item51
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.638,81.058044,6881.5737};
azimut=130.01601;
offsetY=1;
special="NONE";
id=51;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item52
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.96,81.090515,6882.3169};
azimut=130.01601;
offsetY=1;
special="NONE";
id=52;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item53
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.527,81.081833,6881.9253};
azimut=130.01601;
offsetY=1;
special="NONE";
id=53;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item54
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.917,81.070953,6881.8252};
azimut=130.01601;
offsetY=1;
special="NONE";
id=54;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item55
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.784,81.089363,6882.0884};
azimut=130.01601;
offsetY=1;
special="NONE";
id=55;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item56
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13814.454,81.036575,6881.564};
azimut=130.01601;
offsetY=1;
special="NONE";
id=56;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item57
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.192,81.110085,6882.3057};
azimut=130.01601;
offsetY=1;
special="NONE";
id=57;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item58
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13811.047,81.12619,6882.3521};
azimut=130.01601;
offsetY=1;
special="NONE";
id=58;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item59
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.758,81.028755,6881.3174};
azimut=130.01601;
offsetY=1;
special="NONE";
id=59;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item60
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.176,81.059975,6881.5215};
azimut=136.241;
offsetY=1;
special="NONE";
id=60;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item61
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.272,80.988953,6880.397};
azimut=130.01601;
offsetY=1;
special="NONE";
id=61;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item62
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.811,81.025131,6881.0918};
azimut=130.01601;
offsetY=1;
special="NONE";
id=62;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item63
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.707,81.029976,6881.3276};
azimut=130.01601;
offsetY=1;
special="NONE";
id=63;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item64
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.761,81.090309,6882.0991};
azimut=130.01601;
offsetY=1;
special="NONE";
id=64;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item65
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.745,81.083908,6881.9966};
azimut=130.01601;
offsetY=1;
special="NONE";
id=65;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item66
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.267,81.048157,6881.5327};
azimut=130.01601;
offsetY=1;
special="NONE";
id=66;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item67
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.116,81.1297,6882.5981};
azimut=130.01601;
offsetY=1;
special="NONE";
id=67;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item68
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.759,81.094078,6882.3359};
azimut=130.01601;
offsetY=1;
special="NONE";
id=68;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item69
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.912,81.097366,6882.4146};
azimut=130.01601;
offsetY=1;
special="NONE";
id=69;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item70
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.966,81.057716,6881.6279};
azimut=130.01601;
offsetY=1;
special="NONE";
id=70;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item71
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.838,80.989929,6880.7271};
azimut=130.01601;
offsetY=1;
special="NONE";
id=71;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item72
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.549,81.024132,6881.0293};
azimut=130.01601;
offsetY=1;
special="NONE";
id=72;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item73
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.995,81.072815,6881.8682};
azimut=130.01601;
offsetY=1;
special="NONE";
id=73;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item74
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13814.592,81.037918,6881.6099};
azimut=130.01601;
offsetY=1;
special="NONE";
id=74;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item75
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.469,80.989685,6880.6567};
azimut=130.01601;
offsetY=1;
special="NONE";
id=75;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item76
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.206,81.130508,6882.8052};
azimut=130.01601;
offsetY=1;
special="NONE";
id=76;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item77
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.331,81.034149,6881.3257};
azimut=130.01601;
offsetY=1;
special="NONE";
id=77;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item78
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.393,81.095047,6882.1069};
azimut=130.01601;
offsetY=1;
special="NONE";
id=78;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item79
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13811.795,81.055115,6881.3779};
azimut=130.01601;
offsetY=1;
special="NONE";
id=79;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item80
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13814.171,81.066612,6881.9814};
azimut=130.01601;
offsetY=1;
special="NONE";
id=80;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item81
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.541,81.128014,6882.8262};
azimut=130.01601;
offsetY=1;
special="NONE";
id=81;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item82
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.502,81.041077,6881.2856};
azimut=130.01601;
offsetY=1;
special="NONE";
id=82;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item83
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13811.4,81.00219,6880.4736};
azimut=130.01601;
offsetY=1;
special="NONE";
id=83;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item84
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.218,81.123146,6882.5137};
azimut=130.01601;
offsetY=1;
special="NONE";
id=84;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item85
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.476,81.071182,6881.9282};
azimut=130.01601;
offsetY=1;
special="NONE";
id=85;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item86
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.727,81.03669,6881.436};
azimut=130.01601;
offsetY=1;
special="NONE";
id=86;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item87
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.771,81.04306,6881.543};
azimut=130.01601;
offsetY=1;
special="NONE";
id=87;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item88
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.871,81.071556,6881.8267};
azimut=130.01601;
offsetY=1;
special="NONE";
id=88;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item89
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.925,81.08374,6882.0259};
azimut=130.01601;
offsetY=1;
special="NONE";
id=89;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item90
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.916,81.046318,6881.4409};
azimut=130.01601;
offsetY=1;
special="NONE";
id=90;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item91
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.17,81.034454,6881.1226};
azimut=130.01601;
offsetY=1;
special="NONE";
id=91;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item92
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.857,80.974228,6880.4785};
azimut=130.01601;
offsetY=1;
special="NONE";
id=92;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item93
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.679,80.976204,6880.2065};
azimut=130.01601;
offsetY=1;
special="NONE";
id=93;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item94
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.899,81.084419,6882.0322};
azimut=130.01601;
offsetY=1;
special="NONE";
id=94;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item95
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.804,81.125389,6882.6538};
azimut=130.01601;
offsetY=1;
special="NONE";
id=95;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item96
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.624,81.142082,6883.0586};
azimut=130.01601;
offsetY=1;
special="NONE";
id=96;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item97
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13812.998,81.018456,6881.0215};
azimut=130.01601;
offsetY=1;
special="NONE";
id=97;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item98
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13814.14,81.082039,6882.2168};
azimut=130.01601;
offsetY=1;
special="NONE";
id=98;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
class Item99
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={13813.083,81.070251,6881.8442};
azimut=130.01601;
offsetY=1;
special="NONE";
id=99;
side="CIV";
vehicle="VirtualMan_EPOCH";
player="PLAY CDG";
leader=1;
skill=0.60000002;
};
};
};
};
class Vehicles
{
items=1;
class Item0
{
position[]={15622.908,3.5773878,224.19617};
azimut=159.16582;
id=100;
side="EMPTY";
vehicle="Land_BarGate_F";
skill=0.60000002;
};
};
class Markers
{
items=5;
class Item0
{
position[]={10088.224,117.81223,9045.7275};
name="center";
type="Empty";
};
class Item1
{
position[]={13813.433,81.107765,6882.4912};
name="respawn_east";
type="Empty";
};
class Item2
{
position[]={13813.405,81.111084,6882.5381};
name="respawn_west";
type="Empty";
};
class Item3
{
position[]={13813.465,81.040039,6881.4409};
name="Respawn";
type="hd_dot";
};
class Item4
{
position[]={15630.164,3.0140967,210.32104};
name="Respawn_1";
type="hd_dot";
};
};
};
class Intro
{
addOns[]=
{
"bornholm"
};
addOnsAuto[]=
{
"bornholm"
};
randomSeed=25982387;
class Intel
{
timeOfChanges=1800.0002;
startWeather=0.30000001;
startWind=0.1;
startWaves=0.1;
forecastWeather=0.30000001;
forecastWind=0.1;
forecastWaves=0.1;
forecastLightnings=0.1;
year=2035;
month=6;
day=24;
hour=12;
minute=0;
startFogDecay=0.013;
forecastFogDecay=0.013;
};
};
class OutroWin
{
addOns[]=
{
"bornholm"
};
addOnsAuto[]=
{
"bornholm"
};
randomSeed=12635739;
class Intel
{
timeOfChanges=1800.0002;
startWeather=0.30000001;
startWind=0.1;
startWaves=0.1;
forecastWeather=0.30000001;
forecastWind=0.1;
forecastWaves=0.1;
forecastLightnings=0.1;
year=2035;
month=6;
day=24;
hour=12;
minute=0;
startFogDecay=0.013;
forecastFogDecay=0.013;
};
};
class OutroLoose
{
addOns[]=
{
"bornholm"
};
addOnsAuto[]=
{
"bornholm"
};
randomSeed=37826347;
class Intel
{
timeOfChanges=1800.0002;
startWeather=0.30000001;
startWind=0.1;
startWaves=0.1;
forecastWeather=0.30000001;
forecastWind=0.1;
forecastWaves=0.1;
forecastLightnings=0.1;
year=2035;
month=6;
day=24;
hour=12;
minute=0;
startFogDecay=0.013;
forecastFogDecay=0.013;
};
};

Link to comment
Share on other sites

if you use this: pbo, than just put it:     C:\Program Files (x86)\Steam\steamapps\common\Arma 3\@epochhive\addons     in this folder :D

 

or if you want this in your config.cpp than read the first post :D

Link to comment
Share on other sites

And if I want to use config.cpp but not for Epoch server, what i have to do?

 

u cant use the cpp for not epoch, its a epoch file and in the epoch addon folder.... try to use the custom building.pbo ( )

or just spawn something serverside.

 

Link to comment
Share on other sites

Ok I have this on my .cpp.

 

class CfgPatches {
    class A3_epoch_building {
        units[] = {};
        weapons[] = {};
        requiredVersion = 0.1;
        requiredAddons[] = {};
    };
};
class CfgFunctions {
    class building {
        class main {
            file = "x\addons\a3_epoch_server_building\init";
            class init {
                postInit = 1;
            };
        };
    };
}

 

 

 

Someone can explain me how to add the line from M3Editor in this .cpp?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...