CMD:carjump(playerid, params[])
{
switch(GetPVarInt(playerid, \"carjump\"))
{
case 0: SetPVarInt(playerid, \"carjump\", 1), SendClientMessage(playerid, VALÓSZÍNÛ, \"Bekapcsolva!\");
case 1: SetPVarInt(playerid, \"carjump\", 0), SendClientMessage(playerid, VALÓSZÍNÛ, \"Kikapcsolva!\");
}
return 1;
}
if(GetPVarInt(playerid, \"carjump\") == 1 && newkeys & KEY_CROUCH)
{
new Float:x, Float:y, Float:z;
GetVehicleVelocity(GetPlayerVehicleID(playerid), x, y, z);
SetVehicleVelocity(GetPlayerVehicleID(playerid), x, y, z + 0.3);
}