[Ajuda] Sistema Avaria
#1

Boas eu meti um novo sistema de ligar motor e agora o meu carro quando fica quase a arder ele nao avaria :S eu uso este sistema de ligar motor : https://sampforum.blast.hk/showthread.php?tid=208562

agradeзo
Reply
#2

Avaria?
WTF?
O que ser isso?!
Reply
#3

Avaria = Estragar, PT europeu
Reply
#4

pawn Код:
if (strcmp("/motoron", cmdtext, true, 10) == 0)
    {
        new mot, lu, alar, por, cap, porma, ob;
        new carro = GetPlayerVehicleID(playerid);
        if(carro != INVALID_VEHICLE_ID)
        {
                if(motor[playerid] == 0)
                {
                    GetVehicleParamsEx(carro, mot, lu, alar, por, cap, porma, ob);
                    SetVehicleParamsEx(carro, VEHICLE_PARAMS_ON, lu, alar, por, cap, porma, ob);
                    motor[playerid] = 1;
                    SendClientMessage(playerid, 0xFFFFFFAA, "Veiculo {2F991A}Ligado!");
                }
            }
            return 1;
           }
    if (strcmp("/motoroff", cmdtext, true, 10) == 0)
    {
        new mot, lu, alar, por, cap, porma, ob;
        new carro = GetPlayerVehicleID(playerid);
        if(carro != INVALID_VEHICLE_ID)
            {
                if(motor[playerid] == 1)
                {
                    GetVehicleParamsEx(carro, mot, lu, alar, por, cap, porma, ob);
                    SetVehicleParamsEx(carro, VEHICLE_PARAMS_OFF, lu, alar, por, cap, porma, ob);
                    motor[playerid] = 0;
                    SendClientMessage(playerid, 0xFFFFFFAA, "Veiculo {E31919}Desligado!");
                }
            }
            return 1;
           }
Reply
#5

Lucas nao deu , o carro nao se desliga quando ta a deitar fumo preto
Reply
#6

Ja vi avaria no pt brasileiro. So que nгo temos o costume de falar assim.
Reply
#7

http://forum.sa-mp.com/showpost.php?...&postcount=310

Divirta-se.
Reply
#8

isso nao tem nada a ver com o que eu quero
Reply
#9

vocк tem de colocar a funзгo pra desligar nй fdm?! aff.
Reply
#10

E eu tenho funзгo de desligar veja

Код:
if (strcmp("/ligarmotor", cmdtext, true, 10) == 0)
    {
        new mot, lu, alar, por, cap, porma, ob;
        new carro = GetPlayerVehicleID(playerid);
        if(carro != INVALID_VEHICLE_ID)
        {
                if(motor[playerid] == 0)
                {
                    GetVehicleParamsEx(carro, mot, lu, alar, por, cap, porma, ob);
                    SetVehicleParamsEx(carro, VEHICLE_PARAMS_ON, lu, alar, por, cap, porma, ob);
                    motor[playerid] = 1;
                    SendClientMessage(playerid, 0xFFFFFFAA, "Motor {2F991A}Ligado. {E31919}Para desligar usa /desligarmotor");
                }
            }
    }
    if (strcmp("/desligarmotor", cmdtext, true, 10) == 0)
    {
        new mot, lu, alar, por, cap, porma, ob;
        new carro = GetPlayerVehicleID(playerid);
        if(carro != INVALID_VEHICLE_ID)
            {
                if(motor[playerid] == 1)
                {
                    GetVehicleParamsEx(carro, mot, lu, alar, por, cap, porma, ob);
                    SetVehicleParamsEx(carro, VEHICLE_PARAMS_OFF, lu, alar, por, cap, porma, ob);
                    motor[playerid] = 0;
                    SendClientMessage(playerid, 0xFFFFFFAA, "Veiculo {E31919}Desligado. {2F991A}Para ligar usa /desligarmotor");
                }
            }
    }
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)