OnPedWeaponSwitch: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 8: Line 8:
</syntaxhighlight>  
</syntaxhighlight>  


*'''previousWeaponID''': An integer representing the weapon that was switched from
*'''previousWeaponID''': an [[int]] representing the [[weapon]] that was switched from.
*'''currentWeaponID''': An integer representing the weapon that was switched to
*'''currentWeaponID''': an [[int]] representing the [[weapon]] that was switched to.


==Source==
==Source==
Line 26: Line 26:
</syntaxhighlight>
</syntaxhighlight>


==See Also==
{{See also/Server event|Ped events}}
{{Ped_events}}

Latest revision as of 03:04, 27 September 2018

This event is triggered when a ped switches weapons.

Parameters

int previousWeaponID, int currentWeaponID
  • previousWeaponID: an int representing the weapon that was switched from.
  • currentWeaponID: an int representing the weapon that was switched to.

Source

The source of this event is the ped that switched his weapon.

Example

This example outputs a line to the chat box whenever a ped changes weapons.

function weaponSwitch ( previousWeaponID, currentWeaponID )

outputChatBox("A ped switched weapons from " .. previousWeaponID .. " to " .. currentWeaponID .. "!")

end

addEventHandler ( "onPedWeaponSwitch", getRootElement(), weaponSwitch )

See Also

Ped events


Event functions