Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. #pragma semicolon 1
  2.  
  3. #define DEBUG
  4.  
  5.  
  6. #include <sourcemod>
  7. #include <sdktools>
  8.  
  9. #pragma newdecls required
  10.  
  11. int g_numer = 0;
  12.  
  13. public Plugin myinfo =
  14. {
  15. name = "Przypominajka",
  16. author = "osa",
  17. description = "",
  18. version = "1.0",
  19. url = "errorhead.pl"
  20. };
  21.  
  22. public void OnPluginStart()
  23. {
  24. CreateTimer(120.0, Przypominajkaa, _, TIMER_REPEAT | TIMER_FLAG_NO_MAPCHANGE);
  25. }
  26.  
  27. public Action Przypominajkaa(Handle hTimer)
  28. {
  29. if (g_numer == 0)
  30. PrintToChatAll("Aby włączyć Hud z prędkością należy wpisać w konsoli sm_hud");
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement