1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- _this setVehicleLock "LOCKED";
- _this addAction ["<t color='#FFFF00'>GET IN PILOT------------- U10</t>",
- {
- params["_this","_user"];
- _user moveInDriver (vehicle(_this));
- },[1],0,false,true];
- _this addAction ["<t color='#00FFFF'>GET IN GUNNER------------- U10</t>",
- {
- params["_this","_user"];
- _user moveInTurret [ (vehicle(_this)),[0]];
- },[1],0,false,true];
- _this addAction ["<t color='#0000FF'>GET IN NAV------------- U10</t>",
- {
- params["_this","_user"];
- _user moveInTurret [ (vehicle(_this)),[1]];
- },[1],0,false,true];
- _this addAction ["<t color='#FF00FF'>GET OUT OF VIC------------- U11</t>",
- {
- params["_this","_user"];
- moveOut _user ;
- },[1],0,false,true,"User12"];
- _this addAction ["<t color='#FF0000'>LOCK--------U14</t>",
- {
- (vehicle (_this select 0)) setVehicleLock "LOCKED";
- (vehicle (_this select 0)) vehicleChat "LOCKED";
- },[1],0,false,true];
- _this addAction ["<t color='#00FF00'>UNLOCK--------U15</t>",
- {
- (vehicle (_this select 0)) setVehicleLock "UNLOCKED";
- (vehicle (_this select 0)) vehicleChat "UNLOCKED";
- },[1],0,false,true,"User15"];
|