How can i make cars jump pressing h????
#1

How can i make cars jump pressing h?
Reply
#2

what do you mean?
Reply
#3

He means Hydrolics, Search it up..
Reply
#4

on top
pawn Код:
#define PRESSED(%0) \
    (((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0)))
pawn Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    if (PRESSED(KEY_HANDBRAKE))
    {
        new Float:x, Float:y, Float:z;
    GetVehicleVelocity(GetPlayerVehicleID(playerid), x, y, z);
    SetVehicleVelocity(GetPlayerVehicleID(playerid) ,x ,y ,z+0.3);
    }
    return 1;
}
this makes when u press handbrake it jumps ur car 10 feet in air
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)