note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
SetPlayerFightingStyle
Description
Set a player's special fighting style. To use in-game, aim and press the 'secondary attack' key (ENTER by default).
Name | Description |
---|---|
playerid | The ID of player to set the fighting style of. |
FIGHT_STYLE:style | The fighting style that should be set. |
Returns
This function does not return any specific values.
Examples
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(cmdtext, "/boxing", true) == 0)
{
SetPlayerFightingStyle(playerid, FIGHT_STYLE_BOXING);
SendClientMessage(playerid, 0xFFFFFFAA, "You have changed your fighting style to boxing!");
return 1;
}
return 0;
}
Notes
tip
This does not affect normal fist attacks - only special/secondary attacks (aim + press 'secondary attack' key).
Related Functions
- GetPlayerFightingStyle: Get a player's fighting style.