11.11.2015, 11:32
Figured out the issue.
It was regarding the following code:
Somehow, it was setting different settings than it should have been
It was regarding the following code:
pawn Код:
format(PlayerInfo[playerid][pIP], 20, "%s", PlayerIP(playerid));
stock PlayerIP(playerid){
new IP[20];
GetPlayerIp(playerid, IP, sizeof(IP));
return IP;
}