Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
line 255
private _veh = _vehtype createVehicle _pos;
new
private _veh = createVehicle [_vehtype, _pos, [], 0, "NONE"];
edit:\\
the terrain causes problems +
under syrta military base:
vehicle spawn in each other
line 255, line 296, line 327
old
private _veh = _vehtype createVehicle _pos;
new
private _nO = _pos nearObjects ["AllVehicles", 35];
while {count _nO > 1} do {
_pos = [[[_pos, 150]],["water"]] call BIS_fnc_randomPos;
_nO = _pos nearObjects ["AllVehicles", 35];
};
private _spawnvehpos = _pos findEmptyPosition [0,200,_vehtype];
_spawnvehpos = [_spawnvehpos select 0,_spawnvehpos select 1,1];
private _veh = createVehicle [_vehtype, _spawnvehpos, [], 0, "NONE"];
remove _veh setPosATL _pos; & _veh setpos _vpos;
I don't understand why but with 35m it works best
my file: