[Ajuda] nao entendo muito disso alguns erros para salvar
#1

Код:
C:\Users\Villy\Desktop\iniciante\gamemodes\Freeroam.pwn(5481) : error 029: invalid expression, assumed zero
C:\Users\Villy\Desktop\iniciante\gamemodes\Freeroam.pwn(5482) : error 017: undefined symbol "file"
C:\Users\Villy\Desktop\iniciante\gamemodes\Freeroam.pwn(5482) : warning 215: expression has no effect
C:\Users\Villy\Desktop\iniciante\gamemodes\Freeroam.pwn(5482) : error 001: expected token: ";", but found ")"
C:\Users\Villy\Desktop\iniciante\gamemodes\Freeroam.pwn(5482) : error 029: invalid expression, assumed zero
C:\Users\Villy\Desktop\iniciante\gamemodes\Freeroam.pwn(5482) : fatal error 107: too many error messages on one line
nao sei se esta certo o local

foi um exemplo que o dark fez pra mim aqui https://sampforum.blast.hk/showthread.php?tid=370549

mais eu uso DOF2 ai tive que colocar pra DOF2 deu esses erros eu nao entendo muito de DOF2 estou aprendendo ainda alguem sabe arruma isso e se esta no lugar correto '-'
pawn Код:
if(dialogid == comprar)
{  
    if(!response) return SendClientMessage(playerid,-1,"Cancelado com sucesso!");
    if(listitem == 0) {
    if(GetPlayerMoney(playerid) > 250)
    {
    GivePlayerMoney(playerid, -250);
    ComprouRadio[playerid] = true;
    SendClientMessage(playerid, -1, "Vocк comprou um Rбdio");
    new Arquivo[80];
    new pNome[MAX_PLAYER_NAME];
    GetPlayerName(playerid,pNome,sizeof(pNome));
    format(Arquivo,sizeof(Arquivo),"Comprou/%s.ini",pNome);
    DOF2_FileExists(Arquivo[]);
    DOF2_GetInt(file[],key[],tag[]="Radio");
    DOF2_SaveFile();
    }
    else
    {
    SendClientMessage(playerid, -1, "Vocк nao tem a grana.");}}
    return 1;
}
Reply
#2

aki o
PHP код:

#include <a_samp>
#include <zcmd>
#include <DOF2>
#define ComproRadio 1
#define Naocomprou 2
#define Radiooo "Radio/%s.ini"
#define Relax 3
new bool:RadioC[MAX_PLAYERS];
enum pInfo
{
 
radios,
 };
 
new 
Informacoes[MAX_PLAYERS][pInfo];
public 
OnFilterScriptInit()
{
    print(
"\n--------------------------------------");
    print(
" Blank Filterscript by your name here");
    print(
"--------------------------------------\n");
    return 
1;
}
public 
OnFilterScriptExit()
{
    return 
1;
}
public 
OnPlayerConnect(playerid)
{
  if(!
DOF2_FileExists(InfoRadio(playerid))){Informacoes[playerid][radios] = Naocomprou;
  }else{
Carregadados(playerid);}
  return 
1;
}
  
public 
OnPlayerDisconnect(playeridreason)
{
    
SalvaDados(playerid);
    return 
1;
}
CMD:compraradio(playerid)
{
 if(
GetPlayerMoney(playerid) < 250) return SendClientMessage(playerid, -1"Erro:Voce Nгo Tem Grana");
 
SendClientMessage(playerid, -1"Parabens Voce Comprou uma Radio");
 
RadioC[playerid] = true;
 
DOF2_CreateFile(InfoRadio(playerid));
 
Informacoes[playerid][radios] = ComproRadio;
 return 
1;
}
CMD:inforadios(playerid)
{
 new 
Radio[50],string[50],pname[20];
 
GetPlayerName(playeridpname20);
 if(
Informacoes[playerid][radios] == ComproRadio){ Radio "Sim";}
 else if(
Informacoes[playerid][radios] == Naocomprou){ Radio "Nгo";}
 
format(stringsizeof(string),"Nome: %s\n Comprou Radio:%s"pnameRadio);
 
ShowPlayerDialog(playeridRelaxDIALOG_STYLE_MSGBOX"Informaзхes Sobre A Radio",string,"Ok","");
 return 
1;
}
stock InfoRadio(playerid)
{
new 
string[75], Nomeradio[50];
GetPlayerName(playeridNomeradio,sizeof(Nomeradio));
format(string,sizeof(string),Radiooo,Nomeradio);
return 
string;
}
stock SalvaDados(playerid)
{
DOF2_SetInt(InfoRadio(playerid), "Radio"Informacoes[playerid][radios]);
return 
1;
}
stock Carregadados(playerid)
{
 
Informacoes[playerid][radios] = DOF2_GetInt(InfoRadio(playerid), "Radio");
 return 
1;

nгo testei se tive erros ae dps me avisa pq tou de saida
ele mostra se o player comprou radio ou nгo em um dialog
Reply
#3

Math3us so explicando casa

isso

pawn Код:
DOF2_GetInt(file[],key[],tag[]);
e a native do DOF2_GetInt

Exemplo

pawn Код:
DOF2_GetInt(file[],key[],tag[]); // native


// como ser usada a DOF2_GetInt


if(DOF2_2GetInt(file, "Exemplo") == 1);
{
    //Acгo a ser executada caso o Exemplo for igual a 1
}

// to no celular nao sei se ficou errado ta meio fail aki pra mim aksoask mais so pra ter uma compreensao
Reply
#4

obrigado aos 2 +repu pra ambos.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)