Jump to content

CoringaBVL

Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

CoringaBVL's Achievements

Vic

Vic (3/54)

0

Reputation

  1. Gostaria de saber como faço para salvar a posição dos veículos que estão no jogo, e quando desligar e ligar o server os veículos estarão no mesmo lugar.
  2. Alguem pode informar melhor como Fazer para o MTA as Balas Traçantes??
  3. Consegui fazer com que a bike não desça a Gasolina, agora preciso por outros veículos como faço para adicionar apenas alguns modelos de veiculo por ID para a gasolina nao funcionar. (Veiculos de Empregos no caso) factor = 0.03 function createVehicles(player) for i,v in ipairs(getElementsByType("vehicle")) do if getVehicleType (v) ~= "BMX" then fuel = math.random(10,25) setElementData(v, "fuel", fuel) end end end function processFuel(player) for i,v in ipairs(getElementsByType("vehicle")) do if getVehicleType (v) ~= "BMX" then local fuel = getElementData(v, "fuel") or math.random(10,25) if (getVehicleEngineState(v) and fuel > 0 ) then fuel = fuel - factor end if (fuel <= 0.99) then fuel = 0 setVehicleEngineState(v, false) end setElementData(v, "fuel", fuel) end end end createVehicles() setTimer(processFuel, 1000, 0)
×
×
  • Create New...