How to Modify Weapon Skill for Every Players !
#1

Hi ! So I wanna make the gangstas spawn with a gun and a "Uzi",so They have two guns,Two uzi but I want
there to have just One Gun and One Uzi when they're Spawning.

Thanks

(Sorry for my English..I'm french)
Reply
#2

Код:
SetPlayerSkillLevel(playerid, WEAPONSKILL_UZI, 200); //This will make them use single-handed
add this under onplayerspawn and it should work
Reply
#3

pawn Код:
for(new x = 0; x < MAX_PLAYERS; x++)
{
  if(!IsPlayerConnected(x) || IsPlayerNPC(x)) continue;
  SetPlayerSkillLevel(x, WEAPONSKILL_UZI, 200);
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)