24.01.2015, 21:36
pawn Код:
stock ActualizarAutos(i)
{
new BArch[19];
format(BArch,sizeof(BArch),"Autos/%d.ini",i);
new INI:Arch = INI_Open(BArch);
INI_SetTag(Arch,"data");
INI_WriteInt(Arch,"Modelo",InformacionA[i][aModelo]);
INI_WriteFloat(Arch,"PosX",InformacionA[i][aPosX]);
INI_WriteFloat(Arch,"PosY",InformacionA[i][aPosY]);
INI_WriteFloat(Arch,"PosZ",InformacionA[i][aPosZ]);
INI_WriteFloat(Arch,"Rotacion",InformacionA[i][aRotacion]);
INI_WriteInt(Arch,"Color1",InformacionA[i][aColor1]);
INI_WriteInt(Arch,"Color2",InformacionA[i][aColor2]);
INI_WriteInt(Arch,"Tiempo respawn",InformacionA[i][aRespawn]);
INI_WriteInt(Arch,"Gasolina",InformacionA[i][aGas]);
INI_Close(Arch);
return 1;
}
forward CargarAutos_data(vehicleid,name[],value[]);
public CargarAutos_data(vehicleid,name[],value[])
{
INI_Int("Modelo",InformacionA[vehicleid][aModelo]);
INI_Float("PosX",InformacionA[vehicleid][aPosX]);
INI_Float("PosY",InformacionA[vehicleid][aPosY]);
INI_Float("PosZ",InformacionA[vehicleid][aPosZ]);
INI_Float("Rotacion",InformacionA[vehicleid][aRotacion]);
INI_Int("Color1",InformacionA[vehicleid][aColor1]);
INI_Int("Color2",InformacionA[vehicleid][aColor2]);
INI_Int("Tiempo respawn",InformacionA[vehicleid][aRespawn]);
INI_Int("Gasolina",InformacionA[vehicleid][aGas]);
return 0;
}