Search the Community
Showing results for tags 'headlight'.
-
Ive always thought that GTA SA's brake light were insufficient when doing races that you'd barely see the other Vehicle, so i made a script which improves brake lights and adds reversing lights! The script is completely client sided, so no server performance drops, You can see the brake and reversing lights on all the Vehicles in your Area. Screenshots & Videos Sadly, because you cannot get the offset of vehicle headlight and brakelight dummies, you have to set the offsets yourself, it works as following: lights_table[589 .. "x"] = 0.4 lights_table[589 .. "y"] = -2 lights_table[589 .. "z"] = 0.1 lights_table[589 .. "x2"] = -0.4 lights_table[589 .. "y2"] = -2 lights_table[589 .. "z2"] = 0.1 -- x3 and x4 are optional lights_table[589 .. "x3"] = 0.6 lights_table[589 .. "y3"] = -2 lights_table[589 .. "z3"] = 0.1 lights_table[589 .. "x4"] = -0.6 lights_table[589 .. "y4"] = -2 lights_table[589 .. "z4"] = 0.1 lights_table is the table name, 589 is the vehicle ID, leave the dots, "x","y","z" are the offset coordinates, these are asked twice, one for "x,y,z" and one for "x2,y2,z2", each for one brake light ( left and right ), x3,y3,z3 and x4,y4,z4 are optional coordinates which serve as secondary brake lights. I will release the script soon on the community, and its already available on my GitHub.