07.08.2014, 18:26
hola gene de sa-mp forum tengo un problema con una gm los stats no me salen en scriptfiles osea el nombre sale y el jugador queda guardado pero cuando abro el txt aparece todo vaciу me ayudan
aka dejo el codigo
public GuardarInfo(playerid)
{
if(IsPlayerConnected(playerid))
{
new string[64];
new NombreJugador[MAX_PLAYER_NAME];
GetPlayerName(playerid, NombreJugador, sizeof(NombreJugador));
format(string, sizeof(string), "Cuentas/%s.ini", NombreJugador);
new File: hFile = fopen(string, io_write);
if (hFile)
{
new var[64];
// format(var, 64, "Clave=%s\n", InfoJugador[playerid][jClave]);fwrite(hFile, var);
format(var, 64, "AdminNvl=%d\n",PlayerInfo[playerid][admlvl]);fwrite(hFile, var);
format(var, 64, "Sexo=%d\n",PlayerInfo[playerid][sexo]);fwrite(hFile, var);
format(var, 64, "Edad=%d\n",PlayerInfo[playerid][edad]);fwrite(hFile, var);
format(var, 64, "Vida=%.1f\n",PlayerInfo[playerid][vida]);fwrite(hFile, var);
}
}
return 1;
}
aka dejo el codigo
public GuardarInfo(playerid)
{
if(IsPlayerConnected(playerid))
{
new string[64];
new NombreJugador[MAX_PLAYER_NAME];
GetPlayerName(playerid, NombreJugador, sizeof(NombreJugador));
format(string, sizeof(string), "Cuentas/%s.ini", NombreJugador);
new File: hFile = fopen(string, io_write);
if (hFile)
{
new var[64];
// format(var, 64, "Clave=%s\n", InfoJugador[playerid][jClave]);fwrite(hFile, var);
format(var, 64, "AdminNvl=%d\n",PlayerInfo[playerid][admlvl]);fwrite(hFile, var);
format(var, 64, "Sexo=%d\n",PlayerInfo[playerid][sexo]);fwrite(hFile, var);
format(var, 64, "Edad=%d\n",PlayerInfo[playerid][edad]);fwrite(hFile, var);
format(var, 64, "Vida=%.1f\n",PlayerInfo[playerid][vida]);fwrite(hFile, var);
}
}
return 1;
}