Bob_Marley

[PAWNO] Rcon password

Sep 17th, 2012
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.34 KB | None | 0 0
  1. #include <a_samp>
  2.  
  3. public OnGameModeInit()
  4. {
  5.     new GetRconPassword[20];
  6.     GetServerVarAsString("rcon_password", GetRconPassword, sizeof (GetRconPassword));
  7.         if (!strlen(GetRconPassword) || strcmp(GetRconPassword, "123456"))
  8.     {
  9.             print("You can not start the server.");
  10.         SendRconCommand("exit");
  11.         return 1;
  12.     }  
  13.     return 1;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment