Advertisement
Guest User

Untitled

a guest
Jan 13th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.37 KB | None | 0 0
  1. /*
  2.     File:   fn_seatBelt.sqf
  3.     Author: Edward
  4.    
  5.     Description: Gives you the ability to put your seatbelt on.
  6. */
  7.  
  8. #include "..\..\script_macros.hpp"
  9. /*
  10.     fn_seatBelt.sqf
  11. */
  12. playSound "seatbelt"; //--Enable this to play a sound when you put your seatbelt on
  13. if(!life_seatbelt) then {
  14.     life_seatbelt = true;
  15. } else {
  16.     life_seatbelt = false;
  17. };
  18.  
  19. [] call life_fnc_hudUpdate;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement