Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2012
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. #include <sdktools>
  2. #include <sourcemod>
  3.  
  4. #define PLUGIN_VERSION "1.0"
  5.  
  6.  
  7. public Plugin:myinfo =
  8.  
  9. {
  10. name = "horsemann cheat flag",
  11. author = "conductor",
  12. description = "remove cheat flag from horsemann cvars",
  13. version = PLUGIN_VERSION,
  14. url = "tf2jump.com"
  15. };
  16.  
  17. public OnPluginStart()
  18.  
  19. {
  20. SetCommandFlags("tf_halloween_bot_chase_range",GetCommandFlags("tf_halloween_bot_chase_range")^FCVAR_CHEAT)
  21. SetCommandFlags("tf_halloween_bot_quit_range",GetCommandFlags("tf_halloween_bot_quit_range")^FCVAR_CHEAT)
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement