GetPlayerWeapon: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 14: Line 14:


===Returns===
===Returns===
Returns an [[int]] indicating the type of the weapon the player has in the specified slot. Valid weapons IDs are:
Returns an [[int]] indicating the type of the weapon the player has in the specified slot. See [[weapon info]]
{{Weapons}}


==Example==
==Example==

Revision as of 18:13, 13 December 2006

This function tells you which weapon type is in a player's weapon slot.

Syntax

int getPlayerWeapon ( player thePlayer, [ int weaponSlot = current ] )

Required Arguments

  • thePlayer: the player you want to get the weapon type from.

Optional Arguments

  • weaponSlot: an integer representing the weapon slot (set to the players current slot if not given)

Returns

Returns an int indicating the type of the weapon the player has in the specified slot. See weapon info

Example

This example will display a player's current weapon type. In this case, it is hard coded to use the player called someguy.

-- Find a player called someguy and find his current weapon id.
weaponType = getPlayerWeapon ( findPlayer ( "someguy" ) )
-- If a weapon type was returned then
if ( weaponType ) then
  outputChatBox ( "Someguy's current Weapon-type: " .. weaponType .. "." ) -- Display the weapon type in the chat box
end

See Also