mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
Only the player buying the vehicle needs to see the arrow.
Also fixed CfgMagazines error from:
2c4c75c67c (diff-fcf3df9a25b3d05402ab4e4809673194R6)
@icomrade
12 lines
219 B
Plaintext
12 lines
219 B
Plaintext
private ["_object","_sign"];
|
|
|
|
_object = _this select 0;
|
|
_sign = _this select 1;
|
|
|
|
waitUntil {
|
|
uiSleep 1;
|
|
!isNull (nearestObject [player,_object])
|
|
};
|
|
|
|
deleteVehicle _sign;
|
|
player reveal (nearestObject [player,_object]); |