Jump to content

[HELP] Smoke tires


R.y.c.k

Recommended Posts

there are some "Third Party GTA Mods" which make those smokes invisible. I don't think you can make it with script.

Edit: Try deleting gta_sa.set file from the User Files.

Edit 2: Try installing "GTA SA Ruckelfreier Mod v1.2" if deleting gta_sa.set doesn't work.

Link to comment
  • 9 years later...

guys i never found drift smoke script and i tryed to make it ,use this and have fun ?

local lx,ly,lz,lrx,lry,lrz = 1,-1.4,-0.8,0,0
local rx,ry,rz,rrx,rry,rrz = -1,-1.4,-0.8,0,0,0
local vehId = {466,526,558,567}
 
function upgradeTheCar( key, keyState, vehId)
    if not tonumber(vehId) then
        return false
    local veh = getPedOccupiedVehicle ( localPlayer )
    smokeL = createObject( 2780, 2,2,2)
    smokeR = createObject( 2780, 2,2,2)
    setObjectScale(smokeL,0)
    setObjectScale(smokeR,0)
    setElementCollisionsEnabled ( smokeL, false )
    setElementCollisionsEnabled ( smokeR, false )
    attachElements ( smokeL, veh,  lx,ly,lz,lrx,lry,lrz, vehId )
    attachElements ( smokeR, veh,  rx,ry,rz,rrx,rry,rrz, vehId )  
    end
 
bindKey("w","down",upgradeTheCar)
 
function ungrade ()
    setTimer(destroyElement,500,30,smokeL)
    setTimer(destroyElement,500,30,smokeR)
end
bindKey("w","up",ungrade)
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...