[Ajuda] Como salvar tuning?
#5

Se vocк usa Dini.
As funзхes que vocк ira usar basicamente:
pawn Код:
dini_Create("Local_Arquivo");
if(dini_Exists("Local_Arquivo"))
dini_IntSet("Local_Arquivo","Chave", Numero);
AddVehicleComponent(vehicleid, dini_Int("Local_Arquivo","Chave"));
if(dini_Int("Local_Arquivo","Chave") == Numero)
{
}
Exemplo:
//salvando componente:
dini_IntSet("Tunados.ini","Componente1", 1); //salva no arquivo Tunados, na linha Componente1 o numero 1. caso a linha nгo exista ele vai criar uma linha
// setando componente:
AddVehicleComponent(vehicleid, dini_Int("Tunados.ini","Componente1"));
//verificando:
if(dini_Int("Tunados.ini","Componente1") == 1)// verifica se no arquivo Tunados, na linha Componente1 estб = 1
{
    AddVehicleComponent(vehicleid, 1); // caso tiver adiciona o componente 1
}
//Verificando se o arquivo existe
if(dini_Exists("Local_Arquivo"))
{
   //caso o arquivo exista
}
else
{
 dini_Create("Local_Arquivo"); //caso o arquivo nгo exista ele cria.
}
Reply


Messages In This Thread
Como salvar tuning? - by logan1910 - 16.06.2014, 06:55
Re: [AJUDA]Como salvar tuning? - by MultiKill - 16.06.2014, 15:13
Re: [AJUDA]Como salvar tuning? - by logan1910 - 16.06.2014, 20:18
Re: [AJUDA]Como salvar tuning? - by lucas9946 - 16.06.2014, 20:26
Re: [AJUDA]Como salvar tuning? - by MultiKill - 16.06.2014, 20:29
Re: [AJUDA]Como salvar tuning? - by logan1910 - 17.06.2014, 00:51
Re: [AJUDA]Como salvar tuning? - by MultiKill - 17.06.2014, 01:24
Re: [AJUDA]Como salvar tuning? - by logan1910 - 17.06.2014, 02:06
Re: [AJUDA]Como salvar tuning? - by MultiKill - 17.06.2014, 02:23
Re: [AJUDA]Como salvar tuning? - by logan1910 - 17.06.2014, 03:17
Re: [AJUDA]Como salvar tuning? - by MultiKill - 17.06.2014, 03:28

Forum Jump:


Users browsing this thread: 3 Guest(s)