[Ayuda] їComo cambio esto?
#1

Hola quiero cambiar este codigo:

pawn Код:
public SaveStuff()
{
    new coordsstring[128];
    format(coordsstring, sizeof(coordsstring), "%d,%d,%d,%d", Jackpot,Tax,TaxValue,,Blood);
    new File: file2 = fopen("stuff.ini", io_write);
    fwrite(file2, coordsstring);
    fclose(file2);
    return 1;
}
Con ese cуdigo en un archivo ini se guardarнa en este formato los datos:
Код:
1162980,0,1,0
Pero yo quiero cambiar el cуdigo de tal forma que guarde en este formato
Код:
Jackpot = 56862
Tax = 0
TaxValue = 200
Blood = 75560
їComo puedo hacer eso?
Reply
#2

http://pastebin.com/SyhYhuYk

Код:
stock _StripNewLine(string[]) {//dini
    new len = strlen(string);
    if (string[0]==0) return ;
    if ((string[len - 1] == '\n') || (string[len - 1] == '\r')) {
        string[len - 1] = 0;
        if (string[0]==0) return ;
        if ((string[len - 2] == '\n') || (string[len - 2] == '\r')) string[len - 2] = 0;
    }
}
Reply
#3

No entiendo como adaptarlo a mi cуdigo :/
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)