need help fixing this code
#1

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))
{
dini_IntSet(file,"Logged",0);
return 1;
}
return 1;
}


C:\Users\william\Desktop\samp\gamemodes\fun.pwn(90 ) : warning 217: loose indentation
C:\Users\william\Desktop\samp\gamemodes\fun.pwn(95 ) : warning 217: loose indentation
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


2 Warnings.
Reply
#2

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))
    {
        dini_IntSet(file,"Logged",0);
        return 1;
    }
    return 1;
}
Reply
#3

thank you it worked
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)