їComo guardar algunas cosas?
#2

Si solo fuera esa variable, lo guardarнa en simple archivo de texto, asн:
pawn Код:
public OnPlayerConnect(playerid)
{
    new
        File:input, // Variable como referencia al archivo abierto.
        string[MAX_PLAYER_NAME + 4]; // Matriz para el nombre del jugador y el nombre del archivo.
       
    GetPlayerName(playerid, string, sizeof(string)); // Obtenemos el nombre del jugador.
    format(string, sizeof(string), "%s.txt", string); // Ponemos en una cadena de texto el nombre del jugador con la extenciуn del archivo.
    input = fopen(string, io_read); // Abrimos y a la vez asignamos a la variable el archivo.
    if(input != 0) // Si el archivo fuй abierto correctamente:
    {
        fread(input, string); // Leer el archivo y su contenido ponerlo en la cadena de texto "string".
        Puntos[playerid] = strval(fread); // Convertimos el contenido de "string" en un valor numйrico.
        fclose(input); // Cerramos el archivo.
    }
    return 1;
}

public OnPlayerDisconnect(playerid, reason)
{
    new
        File:output,
        string[MAX_PLAYER_NAME + 4];
       
    GetPlayerName(playerid, string, sizeof(string));
    format(string, sizeof(string), "%s.txt", string);
    output = fopen(string, io_write);
    if(output != 0)
    {
        format(string, sizeof(string), "%i", Puntos[playerid]);
        fwrite(output, string);
        fclose(output);
    }
    return 1;
}
Cuando el jugador se desconecta se guardan los datos, y cuando se conecta se cargan.
Reply


Messages In This Thread
їComo guardar algunas cosas? - by arturo clark - 11.12.2010, 06:13
Re: їComo guardar algunas cosas? - by Miguel - 11.12.2010, 06:43
Re: їComo guardar algunas cosas? - by arturo clark - 11.12.2010, 07:07
Re: їComo guardar algunas cosas? - by Miguel - 11.12.2010, 07:10
Re: їComo guardar algunas cosas? - by arturo clark - 11.12.2010, 07:15
Re: їComo guardar algunas cosas? - by zSuYaNw - 11.12.2010, 16:05
Re: їComo guardar algunas cosas? - by arturo clark - 11.12.2010, 16:34
Re: їComo guardar algunas cosas? - by Zamaroht - 11.12.2010, 17:02
Re: їComo guardar algunas cosas? - by zSuYaNw - 11.12.2010, 17:15
Respuesta: їComo guardar algunas cosas? - by OwlCity - 11.12.2010, 17:24

Forum Jump:


Users browsing this thread: 1 Guest(s)