Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. class UserActions {
  2. class airrideoben
  3. {
  4. displayName = "Airride Oben (R)";
  5. position = "drivewheel_axis";
  6. radius = 1;
  7. shortcut = "ReloadMagazine";
  8. onlyForPlayer = 1;
  9. condition = "this animationPhase ""airride"" > 0.1 AND Alive(this) AND driver this == player";
  10. statement = "this animate [""airride"",0];";
  11. showWindow = 0;
  12. };
  13. class airridemitte
  14. {
  15. displayName = "Airride Mitte (G)";
  16. position = "drivewheel_axis";
  17. radius = 1;
  18. shortcut = "Throw";
  19. onlyForPlayer = 1;
  20. condition = "this animationPhase ""airride"" <= 1 AND Alive(this) AND driver this == player";
  21. statement = "this animate [""airride"",0.5];";
  22. showWindow = 0;
  23. };
  24. class airriderunter
  25. {
  26. displayName = "Airride Unten (B) ";
  27. position = "drivewheel_axis";
  28. radius = 1;
  29. onlyForPlayer = 1;
  30. shortcut = "Binocular";
  31. condition = "this animationPhase ""airride"" < 0.9 AND Alive(this) AND driver this == player";
  32. statement = "this animate [""airride"",1];";
  33. showWindow = 0;
  34. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement