21.05.2010, 14:49
Quote:
|
Originally Posted by Jakku
I have a total blackout in GetPlayerIp. I wrote this:
pawn Код:
Somehow, it doesn't take effect. Maybe I have a wrong syntax with the IP or something? |
pawn Код:
new ip[32];
GetPlayerIp(playerid, ip, sizeof(ip));
if( strfind( ip, "85.76", true, 0 ) != -1 )
{
// They're on the 85.76.*.* range (we're checking the string (ip) from cell 0 to the last cell used in the substring.
Kick( playerid );
}
