07.10.2011, 21:35
I'm guessing you're using Grand Larceny (aka grandlarc, default Gamemode by the SA-MP team).
This gamemode doesn't allow miniguns, so if you ARE using it, look for
and remove all the weapons you don't want people to get kicked with, like the minigun line in the script:
This gamemode doesn't allow miniguns, so if you ARE using it, look for
pawn Code:
public OnPlayerUpdate(playerid)
pawn Code:
// Don't allow minigun
if(GetPlayerWeapon(playerid) == WEAPON_MINIGUN)
{
Kick(playerid);
return 0;
}