[BTTF] Flying Delly - Featured Vehicle

Started by Sebastian, Jun 04, 2019, 11:08 AM

Previous topic - Next topic

Sebastian

[spoiler=Youtube Video]https://www.youtube.com/watch?v=mwGSfGf65Rk[/spoiler]

Version: v1 Beta
Vehicle author: Spartan 112
I edited it to make it fit properly when car, but when helicopter mod too.

In order to make the switch between car and heli, you need to use the following code:
                if( veh.Model == 6440 )
                {
                    if( veh.GetHandlingData( 28 ) == -2 )
                    {
                        veh.SetHandlingData( 28, 10 );
                        return 0;
                    }
                    else if( veh.GetHandlingData( 28 ) == 10 )
                    {
                        veh.SetHandlingData( 28, -2 );
                        return 0;
                    }
                    else
                    {
                        veh.SetHandlingData( 28, 10 );
                    }
                }

Now, you can apply it by Binding a Button, to have the best experience posible. :P
Have fun!

Note: Stop the car before switching to the heli mod. Otherwise, it will continue to work as a car.
It's the game engine, nothing to do, except forcing the car's stop through script.



MEGAMIND

Aww man that was my idea, thanks sebby been waiting for this for so long

Sebastian

#2
Quote from: MEGAMIND on Jun 04, 2019, 12:10 PMAww man that was my idea

So, where is your version ?...

EDIT: Please, don't come here and say that you had this idea too, but never tried to make it happen.
Also, this snippet was done because @ysc3839 shown me BTTF mod of Vice City, so I said why not.

MEGAMIND

Quote from: Sebastian on Jun 04, 2019, 12:55 PM
Quote from: MEGAMIND on Jun 04, 2019, 12:10 PMAww man that was my idea

So, where is your version ?...

EDIT: Please, don't come here and say that you had this idea too, but never tried to make it happen.
Also, this snippet was done because @ysc3839 shown me BTTF mod of Vice City, so I said why not.
told ya was an idea not something else

ysc3839


Sebastian

Quote from: MEGAMIND on Jun 04, 2019, 01:07 PMtold ya was an idea not something else

Don't take it personally. It just happened too many times since I'm playing this, so I'm not able to process that anymore. :)
Wish you the best!

MEGAMIND

Quote from: Sebastian on Jun 04, 2019, 01:40 PM
Quote from: MEGAMIND on Jun 04, 2019, 01:07 PMtold ya was an idea not something else

Don't take it personally. It just happened too many times since I'm playing this, so I'm not able to process that anymore. :)
Wish you the best!
nah i aint being that kind of minded person actually i was amazed when u made this thing, actually i my self made 4 handling lines each one is unique (drift car, spider car, iv handling, drag racing dominic car), but i didnt even thought of this handling :P Good mode Sebby