_this setVehicleLock "LOCKED";
_this addAction ["GET IN PILOT------------- U10",
{
params["_this","_user"];
_user moveInDriver (vehicle(_this));
},[1],0,false,true];
_this addAction ["GET IN GUNNER------------- U10",
{
params["_this","_user"];
_user moveInTurret [ (vehicle(_this)),[0]];
},[1],0,false,true];
_this addAction ["GET IN NAV------------- U10",
{
params["_this","_user"];
_user moveInTurret [ (vehicle(_this)),[1]];
},[1],0,false,true];
_this addAction ["GET OUT OF VIC------------- U11",
{
params["_this","_user"];
moveOut _user ;
},[1],0,false,true,"User12"];
_this addAction ["LOCK--------U14",
{
(vehicle (_this select 0)) setVehicleLock "LOCKED";
(vehicle (_this select 0)) vehicleChat "LOCKED";
},[1],0,false,true];
_this addAction ["UNLOCK--------U15",
{
(vehicle (_this select 0)) setVehicleLock "UNLOCKED";
(vehicle (_this select 0)) vehicleChat "UNLOCKED";
},[1],0,false,true,"User15"];