ResetWeaponFiringRate: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Added OOP syntax and Needs Example template)
(Remove obsolete Requirements section)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
{{Needs_Example}}
This function resets the firing rate of a [[Element/Weapon|custom weapon]] to the default one.
This function resets the firing rate of a [[Element/Weapon|custom weapon]] to the default one.


Line 14: Line 13:
Returns ''true'' on success, ''false'' otherwise.
Returns ''true'' on success, ''false'' otherwise.


==Requirements==
===Example===
{{Requirements|n/a|1.3.0-9.04555|}}
<syntaxhighlight lang="lua">local weapon = createWeapon ("mp5",0,0,10)
resetWeaponFiringRate (weapon)
</syntaxhighlight>


==See also==
==See also==
{{Client weapon creation functions}}
{{Client weapon creation functions}}

Latest revision as of 17:06, 7 November 2024

This function resets the firing rate of a custom weapon to the default one.

Syntax

bool resetWeaponFiringRate ( weapon theWeapon )

OOP Syntax Help! I don't understand this!

Method: weapon:resetFiringRate(...)


Required Arguments

  • theWeapon: the weapon to reset the firing rate of.

Returns

Returns true on success, false otherwise.

Example

local weapon = createWeapon ("mp5",0,0,10) 
resetWeaponFiringRate (weapon)

See also