Search the Community
Showing results for tags 'gasolina'.
-
Interior inspiration: GTA V LTD Gasoline Specification: ● Low Poly ✔ ● Full Lighting Day/Night ✔ ● Materials ✔ ● Optimization ✔ ● Lighting effects [Lamps] ✔ -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- The model consists of 5 elements Payment methods: Paypal / Payhip Price: 30$ Payhip: https://payhip.com/b/GAQ5 Any question contact me on Discord: TheDarkQ#1707
-
I would like someone to help me with this script. I wanted to make a cmd that would give gas to the player without having to be in the stocking marker. I created the script but I do not know why it does not work. I'm new to scirpt and forum. >>>> script >>>>> https://www.mediafire.com/file/fzrbkj6zmba80x3/abasteceradm.Lua/file
-
Tenho um script aqui de gasolina, só ele a bicicleta ta com gasolina, como faço para colocar, para não reconhecer tais veiculos? Qual função eu posso usar? factor = 0.03 function createVehicles(player) for i,v in ipairs(getElementsByType("vehicle")) do fuel = math.random(10,25) setElementData(v, "fuel", fuel) end end function processFuel(player) for i,v in ipairs(getElementsByType("vehicle")) do 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 createVehicles() setTimer(processFuel, 1000, 0)