SA-MP Forums Archive
[DUDA]їComo guardo con y_ini? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: [DUDA]їComo guardo con y_ini? (/showthread.php?tid=467980)



[DUDA]їComo guardo con y_ini? - chusothe41 - 05.10.2013

Antes me guardaba pero ahora nose que ha pasado que no me guarda
pawn Код:
public LoadUser_data(playerid,name[],value[])
{
    INI_Int("VehicleID",PlayerInfo[playerid][pVehicle]);
    return 1;
}


            new vid;
            vid = AddStaticVehicleEx(modelo_vehiculo,557.5,-1266.0,17.24,82.2873,0,1,0);
            PutPlayerInVehicle(playerid, vid, 0);
                    GivePlayerMoney(playerid, -costo_vehiculo);
                    new INI:File = INI_Open(UserPath(playerid));
                    INI_WriteInt(File,"VehicleID",vid);
                    return 0;
He intentado de todo, no me da error al compilar pero simplemente no funciona


Respuesta: [DUDA]їComo guardo con y_ini? - Adoniiz - 05.10.2013

lee esto https://sampforum.blast.hk/showthread.php?tid=466096

con respecto a eso ... їcomo lo guardas? pasastes la callback de INI_ParseFile pero no el comando donde se guarda... pasalo completo por favor.


Re: [DUDA]їComo guardo con y_ini? - chusothe41 - 06.10.2013

jajajaja tremenda gilipollez la que era...

pawn Код:
new vid;
vid = AddStaticVehicleEx(modelo_vehiculo,557.5,-1266.0,17.24,82.2873,0,1,0);
PutPlayerInVehicle(playerid, vid, 0);
GivePlayerMoney(playerid, -costo_vehiculo);
new INI:File = INI_Open(UserPath(playerid));
INI_WriteInt(File,"VehicleID",vid);
INI_Close(File); //esto era lo que me faltaba... ._.
return 0