Advertisement
Guest User

Untitled

a guest
Oct 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.06 KB | None | 0 0
  1. class CfgPatches
  2. {
  3.     class tschernobyl_terrain
  4.     {
  5.         units[] = {};
  6.         weapons[] = {};
  7.         requiredVersion = 1;
  8.         requiredAddons[] =
  9.         {
  10.             "A3_Map_Stratis"
  11.         };
  12.     };
  13. };
  14.  
  15. class CfgWorldList
  16. {
  17.     class tschernobyl_terrain{};
  18. };
  19.  
  20. class CfgWorlds
  21. {
  22.     class Stratis;
  23.     class tschernobyl_terrain: Stratis
  24.     {
  25.         cutscenes[] = {};
  26.         description = "Chernobly Test";
  27.         worldName = "\tzr\tschernobyl_terrain\tschernobyl_terrain.wrp";
  28.         author = "PMC";
  29.         icon = "";
  30.         previewVideo = "";
  31.         pictureMap = "";
  32.         pictureShot = "";
  33.  
  34.         newRoadsShape = "\tzr\tschernobyl_terrain\data\roads\roads.shp";
  35.  
  36.         centerPosition[] =
  37.         {
  38.             20480, 20480
  39.         };
  40.         ilsDirection[] =
  41.         {
  42.             0, 0.08, 1
  43.         };
  44.         ilsPosition[] =
  45.         {
  46.             0, 0
  47.         };
  48.         ilsTaxiIn[] = {};
  49.         ilsTaxiOff[] = {};
  50.         drawTaxiway = 0;
  51.         class SecondaryAirports{};
  52.         class ReplaceObjects{};
  53.  
  54.         class Sounds
  55.         {
  56.             sounds[] = {};
  57.         };
  58.  
  59.         class Animation
  60.         {
  61.             vehicles[] = {};
  62.         };
  63.  
  64.         minTreesInForestSquare = 2;
  65.         minRocksInRockSquare = 2;
  66.  
  67.         class Subdivision{};
  68.         class Names{};
  69.     };
  70. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement