Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. #include <amxmodx>
  2. #include <amxmisc>
  3. #include <codmod>
  4. #include <fun>
  5.  
  6. new const nazwa[] = "Pawliczek";
  7. new const opis[] = "xxx";
  8. new const bronie = (1<<CSW_HEGRENADE)|(1<<CSW_M4A1)|(1<<CSW_DEAGLE);
  9. new const zdrowie = 200;
  10. new const kondycja = 200;
  11. new const inteligencja = 200;
  12. new const wytrzymalosc = 200;
  13.  
  14. public plugin_init()
  15. {
  16. register_plugin(nazwa, "1.0", "amxx.pl");
  17.  
  18. cod_register_class(nazwa, opis, bronie, zdrowie, kondycja, inteligencja, wytrzymalosc);
  19. }
  20.  
  21. public cod_class_enabled(id)
  22. {
  23. give_item(id, "weapon_hegrenade");
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement