seroff

FootSteps For Admin V1.0 By Seroff

May 25th, 2016
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #include <amxmodx>
  2. #include <fun>
  3. #include <hamsandwich>
  4.  
  5. new PLUGIN[]="FootSteps For Admin"
  6. new AUTHOR[]="Seroff"
  7. new VERSION[]="1.0"
  8.  
  9. public plugin_init()
  10. {
  11. register_plugin(PLUGIN, VERSION, AUTHOR);
  12. RegisterHam(Ham_Spawn,"player","StartGame");
  13. }
  14.  
  15. public StartGame(id){
  16. if (get_playersnum()!=0 && get_user_flags(id) & ADMIN_IMMUNITY){
  17. set_user_footsteps(id,1);
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment