OnWeaponFire: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
{{New items|3.0140|1.4| | {{New items|3.0140|1.4| | ||
This event is triggered when a weapon gets fired | This event is triggered when a custom weapon gets fired. | ||
}} | }} | ||
Revision as of 16:46, 30 August 2014
This event is triggered when a custom weapon gets fired.
Parameters
None
Source
The source of this event is the element that fired the weapon. If the server is the creator it returns nil.
Cancel effect
If this event is canceled, the bullet(s) won't be synced with other players.
Requirements
This template will be deleted.
Example
addEventHandler( "onWeaponFire", root, function () if ( isElement( source ) ) and ( getElementType( source ) == "player" ) then outputChatBox( "You fired a weapon!", source, 0, 225, 0 ) end end )
See Also
Weapon events