Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. class lightbar_on
  2. {
  3. displayName="Lightbar On";
  4. position="drivewheel";
  5. radius=2;
  6. condition="driver this == player && (this getVariable 'bm_libery') == 0";
  7. statement="this setVariable ['bm_libery',1,true] this animate [""lamp1"",1];this animate [""lamp2"",1];";
  8. onlyForplayer=0;
  9. };
  10. class lightbar_off
  11. {
  12. displayName="Lightbar off";
  13. position="drivewheel";
  14. radius=1000;
  15. condition="driver this == player && (this getVariable 'bm_libery') == 1";
  16. statement="this setVariable ['bm_libery',0,true] this animate [""lamp1"",1];this animate [""lamp2"",1];";
  17. onlyForplayer=0;
  18. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement