08.09.2010, 19:56
pawn Код:
public OnPlayerDisconnect(playerid, reason)
{
new n[MAX_PLAYER_NAME], file[256];
GetPlayerName(playerid,n,sizeof(n));
format(file,sizeof(file),"MyAdmin/Users/%s.txt",n);
PInfo[playerid][Logged] = 0;
if(dini_Exists(file)) //error its here to the end
{
dini_IntSet(file,"Logged",0);
return 1;
}
return 1;
}
Код HTML:
warning 217: loose indentation
Im not geting errors with the rest of the code


