02.10.2013, 14:14
16 is F - enter to vehicle as driver
What is the key define for G - enter the vehicle as passanger?
on this line https://sampwiki.blast.hk/wiki/Keys key 'G' is undefined :/
What is the key define for G - enter the vehicle as passanger?
on this line https://sampwiki.blast.hk/wiki/Keys key 'G' is undefined :/
Код:
if ((newkeys & 16) && !(oldkeys & 16))
{
if(C4RobStatus[playerid] == 1)
{
new Float:slx, Float:sly, Float:slz;
GetPlayerPos(playerid, slx, sly, slz);
CreateExplosion(slx, sly, slz, 0, 50);
RemovePlayerAttachedObject(playerid, 8);
C4RobStatus[playerid] = 0;
SendClientMessage(playerid, COLOR_LIGHTRED, "Due of your attempt to open the vehicle's door and enter as passenger the C4 fell from your hands and its explosived.");
return 1;
}
}

