Saltar al contenido principal

SetPlayerSkillLevel

Description

Set the skill level of a certain weapon type for a player.

NameDescription
playeridThe ID of the player to set the weapon skill of.
WEAPONSKILL:skillThe weapon to set the skill of.
levelThe skill level to set for that weapon, ranging from 0 to 999. A level out of range will max it out.

Returns

This function does not return any specific values.

Examples

public OnPlayerSpawn(playerid)
{
// Make the player use single-handed sawn-off shotguns.
SetPlayerSkillLevel(playerid, WEAPONSKILL_SAWNOFF_SHOTGUN, 1);
return 1;
}

Notes

aviso

The skill parameter is NOT the weapon ID, it is the skill type. Click here for a list of skill types.

  • Weapon Skills: List of weapon skills that are used to set player's skill level.