Need this.
#1

Hi there,

I need a SpeedBoost system, like this:

SpeedBoost (Press Alt or Ctrl)
FlyCar and Repair (Press 2)

If you can help me, do it please, I really aprecciate it ^^
Reply
#2

Please use the forum intern search function before creating a new thread.
http://forum.sa-mp.com/showthread.ph...ight=speedbost

You will also find FlyCar and Repair
Reply
#3

PHP Code:
// Simple Jump / Speed / Fix using keys.
#define HOLDING(%0) ((newkeys & (%0)) == (%0))
#define JUMP_MULTIPLIER 0.5
#define SPEED_MULTIPLIER 1.5
public OnPlayerKeyStateChange(playeridnewkeysoldkeys)
{
    
// Speed Boost (Press ALT / LCTRL)
    
if( HOLDINGKEY_ACTION ) )
    {
        if(
GetPlayerState(playerid) == PLAYER_STATE_DRIVER// Only the driver of the vehicle is able to do this!
        
{
            new
                
Float:f_xFloat:f_yFloat:f_z;
                   
            
GetVehicleVelocity(GetPlayerVehicleID(playerid), f_xf_yf_z);
            
SetVehicleVelocity(GetPlayerVehicleID(playerid), f_x SPEED_MULTIPLIERf_y SPEED_MULTIPLIERf_z SPEED_MULTIPLIER);
        }
    }
    
    
// Flip & Fly (Press 2)
    
if( HOLDINGKEY_SUBMISSION ) )
    {
        if(
GetPlayerState(playerid) == PLAYER_STATE_DRIVER// Only the driver of the vehicle will be able to do this!
        
{
            new
                
Float:f_xFloat:f_yFloat:f_zvID GetPlayerVehicleID(playerid);
            
            
// Fly
            
GetVehicleVelocity(vIDf_xf_yf_z);
            
SetVehicleVelocity(vIDf_xf_yf_z JUMP_MULTIPLIER);
            
            
// Repair
            
RepairVehicle(vID);
            
SetVehicleHealth(vID1000.0);
        }
    }
    return 
1;

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)