SetWeaponFiringRate: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Fernando187 (talk | contribs) (Remove obsolete Requirements section) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Client function}} | {{Client function}} | ||
This function sets the firing rate to be used when a [[Element/Weapon|custom weapon]] is in ''firing'' state. | |||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua">bool setWeaponFiringRate ( weapon theWeapon, int firingRate )</syntaxhighlight> | <syntaxhighlight lang="lua">bool setWeaponFiringRate ( weapon theWeapon, int firingRate )</syntaxhighlight> | ||
{{OOP||[[Element/Weapon|weapon]]:setFiringRate|firingRate|getWeaponFiringRate}} | |||
===Required Arguments=== | ===Required Arguments=== | ||
* '''theWeapon:''' The weapon to modify the firing rate of. | * '''theWeapon:''' The weapon to modify the firing rate of. | ||
* '''firingRate:''' The weapon firing rate. | * '''firingRate:''' The weapon firing rate. It seems to be a kind of frecuency value, so the lower the quicker the [[Element/Weapon|custom weapon]] will shoot. | ||
===Returns=== | ===Returns=== | ||
Returns ''true'' on success, ''false'' otherwise. | Returns ''true'' on success, ''false'' otherwise. | ||
== | ==Example== | ||
This example makes the Desert Eagle gun fire faster. | |||
<syntaxhighlight lang="lua"> | |||
addEventHandler("onClientResourceStart", resourceRoot, | |||
function() | |||
local weapon = createWeapon ("deagle",0,0,10) -- create the weapon (deagle) | |||
setWeaponAmmo(weapon,5000) -- set weapon ammo to 5000 | |||
setWeaponState(weapon, "firing") -- in firing state. | |||
setWeaponFiringRate (weapon,2) -- change the weapon firing rate | |||
end | |||
) | |||
</syntaxhighlight> | |||
==See | ==See also== | ||
{{Client weapon creation functions}} | {{Client weapon creation functions}} |
Latest revision as of 17:06, 7 November 2024
This function sets the firing rate to be used when a custom weapon is in firing state.
Syntax
bool setWeaponFiringRate ( weapon theWeapon, int firingRate )
OOP Syntax Help! I don't understand this!
- Method: weapon:setFiringRate(...)
- Variable: .firingRate
- Counterpart: getWeaponFiringRate
Required Arguments
- theWeapon: The weapon to modify the firing rate of.
- firingRate: The weapon firing rate. It seems to be a kind of frecuency value, so the lower the quicker the custom weapon will shoot.
Returns
Returns true on success, false otherwise.
Example
This example makes the Desert Eagle gun fire faster.
addEventHandler("onClientResourceStart", resourceRoot, function() local weapon = createWeapon ("deagle",0,0,10) -- create the weapon (deagle) setWeaponAmmo(weapon,5000) -- set weapon ammo to 5000 setWeaponState(weapon, "firing") -- in firing state. setWeaponFiringRate (weapon,2) -- change the weapon firing rate end )
See also
- createWeapon
- fireWeapon
- getWeaponAmmo
- getWeaponClipAmmo
- getWeaponFiringRate
- getWeaponFlags
- getWeaponOwner
- getWeaponProperty
- getWeaponState
- getWeaponTarget
- resetWeaponFiringRate
- setWeaponAmmo
- setWeaponClipAmmo
- setWeaponFiringRate
- setWeaponFlags
- setWeaponProperty
- setWeaponState
- setWeaponTarget