GetPedFightingStyle

From Multi Theft Auto: Wiki
Revision as of 19:02, 25 May 2008 by Arc (talk | contribs) (New page: {{Server function}} __NOTOC__ Retrieves the fighting style a player/ped is currently using. ==Syntax== <syntaxhighlight lang="lua"> int getPedFightingStyle ( ped thePed ) </syntaxhighlight> ===Required Argumen...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Retrieves the fighting style a player/ped is currently using.

Syntax

int getPedFightingStyle ( ped thePed ) 

Required Arguments

  • thePed: the ped whose current fighting style ID you wish to retrieve.

Returns

Returns the ped's current fighting style as an integer ID, false if it fails to retrieve a value.

Fighting Styles:

Fighting Style ID
STYLE_STANDARD 4
STYLE_BOXING 5
STYLE_KUNG_FU 6
STYLE_KNEE_HEAD 7
STYLE_GRAB_KICK 15
STYLE_ELBOWS 16

Example

This will allow any player to check what fighting style they are currently using, by typing the 'getfightingstyle' command.

function getPlayerFightStyle ( thePlayer, commandName )
	local playerstyle = getPedFightingStyle ( thePlayer )   -- store the fighting style in a variable
	outputChatBox ( tostring(playerstyle), thePlayer )         -- output it to the player
end
addCommandHandler ( "getfightingstyle", getPlayerFightStyle )

See Also