04.10.2009, 03:33
Quote:
Originally Posted by Enemy_Plus[SA:MP
]
Well in my Gamemode i have set weapons to be disabled in interiors. But it doesnt work. Can anyone test this? Because its really shitting me off that its not working. |
EDIT: Alright, I guess it doesn't work, wow..
You could use OnPlayerUpdate..
pawn Код:
public OnPlayerUpdate(playerid)
{
if(GetPlayerInterior(playerid) > 0)
{
SetPlayerArmedWeapon(playerid, 0);
return 1;
}
return 1;
}