Vice City: Multiplayer

Server Development => Custom Content Releases => Vehicle Showroom => Topic started by: kennedyarz on Jun 01, 2017, 11:56 AM

Title: Flip Fast and Furious 6
Post by: kennedyarz on Jun 01, 2017, 11:56 AM
Content Type: Vehicle
Original Author: I can not find it. I only saw it in my SA and I converted it
[Modified By: sexi autor
Authorized By Original Author?: My GTA SA does not speak. so yes
Screenshots:
[spoiler](http://i.imgur.com/KHRhNTD.png)
(http://i.imgur.com/YouVXhs.png)[/spoiler]
Download here:
(http://files.thijn.ovh/img/7055b4c79824fcc9e88d7c7bacdcccf5/v6400_t0_p1_FNF6.7z) (http://files.thijn.ovh/download/7055b4c79824fcc9e88d7c7bacdcccf5/v6400_t0_p1_FNF6.7z)

To enjoy it more use this in your script
[spoiler]OnScriptLoad()
{
I_KEY <- BindKey(true, 0x49, 0, 0);
}

function onPlayerEnterVehicle( player, vehicle, door )
{
if( vehicle.Model == 6400 ) vehicle.Immunity = 1024;
}

function onKeyDown( player, key )
{
      if(key == I_KEY)
        {
if(player.Vehicle!=null) { local v=player.Vehicle; v.RelativeSpeed*=1.3;}
        }   
}
[/spoiler]







Title: Re: Flip Fast and Furious 6
Post by: Sebastian on Jun 01, 2017, 01:20 PM
Quote from: kennedyarz on Jun 01, 2017, 11:56 AMModified By: @kennedyarz (me)

Wrong. You didn't actually modified anything. (neither convert)
You just ported it to VCMP :)
Title: Re: Flip Fast and Furious 6
Post by: EK.IceFlake on Jun 01, 2017, 01:33 PM
Quote from: kennedyarzvehicle.Health=99999999;
???
vehicle.Immunity = 1023;You also forgot function before OnScriptLoad and it's onScriptLoad, not OnScriptLoad.

And then you complain about how simple things are.