25.09.2011, 08:10
A way to find out which key value is shift, when in a vehicle is with this code
Get in a car, press shift and use that value in your code
pawn Код:
public OnPlayerUpdate(playerid)
{
new keys, ud, lr, str[20];
GetPlayerKeys(playerid, keys, ud, lr);
format(str, 20, "Value: %d", keys);
SendClientMessage(playerid, 0xFFFFFFFF, str)
return 1;
}