Az lenne a kérdésem hogy hogyan lehetne megvalósítani azt hogy ezt
if(newkeys & KEY_CROUCH)
{
new Float:x, Float:y, Float:z;
GetVehicleVelocity(GetPlayerVehicleID(playerid), x, y, z);
SetVehicleVelocity(GetPlayerVehicleID(playerid), x, y, z + 0.3);
}
return 1;
Megcsinálni hogy aki akarja /carjump-al ki be tudná kapcsolni a H gombra való ugratást....
Elõre is kösz....
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);
}