[Ajuda] Salvar pos ao desconectar
#1

Fiz um sistema de salvar posiзгo ao desconectar e tб dando 3 warnings (tag mismatch)
Code:
PHP код:
public OnPlayerDisconnect(playeridreason)
{
    new 
file[50], aname[MAX_PLAYER_NAME], Float:xFloat:yFloat:z;
    
GetPlayerName(playeridanamesizeof(aname));
    
KillTimer(TimerUp[playerid]);
    
format(filesizeof(file), "Contas/%s.ini"aname);
    if(
DOF2_FileExists(file))
    {
    
GetPlayerPos(playeridxyz);
    
DOF2_SetInt(file"Dinheiro"GetPlayerCash(playerid));
    
DOF2_SetInt(file"Level"pLevel[playerid]);
    
DOF2_SetInt(file"MinUP"minutoup[playerid]);
    
DOF2_SetInt(file"SegUP"segundoup[playerid]);
    
DOF2_SetInt(file"SairX"x);
    
DOF2_SetInt(file"SairY"y);
    
DOF2_SetInt(file"SairZ"z);
    
DOF2_SaveFile();
    }
    return 
1;

Ja tentei por Float no DOF2_SetInt mas tambйm nгo consegui
Reply
#2

PHP код:
public OnPlayerDisconnect(playeridreason

    new 
file[50], aname[MAX_PLAYER_NAME], Float:xFloat:yFloat:z
    
GetPlayerName(playeridanamesizeof(aname)); 
    
KillTimer(TimerUp[playerid]); 
    
format(filesizeof(file), "Contas/%s.ini"aname); 
    if(
DOF2_FileExists(file)) 
    { 
    
GetPlayerPos(playeridxyz); 
    
DOF2_SetInt(file"Dinheiro"GetPlayerCash(playerid)); 
    
DOF2_SetInt(file"Level"pLevel[playerid]); 
    
DOF2_SetInt(file"MinUP"minutoup[playerid]); 
    
DOF2_SetInt(file"SegUP"segundoup[playerid]); 
    
DOF2_SetFloat(file"SairX"x); 
    
DOF2_SetFloat(file"SairY"y); 
    
DOF2_SetFloat(file"SairZ"z); 
    
DOF2_SaveFile(); 
    } 
    return 
1

Coordenadas sгo float e nгo inteiras, entгo usa-se DOF2_SetFloat
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)