07.01.2011, 16:32
Код:
public OnPlayerUpdate(playerid)
{
new HoldGun[MAX_PLAYERS];
new weap = GetPlayerWeapon(playerid);
if (weap > 1 && HoldGun[playerid] == 0)
{
//Set Your Swat Style here
HoldGun[playerid] = 1;
}
else
{
//Set The Your Normal Style here
HoldGun[playerid] = 0;
}
return 1;
}
What should i do at //set your swat style here
I am trying to make my players using swat style holding guns, not like CJ.
so how do i change it?

