Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. #pragma reqlib furien
  2.  
  3. // For Get User Team by Furien Mod
  4. enum FurienTeam
  5. {
  6. None = -1,
  7. Furien,
  8. AntiFurien
  9. }
  10.  
  11. // furien_shop.amxx
  12. // Menu Items in Shop Structure
  13. const FurienItem = (1 << 0);
  14. const AntiFurienItem = (1 << 1);
  15.  
  16. // furien_mod.amxx
  17. // Get user team by furien style.
  18. // See enum FurienTeam
  19. native FurienTeam:furien_get_user_team(const index);
  20.  
  21. // furien_mod.amxx
  22. // Called by Game_Commencing OR Game_will_restart_in
  23. forward furien_round_restart();
  24.  
  25. // Called by change teams.
  26. // NewFurienTeam - new team by CS types (TEAM_TERRORIST or TEAM_CT)
  27. forward furien_team_change(NewFurienTeam);
  28.  
  29. // furien_mod.amxx
  30. // Called by player spawned.
  31. // Only alive!
  32. forward furien_player_spawned(const index);
  33.  
  34. // furien_mod.amxx
  35. // Called by player killed.
  36. forward furien_player_killed(const index);
  37.  
  38. // furien_frozen.amxx
  39. // Called by player frozen
  40. forward furien_player_frozen(const index, attacker);
  41.  
  42. // furien_frozen.amxx
  43. // Called by player chilled
  44. forward furien_player_chilled(const index, attacker);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement