Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. var shots;
  2.  
  3. function on_ragebot_fire() {
  4. if(shots < 3)
  5. shots++;
  6. else(shots > 3)
  7. {
  8. UI.SetValue( "Rage", "GENERAL", "Exploits", "Doubletap", false);
  9. shots = 0;
  10. }
  11. }
  12.  
  13. function Main()
  14. {
  15. Global.RegisterCallback("ragebot_fire", "on_ragebot_fire");
  16. }
  17. Main();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement