Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
  • Need help?

    Create a topic in the appropriate section
    Don't write everything in the chat!
  • Take a look at the marketplace

    There you can buy
    everything related to game servers
  • Don't want a ban?

    Please read our rules
    Don't disturb the order!
  • Sell or buy?

    Use services of the guarantor
    We will make your deal safe
  • 0
Sign in to follow this  
OldSchool

Вертолёты Колоба!

Ребят кто покупал вертолёты от колобова как вы их починили а то после 1.17 они не взлетают вообще !! и даже не реагируют на активные кнопки влево вправо и тд !! кто поченил где что надо исправить?

modded class ActionStartEngine
{
    bool m_HydraulicHoses;
    
    override void OnStartServer( ActionData action_data )
    {
        super.OnStartServer(action_data);
        
        HumanCommandVehicle vehCommand = action_data.m_Player.GetCommand_Vehicle();

        if( vehCommand )
        {
            Transport trans = vehCommand.GetTransport();
            if ( trans )
            {
                CarScript car;
                if ( Class.CastTo(car, trans) )
                {
                    if ( car.IsHelicopter() )
                    {
                        m_HydraulicHoses = false;
                        
                        ItemBase Item_HydraulicHoses = car.FindAttachmentBySlotName("HydraulicHoses");
                        if (Item_HydraulicHoses)
                            m_HydraulicHoses = true;
                    }
                }
            }
        }
    }
    
    override void OnStartClient( ActionData action_data )
    {
        OnStartServer( action_data );
    }

    override void OnFinishProgressServer( ActionData action_data )
    {
        HumanCommandVehicle vehCommand = action_data.m_Player.GetCommand_Vehicle();
        if( vehCommand )
        {
            CarScript car;
            if ( Class.CastTo(car, vehCommand.GetTransport()) )
            {
                if (car.IsHelicopter())
                {
                    if ( m_FuelCon && m_BeltCon && m_SparkCon && m_BatteryCon && m_HydraulicHoses )
                        car.EngineStart();                    
                }
                else
                {
                    if ( m_FuelCon && m_BeltCon && m_SparkCon && m_BatteryCon )
                        car.EngineStart();
                }
            }
        }
    }
    
    override bool CanBeUsedInVehicle()
    {
        return true;
    }
};

 

Edited by 123new
вставка кода в спец тег для его вставки (see edit history)

Share this post


Link to post
Share on other sites

2 answers to this question

Recommended Posts

  • 0

У меня есть верты от колоба, но есть большая проблема, верты летают, все машины не заводятся

Edited by danisimus (see edit history)

Share this post


Link to post
Share on other sites



  • 0

зачем тебе машины, если вертолёты летают 😄

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you automaticly agree to our Guidelines and Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.