mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
From
e69f8d5306
Moved dog files to the \dog\ folder and pzombie files to the \pzombie\
folder. Also removed some legacy files that are no longer used.
The actions\ and compile\ folders are fully up to date now
15 lines
386 B
Plaintext
15 lines
386 B
Plaintext
private ["_bombData","_vehicle","_owner","_bombar","_bombCar","_bomb"];
|
|
|
|
_bombData = _this select 0;
|
|
|
|
_vehicle = _bombData select 0;
|
|
_owner = _bombData select 1;
|
|
|
|
_vehicle setVariable ["hasBomb",true,true];
|
|
|
|
_vehicle addEventHandler ["GetIn",{
|
|
//diag_log str(_this);
|
|
uiSleep 2;
|
|
_bombCar = _this select 0;
|
|
_bomb = createVehicle ["Bo_GBU12_lgb",getPosATL _bombCar, [], 0, "NONE"];
|
|
}]; |