28.01.2010, 19:31
if you already have defined f.ex. a "new PlayerSkill[MAX_PLAYERS]" and its set to an unique value for hitmen only (lets assume its "#define PlayerSkillHitman 2", then just add a
..so it becomes available to all players that got defined like "PlayerSkill[playerid]==PlayerSkillHitman" somewhere.
Код:
if(PlayerSkill[playerid]==PlayerSkillHitman)
{
//your code
}

