From fe421d52046700aabb5da59c93ff14f69d66805c Mon Sep 17 00:00:00 2001 From: He-Man Date: Sun, 3 Feb 2019 00:34:04 +0100 Subject: [PATCH] Give a hint, when a Vehicle is only temp --- Sources/epoch_code/compile/event_handlers/EPOCH_getInMan.sqf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Sources/epoch_code/compile/event_handlers/EPOCH_getInMan.sqf b/Sources/epoch_code/compile/event_handlers/EPOCH_getInMan.sqf index dc2bb453..13db15bb 100644 --- a/Sources/epoch_code/compile/event_handlers/EPOCH_getInMan.sqf +++ b/Sources/epoch_code/compile/event_handlers/EPOCH_getInMan.sqf @@ -29,4 +29,9 @@ if (_unit == player) then { 1 fadeSound 0.15; }; }; + if (_vehicle getvariable ["Vehicle_Slot","-1"] isequalto "-1") then { + if (!(_vehicle iskindof "Paraglide") && !(_vehicle iskindof "Ejection_Seat_Base_F")) then { + ['WARNING! This is a temp Vehicle and will despawn after Restart!',5] call Epoch_Message; + }; + }; };