[Ajuda] Erro Desconhecido
#8

Acho que estб dando conflito entre variбveis, tente agora.

PHP код:
stock SalvarPlayer(playerid)
{
    
GetPlayerName(playeridNomesizeof(Nome));
    
GetPlayerPos(playeridCoordX[playerid], CoordY[playerid], CoordZ[playerid]);
    
GetPlayerFacingAngle(playeridCoordA[playerid]);

    
format(Stringsizeof(String), CONTASNome);
    
DOF2_SetInt(String"Dinheiro"GetPlayerMoney(playerid));
    
DOF2_SetInt(String"Skin"GetPlayerSkin(playerid));
    
DOF2_SetInt(String"Procurado"GetPlayerWantedLevel(playerid));
    
DOF2_SetInt(String"CoordInt"GetPlayerInterior(playerid));
    
DOF2_SetFloat(String"CoordX"CoordX[playerid]);
    
DOF2_SetFloat(String"CoordY"CoordY[playerid]);
    
DOF2_SetFloat(String"CoordZ"CoordZ[playerid]);
    
DOF2_SetFloat(String"CoordA"CoordA[playerid]);
    
DOF2_SaveFile();

    new 
Str[50];
    
format(Strsizeof(Str), "LevelBRL/%s.ini"Nome);
    
DOF2_SetInt(Str"Segundos"PlayerInfo[playerid][pSegundos]);
    
DOF2_SetInt(Str"Score"GetPlayerScore(playerid));
    
DOF2_SaveFile();
    return 
true;
}

stock CarregarPlayer(playerid)
{
    
GetPlayerName(playeridNomesizeof(Nome));

    
format(Stringsizeof(String), CONTASNome);
    
GivePlayerMoney(playeridDOF2_GetInt(String"Dinheiro"));
    
SetPlayerSkin(playeridDOF2_GetInt(String"Skin"));
    
SetPlayerWantedLevel(playeridDOF2_GetInt(String"Procurado"));
    
SetPlayerPos(playeridDOF2_GetFloat(String"CoordX"), DOF2_GetFloat(String"CoordY"), DOF2_GetFloat(String"CoordZ"));
    
SetPlayerFacingAngle(playeridDOF2_GetFloat(String,"CoordA"));
    
SetPlayerInterior(playeridDOF2_GetInt(String"CoordInt"));

    new 
Str[60];
    
format(Strsizeof(Str), "LevelBRL/%s.ini"Nome);
    
PlayerInfo[playerid][pSegundos] = DOF2_GetInt(Str"Segundos");
    
SetPlayerScore(playeridDOF2_GetInt(Str"Score"));

    return 
true;

Reply


Messages In This Thread
Erro Desconhecido - by felipelm3g - 11.12.2015, 00:00
Re: Erro Desconhecido - by matheusspohr - 11.12.2015, 00:19
Re: Erro Desconhecido - by felipelm3g - 11.12.2015, 00:23
Re: Erro Desconhecido - by CZ - 11.12.2015, 00:39
Re: Erro Desconhecido - by felipelm3g - 11.12.2015, 00:44
Re: Erro Desconhecido - by CZ - 11.12.2015, 00:49
Re: Erro Desconhecido - by felipelm3g - 11.12.2015, 01:06
Re: Erro Desconhecido - by cicinho - 11.12.2015, 08:07
Re: Erro Desconhecido - by felipelm3g - 11.12.2015, 12:38

Forum Jump:


Users browsing this thread: 1 Guest(s)