12.07.2013, 11:50
(
Last edited by Chrisis; 12/07/2013 at 04:37 PM.
)
1) Discription :
it is very simple and not complicated at all ! just follow me and i will explain what we put and why we put it
2) Requitements :
PAWN compiler
3) steps :
go to OnPlayerStateChange ( if you didn't find it use CTRL + F )
add :
first line :
with it we know wish state is the player's state , all states can be found in the wiki
third line :
with set wish weapon the player will have in his hand , 0 means unarmed
now players CAN'T look left and right to kill people with a TEC9 - SMG or MICRO UZI
it is very simple and not complicated at all ! just follow me and i will explain what we put and why we put it
2) Requitements :
PAWN compiler
3) steps :
go to OnPlayerStateChange ( if you didn't find it use CTRL + F )
add :
pawn Code:
if(newstate == PLAYER_STATE_DRIVER)
{
SetPlayerArmedWeapon(playerid,0);
}
pawn Code:
if(newstate == PLAYER_STATE_DRIVER)
third line :
pawn Code:
SetPlayerArmedWeapon(playerid,0);
now players CAN'T look left and right to kill people with a TEC9 - SMG or MICRO UZI