GetPedWeapon: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
{{Server client function}}
This function tells you which weapon type is in a certain weapon slot of a ped. See [[weapon|Weapon Info]]
This function tells you which weapon type is in a certain '''[[weapon|weapon slot]]''' of a ped.


==Syntax==
==Syntax==
Line 7: Line 7:
int getPedWeapon ( ped thePed, [ int weaponSlot = current ] )
int getPedWeapon ( ped thePed, [ int weaponSlot = current ] )
</syntaxhighlight>
</syntaxhighlight>
{{OOP|This function is also a static function underneath the Ped class.|[[Ped]]:getWeapon|}}
{{OOP||[[ped]]:getWeapon}}


===Required Arguments===
===Required Arguments===
Line 13: Line 13:


===Optional Arguments===
===Optional Arguments===
*'''weaponSlot''': an integer representing the weapon slot (set to the ped's current slot if not given).
*'''weaponSlot''': an integer representing the [[weapon|weapon slot]] (set to the ped's current slot if not given).


===Returns===
===Returns===
Line 35: Line 35:
==See Also==
==See Also==
{{Client_ped_functions}}
{{Client_ped_functions}}
[[pt-br:GetPedWeapon]]

Latest revision as of 02:00, 20 February 2022

This function tells you which weapon type is in a certain weapon slot of a ped.

Syntax

int getPedWeapon ( ped thePed, [ int weaponSlot = current ] )

OOP Syntax Help! I don't understand this!

Method: ped:getWeapon(...)


Required Arguments

  • thePed: the ped you want to get the weapon type from.

Optional Arguments

  • weaponSlot: an integer representing the weapon slot (set to the ped's current slot if not given).

Returns

Returns an int indicating the type of the weapon the ped has in the specified slot. If the slot is empty, it returns 0.

It should be noted that if a ped runs out of ammo for a weapon, it will still return the ID of that weapon in the slot (even if it appears as if the ped does not have a weapon at all), though getPedTotalAmmo will return 0. Therefore, getPedTotalAmmo should be used in conjunction with getPedWeapon in order to check if a ped has a weapon.

Example

This example will display a player's current weapon type. In this case,a random player.

Click to collapse [-]
Server
-- Find a player called someguy and find his current weapon id.
local weaponType = getPedWeapon ( getRandomPlayer() )
-- 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