raptorr Posted August 26, 2013 Share Posted August 26, 2013 I'm trying to make a Minigun weapon that fire fast like an original minigun in the GTA. I have tried "setWeaponFiringRate()" but it doesn't work. Example: function createMinigunWeapon() local x, y, z = getElementPosition(getLocalPlayer()) weapon = createWeapon("minigun", x, y, z + 1) setWeaponFiringRate(weapon, 100) addEventHandler("onClientPreRender", root, fireMinigun) end addCommandHandler("createminigun", createMinigunWeapon) function fireMinigun() fireWeapon(weapon) end This fire every rendered frame and it's too fast. Please help me solve my problem. Thanks in advance Link to comment
Moderators IIYAMA Posted August 26, 2013 Moderators Share Posted August 26, 2013 function createMinigunWeapon() local x, y, z = getElementPosition(getLocalPlayer()) local weapon = createWeapon("minigun", x, y, z + 1) --setWeaponFiringRate(weapon, 100) setWeaponClipAmmo ( weapon,99999) setWeaponState ( weapon,"firing") end addCommandHandler("createminigun", createMinigunWeapon) Link to comment
raptorr Posted August 26, 2013 Author Share Posted August 26, 2013 Thank you very much, it work perfect... Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now