Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #include <sourcemod>
  2. #include <colors>
  3. #include <sdktools>
  4.  
  5. #define VERSION "1.00"
  6.  
  7. #define WHITE 0x01
  8. #define GREEN 0x04
  9.  
  10. public Plugin myinfo =
  11. {
  12. name = "No recoil",
  13. author = "[D]emoan",
  14. description = "",
  15. url = "",
  16. version = VERSION,
  17. };
  18.  
  19. public void OnPluginStart()
  20. {
  21. SetCommandFlags("weapon_accuracy_nospread", GetCommandFlags("weapon_accuracy_nospread") & ~FCVAR_CHEAT);
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement