[FilterScript] SpeedBoost + jump Script
#1

Hare's The Code :
pawn Код:
//By UltraScripter Thx For Downloading :)!!!. .. . . .  . .
///////////////////////////////////////////////////////////

#include <a_samp>

#define RELEASED(%0) \
   (((newkeys & (%0)) != (%0)) && ((oldkeys & (%0)) == (%0)))

#if defined FILTERSCRIPT

#endif

public OnFilterScriptInit()
{
    printf("Car SpeedBoost And Jump By UltraScripter Loaded Succes Fully !!! !!! !!!");
    return 1;
}

public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    new Car, State, Float:x, Float:y, Float:z;
    Car = GetPlayerVehicleID(playerid);
    State = GetPlayerState(playerid);
    if(RELEASED(KEY_FIRE))
    {
       if(State == PLAYER_STATE_DRIVER)
       {
          GetVehicleVelocity(Car, x, y, z);
          SetVehicleVelocity(Car, x*2, y*2, z*2);
       }
    }
    if(RELEASED(KEY_CROUCH))
    {
       if(State == PLAYER_STATE_DRIVER)
       {
          SetVehicleVelocity(Car, x, y, z+0.4);
       }
    }
    return 1;
}

//By UltraScripter Thx For Downloading :)!!!. .. . . .  . .
///////////////////////////////////////////////////////////
Enjoey The Script!!.
Reply


Messages In This Thread
SpeedBoost + jump Script - by UltraScripter - 23.11.2014, 15:16
Re: SpeedBoost + jump Script - by UltraScripter - 23.11.2014, 15:23
Re: SpeedBoost + jump Script - by M0HAMMAD - 24.11.2014, 15:31
Re: SpeedBoost + jump Script - by LeXuZ - 24.11.2014, 16:26
Re: SpeedBoost + jump Script - by UltraScripter - 24.11.2014, 17:07
Re: SpeedBoost + jump Script - by Arastair - 24.11.2014, 18:27
Re: SpeedBoost + jump Script - by SoNikMells - 24.11.2014, 19:18
AW: SpeedBoost + jump Script - by Flori - 24.11.2014, 19:23
Re: SpeedBoost + jump Script - by UltraScripter - 24.11.2014, 20:42

Forum Jump:


Users browsing this thread: 1 Guest(s)