GTA Közösség - A magyar GTA fórum

San Andreas Multiplayer (SA-MP) => SA-MP: Szerverfejlesztés => Segítségkérés => A témát indította: miroslavbrnic - 2011. március 13. - 14:19:20

Cím: Carjump HELP!
Írta: miroslavbrnic - 2011. március 13. - 14:19:20
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....
Cím: Carjump HELP!
Írta: nyE - 2011. március 13. - 14:30:41

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);
}
Cím: Carjump HELP!
Írta: miroslavbrnic - 2011. március 13. - 18:05:13
Kössz....
Pont  ez kelett.
Zárok......