[TFA] GTA V Weapons Pack (A.I fix)
There’s the V1 fix which fixes a lot of weapons from the original addon but removes the explosives as well the rockets and the minigun, unholy hellbringer etc then there’s the V2 fix which brings back the removed weapons, but have a lot of errors
So now, I present to you…
Turns out the root problem in V2 fix is because of this:
sound.Add( {
name = "spin",
channel = CHAN_STATIC,
volume = 1.0,
level = 80,
pitch = {100},
sound = "minigun/spinup.wav"
} )
sound.Add(soundData)
Instead of using local soundData =, it uses sound.Add(, making the sound.Add(soundData) unrecognisable, I just replaced it with local soundData = and voila, it fixes itself
YohSambre for fixing the original addon
Крабики с пивом for re-introducing back the removed weapons from the v1 fix
ChatGPT for pinpointing the errors and giving me suggestions