11.06.2017, 13:13
my bad add ; at the end of GetPlayerIp like this
Here the total code if you didn't get what I mean
Код:
GetPlayerIp(playerid, ip, sizeof(ip));
PHP код:
new connectstr[128], ip[16];
GetPlayerIp(playerid, ip, sizeof(ip)); // Assign the IP to the ip string variable
format(connectstr, sizeof(connectstr), "* %s (%d) Has Joined The Server - IP: %s.",pNick(playerid),playerid,ip);
for(new i; i <= MAX_PLAYERS; i++) //Loop through all players
{
if(PlayerInfo[i][pAdmin] >= 1) SendClientMessage(i, COLOR_DEAD, connectstr);
}