SA-MP Forums Archive
how to disable gun in a vehicle - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: how to disable gun in a vehicle (/showthread.php?tid=416994)



how to disable gun in a vehicle - akki - 19.02.2013

as the topic only tells you all things
like MP5 that can be used in bikes as well in cars. i want to disable it
please help


Re: how to disable gun in a vehicle - Patrick - 19.02.2013

use OnPlayerStateChange

Try this

pawn Код:
if (newstate == PLAYER_STATE_DRIVER)
{
    SetPlayerArmedWeapon(playerid, 0);
}