Advertisement
CamerDisco

Untitled

Jun 20th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. #include <sourcemod>
  2. #include <sdkhooks>
  3. #include <sdktools>
  4. #include <cstrike>
  5. #include <codmod>
  6.  
  7. new const String:nazwa[] = "Pancerniak";
  8. new const String:opis[] = "Ma dużą odporność na strzły przeciwnika";
  9. new const String:bronie[] = "#weapon_galil#weapon_glock#weapon_flashbang";
  10. new const inteligencja = 0;
  11. new const zdrowie = 60;
  12. new const obrazenia = -5;
  13. new const wytrzymalosc = 89;
  14. new const kondycja = -37;
  15.  
  16. public Plugin myinfo =
  17. {
  18. name = Pancerniak,
  19. author = "kyle`",
  20. description = "Cod Klasa",
  21. version = "1.0",
  22. url = ""
  23. }
  24.  
  25. public OnPluginStart()
  26. {
  27. cod_register_class(nazwa, opis, bronie, inteligencja, zdrowie, obrazenia, wytrzymalosc, kondycja);
  28. }
  29.  
  30. public cod_class_enabled(client)
  31. {
  32.  
  33. }
  34. public cod_class_disabled(client)
  35. {
  36.  
  37. }
  38. public cod_class_skill_used(client)
  39. {
  40.  
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement