Advertisement
Guest User

Untitled

a guest
Oct 7th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.58 KB | None | 0 0
  1. #include <sourcemod>
  2. #include <tools>
  3. #include <string>
  4.  
  5. public Plugin myinfo = {
  6.     name = "nauka",
  7.     author = "Bluu",
  8.     description = "",
  9.     version = "1.0",
  10.     url = ""
  11. };
  12.  
  13. public void OnPluginStart()
  14. {
  15.     PrintToServer("Sprawdzarka dziala!");
  16. }
  17.  
  18. public OnClientPostAdminCheck(client)
  19. {
  20.     char clientNick[MAX_NAME_LENGTH];
  21.     GetClientName(client, clientNick, MAX_NAME_LENGTH);
  22.    
  23.     if(StrContains(clientNick, "how2kill.pl", true))   
  24.         PrintToChat(client, "Dziękujemy za wspieranie sieci!");    
  25.     else
  26.         PrintToChat(client, "Możesz nas wesprzeć wpisując do nicku how2kill.pl!")   
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement