Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. /* Plugin generated by AMXX-Studio */
  2.  
  3. #include <amxmodx>
  4. #include <amxmisc>
  5. #include <cstrike>
  6. #include <fun>
  7.  
  8. #define PLUGIN "Bombe"
  9. #define VERSION "1.0"
  10. #define AUTHOR "Fr0zen"
  11.  
  12.  
  13. public plugin_init() {
  14. register_plugin(PLUGIN, VERSION, AUTHOR)
  15.  
  16. register_clcmd("say /bombe", "bombe");
  17. register_clcmd("say_team /bombe", "bombe");
  18.  
  19. }
  20.  
  21.  
  22. public bombe(id)
  23. {
  24. give_item(id, "weapon_smokegrenade");
  25. give_item(id, "weapon_flashbang");
  26. cs_set_user_bpammo(id, CSW_SMOKEGRENADE,100);
  27. cs_set_user_bpammo(id,CSW_FLASHBANG,100);
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement