06.02.2016, 08:28
Saves weapon (on the entrance to the car)
Switch weapon to UZI, MP5 or TEC-9
Switch weapon to the one that was (on exit of the car)
Switch weapon to UZI, MP5 or TEC-9
Switch weapon to the one that was (on exit of the car)
pawn Код:
new ArmedWeapon[MAX_PLAYERS];
public OnPlayerStateChange(playerid, newstate, oldstate)
{
if(newstate == PLAYER_STATE_DRIVER)
{
new weap, ammo;
ArmedWeapon[playerid] = GetPlayerWeapon(playerid);
GetPlayerWeaponData(playerid, 4, weap, ammo);
SetPlayerArmedWeapon(playerid, weap);
}
else if(oldstate == PLAYER_STATE_DRIVER) SetPlayerArmedWeapon(playerid, ArmedWeapon[playerid]);
return 1;
}