[Ajuda] Salvar coordenadas
#8

Fiz esse cуdigo simples e rбpido para vocк ter uma minima noзгo de como funciona o DOF2.

Recomendo que crie as variбveis que armazena tanto as posiзхes e os вngulos de modo global, assim nгo terбs dificuldade de armazenar dados do sistema em outras ocasiхes.

PHP код:
public Salvarcoo(playerid)
{
    new 
Float:xFloat:yFloat:zFloat:anglefile[30], aname[MAX_PLAYER_NAME];
    
GetPlayerName(playeridaname,sizeof(aname));
    
GetPlayerPos(playeridxyz);
    
GetPlayerFacingAngle(playeridangle);
    
format(filesizeof(file), PASTA_CONTASaname);
    if(!
DOF2_FileExists(file)){
        
DOF2_CreateFile(file);
        
DOF2_SetFloat(file"UltimaPosicaoX"x);
        
DOF2_SetFloat(file"UltimaPosicaoY"y);
        
DOF2_SetFloat(file"UltimaPosicaoZ"z);
        
DOF2_SetFloat(file"UltimoAngulo"angle);
        
DOF2_SaveFile();
    }
    return 
1;
}
public 
CarregarCoo(playerid){
    if(
DOF2_FileExists(file)){
        
DOF2_GetFloat(file"UltimaPosiзгoX");
        
//...//
    
}
    return 
1;

Reply


Messages In This Thread
Salvar coordenadas - by zGuigui2068 - 27.03.2016, 00:23
Re: PQ n salva - by Coreia - 27.03.2016, 00:35
Re: PQ n salva - by Lуs - 27.03.2016, 00:35
Re: PQ n salva - by 1sbedx - 27.03.2016, 00:36
Re: Salvar coordenadas - by zGuigui2068 - 27.03.2016, 00:40
Re: Salvar coordenadas - by Lуs - 27.03.2016, 00:44
Re: Salvar coordenadas - by zGuigui2068 - 27.03.2016, 00:52
Re: Salvar coordenadas - by Coreia - 27.03.2016, 00:53

Forum Jump:


Users browsing this thread: 2 Guest(s)