[Pedido] Salvamento de um sistema.
#1

Olб.
Eu estava vendo um FilterScript antigo do usuбrio Jim._.Carrey, e analisei o seguinte cуdigo;

pawn Код:
public OnPlayerConnect(playerid)
{
    VeiculoID[playerid] = -1;
    CriouVeiculo[playerid] = false;
    return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
    new
        cmd[128], idx, tmp[128];

    cmd = strtok(cmdtext, idx);
   
    GetPlayerPos(playerid, PlayerGetPos[0], PlayerGetPos[1], PlayerGetPos[2]);
    new
        Float:iAngulo
    ;
    GetPlayerFacingAngle(playerid, iAngulo);

    if(strcmp(cmd, "/veh", true) == 0)
    {
        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, 0xFF3300AA, "| ERRO | Uso correto: /CriarVeiculo [Veнculo ID / Nome] [Cor 1] [Cor 2]");
            return 1;
        }
        new veiculo = GetVehicleModelID(tmp);
        if(veiculo == -1)
        {
            veiculo = strval(tmp);
            if(veiculo < 400 || veiculo > 611)
            {
                SendClientMessage(playerid, 0xFF3300AA, "| ERRO | Uso correto: /CriarVeiculo [Veнculo ID / Nome] [Cor 1] [Cor 2]");
                return 1;
            }
        }
        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, 0xFF3300AA, "| ERRO | Uso correto: /CriarVeiculo [Veнculo ID / Nome] [Cor 1] [Cor 2]");
            return 1;
        }
        new color1 = strval(tmp);
        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, 0xFF3300AA, "| ERRO | Uso correto: /CriarVeiculo [Veнculo ID / Nome] [Cor 1] [Cor 2]");
            return 1;
        }
        new color2 = strval(tmp);
        if(veiculo < 400 || veiculo > 611)
        {
            SendClientMessage(playerid, 0xFF3300AA, "| ERRO | Somente veнculos entre 400 б 611!");
            return 1;
        }
        DestroyVehicle(VeiculoID[playerid]);
        PutPlayerInVehicle(playerid, Modelo[ playerid ] = CreateVehicle(veiculo, PlayerGetPos[0], PlayerGetPos[1], PlayerGetPos[2], iAngulo, color1, color2, -1), 0);
        VeiculoID[playerid] = GetPlayerVehicleID(playerid);
        CriouVeiculo[playerid] = true;
        format(g_string, sizeof(g_string), "| INFO | %s criado com sucesso! (Somente vocк pode dirigi-lo)", Veiculos[GetVehicleModel(Modelo[ playerid ])-400]);
        SendClientMessage(playerid, 0xFFFF33AA, g_string);
        format(g_string, sizeof(g_string), "%s", PlayerName(playerid));
        VLabel3D[playerid] = Create3DTextLabel(g_string, 0x00FF00AA, 0.0, 0.0, 0.0, 40.0, 0, 1);
        Attach3DTextLabelToVehicle(VLabel3D[playerid], Modelo[ playerid ], 0.0, -2.5, 0.5);
        format(Veiculopp[VeiculoID[playerid]][Nome], 20, PlayerName(playerid));
        return 1;
    }
    return 0;
}
E com base disso eu queria saber como que eu faзo para que quando um player digite esse comando, й salvo em uma pasta no scriptfiles um arquivo em .ini com: o dono, posiзгo x, y, z , cor1 e cor2.

Alguйm poderia me ajudar com esse problema?
Reply
#2

Olб amigo.

Qual include de salvamento vocк usa?

Caso sejб dini, isto pode lhe ajudar:

https://sampwiki.blast.hk/wiki/Useful_Fu....28Dini.inc.29
Reply
#3

Pesquisa por Concessionaria no Search...
Reply
#4

Ok obrigado...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)