GetPedFightingStyle: Difference between revisions
Jump to navigation
Jump to search
(Added oop syntax) |
mNo edit summary |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{ | {{Shared function}} | ||
__NOTOC__ | __NOTOC__ | ||
Retrieves the fighting style a player/ped is currently using. | Retrieves the fighting style a player/ped is currently using. | ||
{{New feature/item|3.0157|1.5.6|16362|Function also added client-side.}} | |||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
Line 8: | Line 8: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{OOP||[[ped]]:getFightingStyle|fightingStyle}} | {{OOP||[[ped]]:getFightingStyle|fightingStyle|setPedFightingStyle}} | ||
===Required Arguments=== | ===Required Arguments=== | ||
Line 31: | Line 31: | ||
==See Also== | ==See Also== | ||
{{Ped functions}} | {{Ped functions}} | ||
[[hu:getPedFightingStyle]] |
Latest revision as of 12:11, 13 February 2019
Retrieves the fighting style a player/ped is currently using. Function also added client-side.
Syntax
int getPedFightingStyle ( ped thePed )
OOP Syntax Help! I don't understand this!
- Method: ped:getFightingStyle(...)
- Variable: .fightingStyle
- Counterpart: setPedFightingStyle
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
- addPedClothes
- getPedClothes
- removePedClothes
- createPed
- getPedAmmoInClip
- getPedArmor
- getPedFightingStyle
- getPedOccupiedVehicle
- getPedOccupiedVehicleSeat
- getPedStat
- getPedTarget
- getPedTotalAmmo
- getPedWalkingStyle
- getPedWeapon
- getPedWeaponSlot
- getPedContactElement
- getValidPedModels
- isPedChoking
- isPedDead
- isPedDoingGangDriveby
- isPedDucked
- isPedHeadless
- isPedInVehicle
- isPedOnFire
- isPedOnGround
- isPedWearingJetpack
- killPed
- removePedFromVehicle
- setPedAnimation
- setPedAnimationProgress
- setPedAnimationSpeed
- setPedArmor
- setPedDoingGangDriveby
- setPedFightingStyle
- setPedHeadless
- setPedOnFire
- setPedStat
- setPedWalkingStyle
- setPedWeaponSlot
- warpPedIntoVehicle