Advertisement
Guest User

Untitled

a guest
Feb 14th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1.  
  2. #include <amxmodx>
  3. #include <cstrike>
  4. #include <codmod2>
  5. #include <csx>
  6. #include <colorchat>
  7.  
  8. #define PLUGIN "EXP Za Plant/Def Bomby"
  9. #define VERSION "1.0"
  10. #define AUTHOR "PaeK"
  11.  
  12.  
  13. public plugin_init() {
  14. register_plugin(PLUGIN, VERSION, AUTHOR)
  15. }
  16.  
  17. public bomb_planted(id){
  18. if(is_user_alive(id)){
  19. cod_set_user_xp(id,cod_get_user_xp(id) + 100);
  20. ColorChat(id, GREEN, "[Paintball]^x03 Otrzymujesz^x04 100exp'a^x03 za podlozenie bomby!");
  21. }
  22. }
  23. public bomb_defused(id){
  24. if(is_user_alive(id)){
  25. cod_set_user_xp(id,cod_get_user_xp(id) + 100);
  26. ColorChat(id, GREEN, "[Paintball]^x03 Otrzymujesz^x04 100exp'a^x03 za rozbrojenie bomby!");
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement