GetPlayerEquippedWeaponSlot: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{Info|Function|Client & Server|1.0}}
{{Info|Function|Client & Server|1.0}}


{{FuncDescription|__EDIT_ME__}}
{{FuncDescription|Returns the slot the player currently has equiped}}


{{FuncSyntax|GetPlayerEquippedWeaponSlot(player)}}
{{FuncSyntax|GetPlayerEquippedWeaponSlot(player)}}


{{FuncParameters}}
{{FuncParameters}}
{{FuncParam|player|__EDIT_ME__}}
{{FuncParam|player|The player identifier}}


{{FuncReturnValue|__EDIT_ME__}}
{{FuncReturnValue|The weapon slot the player currently has equipped}}


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang="Lua>
print("Equipped Weapon Slot: " .. GetPlayerEquippedWeaponSlot(player))
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
__EDIT_ME__
{{ServerPlayerFunctions}}

Latest revision as of 14:49, 26 June 2021

GetPlayerEquippedWeaponSlot

Type: Function
Context: Client & Server
Introduced: v1.0

Description

Returns the slot the player currently has equiped

Syntax

GetPlayerEquippedWeaponSlot(player)

Parameters

  • player
    The player identifier

Return Value

  • The weapon slot the player currently has equipped

Example

print("Equipped Weapon Slot: " .. GetPlayerEquippedWeaponSlot(player))

See also