11.04.2016, 13:24
Hello I need advice on how to make a statement to certain IP addresses? I think the list of IP addresses that they can use the command?
The condition for the IP lists
The condition for the IP lists
Код:
new ip[16];
GetPlayerIp(playerid, ip, sizeof(ip));
if(!strcmp(ip, "127.0.0.1")) //change 127.0.0.1 with the IP you wish to check against
{
//rest of command
}

