-
Notifications
You must be signed in to change notification settings - Fork 0
/
cfgGradIslands.hpp
1062 lines (976 loc) · 29.5 KB
/
cfgGradIslands.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
class cfgGradIslands {
class Altis {
displayName = "Altis";
type = "mediterranean";
isWoodland = true;
spawnPosBlu[] = {8782,25180,0};
spawnPosOpf[] = {8481,25263,0};
spawnPosInd[] = {8216,24939,0};
urbanops_locationBlacklist[] = {
"AAC airfield",
"Agios Georgios",
"Agios Georgios",
"Agios Kosmas",
"Agios Panagiotis",
"Aktinarki",
"Almyra",
"Atsalis",
"Bomos",
"Cap Agrios",
"Cap Drakontas",
"Cap Kategidis",
"Cap Makrinos",
"Cap Thelos",
"Cap Zefyris",
"Chelonisi",
"Drimea",
"dump",
"Edoris",
"Faros",
"Fournos",
"Gori",
"Kavala Pier",
"Limni",
"Livadi",
"Makrynisi",
"Mazi",
"mine",
"Molos Airfield",
"Monisi",
"Nychi",
"Ochrolimni",
"Pyrgi",
"quarry",
"Sagonisi",
"Savri",
"Sideras",
"Surf Club",
"Xirolimni Dam",
"Zeloran"
};
};
class Beketov {
displayName = "Beketov";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {-258.376,308.728,0};
spawnPosOpf[] = {-249.061,955.673,0};
urbanops_locationBlacklist[] = {
"Belokamenka",
"Dorogino",
"Limonovo",
"Malaevo",
"Oblepikhino",
"SWAMP"
};
};
class Bootcamp_ACR {
displayName = "Bukovina";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {3225,4342,0};
spawnPosOpf[] = {3449,4376,0};
spawnPosInd[] = {3807,4346,0};
};
class cain {
displayName = "Kolgujev";
type = "mediterranean";
isWoodland = true;
spawnPosBlu[] = {9438,12384,0};
spawnPosOpf[] = {9438,12384,0};
spawnPosInd[] = {9438,12384,0};
};
class Cam_Lao_Nam {
displayName = "Cam Lao Nam";
type = "tropical";
isWoodland = true;
spawnPosBlu[] = {11909.9,14360.1,0};
spawnPosOpf[] = {11272.3,14930.6,0};
spawnPosInd[] = {11351.6,14073,0};
};
class Chernarus {
displayName = "Chernarus (Autumn)";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {-599,2508,0};
spawnPosOpf[] = {-567,3402,0};
spawnPosInd[] = {-568,4180,0};
urbanops_locationBlacklist[] = {
"airfield",
"airstrip",
"Black Forest",
"Blunt Rocks",
"Cap Golova",
"Dichina",
"Drakon",
"Green Mountain",
"Grozovoy Pass",
"Kopyto",
"Krutoy Cap",
"Kumyrna",
"Novy Lug",
"Old Fields",
"Pass Oreshka",
"Pass Sosnovy",
"power plant",
"quarry",
"Skalisty Island",
"Skalka",
"Three Valleys",
"Vysota"
};
};
class Chernarus_Summer: Chernarus {};
class Chernarus_winter: Chernarus {};
class cup_chernarus_a3: Chernarus {};
class cup_kunduz {
displayName = "CUP Kunduz";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {0,0,0};
spawnPosOpf[] = {4000,0,0};
spawnPosInd[] = {4000,4000,0};
urbanops_locationBlacklist[] = {};
};
class d41_ruegen {
displayName = "Ruegen";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {-312,604,0};
spawnPosOpf[] = {-364,1481,0};
spawnPosInd[] = {-474,2161,0};
};
class d41_ruegen_scorched: d41_ruegen {};
class Desert_E {
displayName = "Desert";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {200.707,360.712,0};
spawnPosOpf[] = {776.665,334.58,0};
spawnPosInd[] = {1014.47,1754.4,0};
};
class dingor {
displayName = "Dingor";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {1096.81,9389.22,0};
spawnPosOpf[] = {889.053,9438.74,0};
urbanops_locationBlacklist[] = {
"Puente Malargo",
"Mt. Toris"
};
};
class DYA {
displayName = "Diyala";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {2930,3144,0};
spawnPosOpf[] = {5426,7443,0};
spawnPosInd[] = {1622,7429,0};
};
class Enoch {
displayName = "Livonia";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {-331,2112,0};
spawnPosOpf[] = {-288,3004,0};
spawnPosInd[] = {-313,3951,0};
};
class fallujah {
displayName = "Fallujah";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {10226.5,605.61,0};
spawnPosOpf[] = {10204.2,1033.22,0};
class customLocations {
class airfieldN {
name = "Airfield North";
type = "NameCityCapital";
pos[] = {7972.45,2142.85,0};
};
class airfieldS {
name = "Airfield South";
type = "NameCityCapital";
pos[] = {8304.41,1593.64,0};
};
class hotel {
name = "Hotel";
type = "NameVillage";
pos[] = {8231.46,5520.07,0};
};
class village1 {
name = "Shakbur";
type = "NameVillage";
pos[] = {9068.4,9026.81,0};
};
class FOB {
name = "FOB";
type = "NameVillage";
pos[] = {5692.07,9856.37,0};
};
class powerplant {
name = "Power Plant";
type = "NameVillage";
pos[] = {687.158,8340.91,0};
};
class outskirts1 {
name = "Outskirts";
type = "NameVillage";
pos[] = {3890.94,2827.52,0};
};
class milbase {
name = "Military Base";
type = "NameCity";
pos[] = {2927.96,6340.07,0};
};
};
};
class fata {
displayName = "Fata";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {10616.3,8942.11,0};
spawnPosOpf[] = {10723.9,10105,0};
urbanops_locationBlacklist[] = {
"Goram Valley",
"Kabashir Forest",
"Mouaneb",
"Mussara Bridge",
"Paktita Valley",
"Serpent's Road",
"Sirika",
"Suhani Valley",
"Sukri River",
"Tamir Bridge",
"Tamir Highway",
"Tamir River"
};
};
class gm_weferlingen_summer {
displayName = "Weferlingen";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {602,-414,0};
spawnPosOpf[] = {1349,-483,0};
spawnPosInd[] = {2194,-376,0};
};
class gm_weferlingen_winter: gm_weferlingen_summer {};
class hellanmaa {
displayName = "hellanmaa";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {8199,8295,0};
spawnPosOpf[] = {7785,8293,0};
urbanops_locationBlacklist[] = {};
};
class Intro {
displayName = "Ramahdi";
type = "middle eastern";
isWoodland = false;
urbanops_sizeFactor = 0.30;
spawnPosBlu[] = {1604.93,1575.83,0};
spawnPosOpf[] = {1542.37,1750.86,0};
class customLocations {
class Ramahdi {
name = "Ramahdi";
type = "NameVillage";
pos[] = {2893.81,2879.46,0};
};
};
};
class juju_sahatra {
displayName = "73 Sahatra";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {619.791,629.159,0};
spawnPosOpf[] = {24.3515,7104.69,0};
spawnPosInd[] = {8150,740.587,0};
};
class kunduz_valley {
displayName = "Kunduz Valley";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {1087.54,8109.22,0};
spawnPosOpf[] = {4226.55,9196.67,0};
spawnPosInd[] = {9415.49,8932.38,0};
};
class lingor3 {
displayName = "Lingor";
type = "tropical";
isWoodland = true;
spawnPosBlu[] = {1096.81,9389.22,0};
spawnPosOpf[] = {889.053,9438.74,0};
urbanops_locationBlacklist[] = {
"Puente Malargo",
"Mt. Toris"
};
};
class lythium {
displayName = "Lythium";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {-205,71,0};
spawnPosOpf[] = {-333,833,0};
spawnPosInd[] = {-286,1336,0};
urbanops_locationBlacklist[] = {};
};
class Majan {
displayName = "Majan";
type = "mediterranean";
isWoodland = false;
spawnPosBlu[] = {10035,2134,0};
spawnPosOpf[] = {10159,2200,0};
spawnPosInd[] = {9983,2289,0};
};
class Maksniemi {
displayName = "Maksniemi";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {11156,1863,0};
spawnPosOpf[] = {11156,1863,0};
spawnPosInd[] = {11156,1863,0};
}
class Malden {
displayName = "Malden";
type = "mediterranean";
isWoodland = true;
spawnPosBlu[] = {10035,2134,0};
spawnPosOpf[] = {10159,2200,0};
spawnPosInd[] = {9983,2289,0};
urbanops_locationBlacklist[] = {
"Pegasus Air Co.",
"Moray",
"Faro",
"harbor"
};
};
class mbg_celle2 {
displayName = "Celle";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {13121.7,12175.6,0};
spawnPosOpf[] = {12488.2,12689.2,0};
urbanops_locationBlacklist[] = {};
};
class Mog {
displayName = "Mogadishu";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {2901.95,3739.27,0};
spawnPosOpf[] = {5293.3,3817.9,0};
spawnPosInd[] = {5293.89,5000,0}; // not tested
};
class MontellaV3 {
displayName = "Montella";
type = "mediterranean";
isWoodland = "true";
spawnPosBlu[] = {3747.89,7930.39,0};
spawnPosOpf[] = {3988.49,7389.79,0};
spawnPosInd[] = {3731.58,7593.21,0};
};
class Mountains_ACR {
displayName = "Takistan Mountains";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {5940.93,786.581,0};
spawnPosOpf[] = {5883.79,5968.62,0};
spawnPosInd[] = {1057.13,2344.07,0};
};
class noe {
displayName = "Nogova";
type = "mediterraneanan";
isWoodland = true;
spawnPosBlu[] = {3351,385,0};
spawnPosOpf[] = {3351,385,0};
spawnPosInd[] = {3351,385,0};
}
class NorthTakistan {
displayName = "North Takistan";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {2207.31,4623.16,0};
spawnPosOpf[] = {8334.44,10684.1,0};
spawnPosInd[] = {9821.95,4510.49,0};
};
class oski_corran {
displayName = "Scottish Highlands";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {3662,6018,0};
spawnPosOpf[] = {3662,6018,0};
spawnPosInd[] = {3662,6018,0};
}
class oski_ire {
displayName = "County Fermanagh";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {579.494,20.7767,0};
spawnPosOpf[] = {845.702,5085.66,0};
spawnPosInd[] = {5089.85,1308.66,0};
};
class pja310 {
displayName = "GOS Al Rayak";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {850,1240,0};
spawnPosOpf[] = {1700,1170,0};
spawnPosInd[] = {850,1040,0}; // not tested
};
class pja314 {
displayName = "G.O.S. Leskovets";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {-1000,-1000,0};
spawnPosOpf[] = {-3000,-1000,0};
urbanops_locationBlacklist[] = {};
};
class Porto {
displayName = "Porto";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {1376.64,628.892,0};
spawnPosOpf[] = {1136.77,671.378,0};
urbanops_sizeFactor = 0.30;
class customLocations {
class portoHarbor {
name = "Porto Harbor";
type = "NameCity";
pos[] = {2589.53,2232.25,0};
};
};
};
class prei_khmaoch_luong {
displayName = "Prei Khmaoch Luong";
type = "tropical";
isWoodland = true;
spawnPosBlu[] = {-172,640,0};
spawnPosOpf[] = {-193,887,0};
spawnPosInd[] = {-253,1608,0};
};
class ProvingGrounds_ACR {
displayName = "Proving Grounds";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {1899.97,240.401,0};
spawnPosOpf[] = {2012.23,1759.78,0};
spawnPosInd[] = {18.8464,1625.93,0};
};
class rhspkl {
displayName = "RHSPKL";
type = "tropical";
isWoodland = true;
spawnPosBlu[] = {6277.15,5772.99,0};
spawnPosOpf[] = {6175.65,7714.31,0};
spawnPosInd[] = {2435.66,7402.81,0};
};
class rof_mok {
displayName = "Mull of Kintyre";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {9194.22,19196.1,0};
spawnPosOpf[] = {11721.1,18346.6,0};
spawnPosInd[] = {9995.21,17459.1,0};
};
class ruha {
displayName = "Ruha";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {-84,38,0};
spawnPosOpf[] = {-100,367,0};
spawnPosInd[] = {-91,629,0};
};
class sara {
displayName = "Sahrani";
type = "mediterranean";
isWoodland = true;
spawnPosBlu[] = {9257.05,5791.55,0};
spawnPosOpf[] = {12109.1,17749.5,0};
spawnPosInd[] = {19170.4,13990.8,0};
};
class saralite {
displayName = "Southern Sahrani";
type = "mediterranean";
isWoodland = true;
spawnPosBlu[] = {4115.87,7991.18,0};
spawnPosOpf[] = {8439.11,4094.29,0};
spawnPosInd[] = {1688.1,4205.98,0};
};
class sara_dbe1 {
displayName = "United Sahrani";
type = "mediterranean";
isWoodland = true;
spawnPosBlu[] = {1590,2190,0};
spawnPosOpf[] = {1475,2278,0};
spawnPosInd[] = {1641,2344,0};
urbanops_locationBlacklist[] = {
"Antigua",
"Cabo Canino",
"Cabo de Fidel",
"Cabo Gavio",
"Cabo Gavio",
"Cabo Indice",
"Cabo Juventudo",
"Cabo Santa Lucia",
"Cabo Valiente",
"Calha de Cayo",
"Calheta de Cedras",
"Calheta Demiseca",
"Calheta Seca",
"Cimas Dobles",
"El Gordo",
"Isla Arimar",
"Isla de la Caja",
"Isla de Libertad",
"Isla de los Tojos",
"Isla de Matey",
"Isla del Vassal",
"Isla del Vida",
"Isla del Zorra",
"Isla des Compadres",
"Islas Gatunas",
"Matas",
"Monte Asharah",
"Monte Galassi",
"Parvulo",
"Passo Epone",
"Passo Paradiso",
"Passo San Andres",
"Passo San Marco",
"Pesadas",
"Puntas Occidental",
"Puntas Oriental",
"Roca del Dror",
"Rocara",
"San Peregrino",
"San Tomas",
"Sierra de los Pinos",
"Sierra Madre",
"Sierra Masbete",
"Sierra Pita",
"Terra Acorcha",
"Terra Marismo",
"Trelobada",
"Tres Valles",
"Valle Azul",
"Valle de Carmen",
"Vallejo"
};
};
class SefrouRamal {
displayName = "Sefrou-Ramal";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {1100.13,3373.06,0};
spawnPosOpf[] = {8350.97,3051.16,0};
spawnPosInd[] = {7975.69,8724.92,0};
};
class Sehreno {
displayName = "Sehreno";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {2293,18838,0};
spawnPosOpf[] = {2293,18838,0};
spawnPosInd[] = {2293,18838,0};
};
class Shapur_BAF {
displayName = "Shapur";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {-198,171,0};
spawnPosOpf[] = {-183,1006,0};
spawnPosInd[] = {-178,1787,0};
urbanops_sizeFactor = 0.75;
urbanops_locationBlacklist[] = {
"airfield"
};
};
class SPE_Normandy {
displayName = "SPE Normandy";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {11035,10084.8,0};
spawnPosOpf[] = {10301,10220.1,0};
spawnPosInd[] = {10294.9,9054.83,0};
};
class SPE_Mortain {
displayName = "SPE Mortain";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {7119,26,0};
spawnPosOpf[] = {7119,26,0};
spawnPosInd[] = {7119,26,0};
}
class Stratis {
displayName = "Stratis";
type = "mediterranean";
isWoodland = true;
spawnPosBlu[] = {7100,5936,0};
spawnPosOpf[] = {3782.86,7923.07,0};
spawnPosInd[] = {7109,6010,0};
urbanops_locationBlacklist[] = {
"airfield",
"Kamino Coast",
"LZ Baldy",
"Pythos",
"The Spartan",
"Xiros"
};
};
class brf_sumava {
displayName = "Sumava";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {9015.2,2334.95,0};
spawnPosOpf[] = {9821.52,3412.76,0};
spawnPosInd[] = {9494.23,2318.11,0};
};
class swu_public_novogorsk_map {
displayName = "Novogorsk";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {24.093,4945.41,0};
spawnPosOpf[] = {24.093,4945.41,0};
spawnPosInd[] = {24.093,4945.41,0};
};
class swu_public_rhode_map {
displayName = "Mutambra";
type = "tropical";
isWoodland = true;
spawnPosBlu[] = {702.003,1080.97,0};
spawnPosOpf[] = {4738.99,4959.74,0};
spawnPosInd[] = {1020.44,5046.8,0};
};
class swu_public_salman_map {
displayName = "Al Salman";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {9120.67,9322.3,0};
spawnPosOpf[] = {8456.1,9346.14,0};
};
class Takistan {
displayName = "Takistan";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {954,-672,0};
spawnPosOpf[] = {1508,-661,0};
spawnPosInd[] = {2074,-596,0};
urbanops_locationBlacklist[] = {
"airfield",
"Bala pass",
"Darbang pass",
"Jaza",
"Loy Manara oilfield",
"military base",
"Nagara-1 oilfield",
"Nar",
"Naran Darre pass",
"Naygul valley",
"Par-e Siah oilfield",
"Sar-e Sang pass"
};
};
class Tanoa {
displayName = "Tanoa";
type = "tropical";
isWoodland = true;
spawnPosBlu[] = {10513,14650,0};
spawnPosOpf[] = {10421,14542,0};
spawnPosInd[] = {10693,14660,0};
urbanops_locationBlacklist[] = {
"camp remnants",
"Ile Sainte-Marie",
"Ravi-ta Island",
"vehicle range",
"GSM station",
"Comms Whiskey",
"firing range",
"maze",
"Mont Tanoa",
"harbor remnants",
"Ile Douen",
"Red Spring surface mine",
"Yasa Island",
"Sosovu Island",
"railway depot",
"diesel power plant",
"temple ruins",
"banana plantations",
"plantation",
"lumberyard",
"fuel depot",
"Yani Islets",
"cocoa plantations",
"sawmill",
"Ile Saint-George",
"ferry",
"fortress ruins",
"Tuadua Island",
"Imuri Island"
};
};
class Tembelan {
displayName = "Tembelan";
type = "tropical";
isWoodland = true;
spawnPosBlu[] = {457,5194,0};
spawnPosOpf[] = {943,5161,0};
spawnPosInd[] = {1120,5690,0};
};
class tem_cham {
displayName = "Cham";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {8158,8286,0};
spawnPosOpf[] = {7637,8314,0};
spawnPosInd[] = {7022,8327,0};
};
class tem_chamw {
displayName = "Cham Winter";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {8158,8286,0};
spawnPosOpf[] = {7637,8314,0};
spawnPosInd[] = {7022,8327,0};
};
class tem_kujari {
displayName = "Kujari";
type = "tropical";
isWoodland = true;
spawnPosBlu[] = {1495,16760,0};
spawnPosOpf[] = {1895,16760,0};
spawnPosInd[] = {2295,16760,0};
};
class tem_lang_dan {
displayName = "Lang Dan";
type = "tropical";
isWoodland = true;
spawnPosBlu[] = {377.13,4448.19,0};
spawnPosOpf[] = {2813.16,1396.71,0};
spawnPosInd[] = {6693.98,6655.94,0};
};
class tem_suursaariv {
displayName = "Suursaari";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {1288,5033,0};
spawnPosOpf[] = {2487,1990,0};
spawnPosInd[] = {10154,6449,0};
};
class tem_vinjesvingenc {
displayName = "Vinjesvingen";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {113,-136,0};
spawnPosOpf[] = {575,-173,0};
spawnPosInd[] = {1170,-176,0};
};
class utes {
displayName = "Utes";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {1995,4349,0};
spawnPosOpf[] = {2342,4073,0};
spawnPosInd[] = {2168,3823,0};
urbanops_sizeFactor = 0.75;
urbanops_locationBlacklist[] = {
"USS Khe Sanh"
};
};
class uzbin {
displayName = "Uzbin Valley";
type = "middle eastern";
isWoodland = false;
spawnPosBlu[] = {256.679,995.629,0};
spawnPosOpf[] = {9451.65,9972.54,0};
spawnPosInd[] = {10447.4,1511.11,0};
};
class vn_khe_sanh {
displayName = "Khe Sanh";
type = "tropical";
isWoodland = true;
spawnPosBlu[] = {4534.46,1181.29,0};
spawnPosOpf[] = {12406.2,13798.2,0};
spawnPosInd[] = {610.623,11763.4,0};
};
class vn_the_bra {
displayName = "The Bra";
type = "tropical";
isWoodland = true;
spawnPosBlu[] = {520.786,1548.63,0};
spawnPosOpf[] = {3535.85,3771.14,0};
spawnPosInd[] = {4803.4,1190.8,0};
};
class vt5 {
displayName = "vt5";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {5709.2,6239.52,0};
spawnPosOpf[] = {6156.56,5841.48,0};
urbanops_sizeFactor = 0.75;
urbanops_locationBlacklist[] = {};
class customLocations {
class powerplant {
name = "power plant";
type = "NameCity";
pos[] = {3260.85,3464.43};
};
class radiotower {
name = "Mätäsvaara";
type = "NameVillage";
pos[] = {801.424,484.858};
};
class airfield {
name = "airfield";
type = "NameVillage";
pos[] = {212.334,405.515};
};
class gasStation {
name = "gas station";
type = "NameVillage";
pos[] = {2381.52,1499.99};
};
class factory {
name = "Röykkä";
type = "NameCity";
pos[] = {741.191,5601.93};
};
class garages {
name = "Klaukkala";
type = "NameCity";
pos[] = {4921.19,4142.72};
};
class fields {
name = "Hyrylä";
type = "NameCity";
pos[] = {5009.03,2233.1};
};
class haybales {
name = "Kärpänkylä";
type = "NameVillage";
pos[] = {4194.69,2172.19};
};
class forest {
name = "Parkumäki";
type = "NameVillage";
pos[] = {3900.89,2701.57};
};
class peninsula {
name = "Tuukkala";
type = "NameVillage";
pos[] = {3482.91,1596.57};
};
};
};
class vt7 {
displayName = "vt7";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {60,18055,0};
spawnPosOpf[] = {3000,18055,0};
spawnPosInd[] = {6664,18055,0};
urbanops_locationBlacklist[] = {
"Korpisaari",
"Pytersaari",
"Karhusaari",
"Sumari",
"Tuuholmi",
"Pieni Lakasaari",
"Suuri Lakasaari",
"Kauholmi",
"Kuppari",
"Lehtinen",
"Lapuri",
"Pulteri",
"Santasaari",
"Hanholmi",
"Lylysaari",
"Raitsaari",
"Näästiö",
"Souvio",
"Kujaholmi",
"Pirkholmi",
"Haapasaari",
"Korkiasaari"
};
};
class VTF_Korsac {
displayName = "Korsac";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {18.5451,464.668,0};
spawnPosOpf[] = {18.5451,464.668,0};
spawnPosInd[] = {18.5451,464.668,0};
};
class VTF_Korsac_Winter : VTF_Korsac {};
class WL_Rosche {
displayName = "Rosche";
type = "russian";
isWoodland = true;
spawnPosBlu[] = {-128,60,0};
spawnPosOpf[] = {-146,519,0};
spawnPosInd[] = {-170,938,0};
};
class Woodland_ACR {
displayName = "Bystrica";
type = "russian";
isWoodland = true;