[Ajuda] Problemas no comando de /comprarcarro
#4

tenta la

pawn Код:
if(strcmp(cmdtext, "/comprarcarro", true) == 0)
{
    for(new carro = 0; carro < MAX_CARROS; carro++)
    {
        format(string, sizeof(string), "carro%d.ini", carro);
        if(dini_Exists(string))
        {
            if(dini_Int(file, "Carro") == 1)
                return SendClientMessage(playerid, Vermelho, "Vocк estб bloqueado para comprar veнculos.");
            if(strcmp(dini_Get(string, "Dono"), "Nenhum", false) == 1)
                return RemovePlayerFromVehicle(playerid);
            if(IsPlayerInAnyVehicle(playerid) && GetPlayerVehicleSeat(playerid) == 0 && GetPlayerVehicleID(playerid) == dini_Int(string, "Id"))
            {
                if(GetPlayerGrana(playerid) < dini_Int(string, "Preco"))
                    return SendClientMessage(playerid, Vermelho, "(ERRO) Vocк nгo tem dinheiro suficiente!");
                new aname[MAX_PLAYER_NAME];
                GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
                dini_IntSet(string, "TDono", 1);
                dini_Set(string, "Dono", aname);
                SendClientMessage(playerid, Azul, "(INFO) Veiculo comprado com sucesso!\n(INFO) Para ver os comandos do veiculo, use: /meucarro");
                dini_IntSet(file,"Carro",1);
                GivePlayerGrana(playerid, -dini_Int(string, "Preco"));
                TogglePlayerControllable(playerid, 1);
            }
        }
    }
    return 1;
}
Reply


Messages In This Thread
Problemas no comando de /comprarcarro - by RoLiK - 17.01.2014, 17:03
Re: Problemas no comando de /comprarcarro - by JonathanFeitosa - 17.01.2014, 17:07
Re: Problemas no comando de /comprarcarro - by lucas_mdr1235 - 17.01.2014, 18:30
Re: Problemas no comando de /comprarcarro - by PT - 17.01.2014, 20:52
Re: Problemas no comando de /comprarcarro - by Breno Da Silva Pereira - 17.01.2014, 21:33
Re: Problemas no comando de /comprarcarro - by RoLiK - 19.01.2014, 20:03

Forum Jump:


Users browsing this thread: 3 Guest(s)