21.09.2012, 11:01
For IP,
You can use the function GetPlayerIP.
Example
You can use the function GetPlayerIP.
Example
pawn Код:
CMD:myip(playerid,params[])
{
new pIp;
GetPlayerIP(playerid,pIp,sizeof(pIp));
SendClientMessage(playerid, 0xFF0000, "You're IP is %i", pIp);
return 1;
}