26.05.2010, 15:35
Read the error. It say destination array is to small which means you made the array to small. dini_Get returns a 256 characters long string, so your array needs to have 256 cells. On the other hand, you can just do it like this
pawn Код:
GetPlayerIp(playerid,pip[playerid],16);
if(strcmp(pip[playerid], dini_Get(file,"IP")))

