Vehicle Booost

Started by W3aPoN^, Jul 23, 2016, 02:12 PM

Previous topic - Next topic

W3aPoN^

Hello I Need A Script For Increasing Vehicle Speed By Pressing L Key In GAME

KAKAN

Quote from: razacharan on Jul 23, 2016, 02:12 PMHello I Need A Script For Increasing Vehicle Speed By Pressing L Key In GAME
Use vehicle.AddSpeed += Vector(1,1,1); to increase the speed.
oh no

W3aPoN^

Where To Add IT? THANKS

Finch Real

@razacharan
Add this on functionScriptLoad
function onScriptLoad()
{
   L <- BindKey(true, 0x4C,0,0);
}


and this on function onKeyDown( player, key )
function onKeyDown( player, key )
{
if ( key == L )
{
 if(player.Vehicle!=null)
{
local v=player.Vehicle;
v.RelativeSpeed*=1.3;
}
 }
}
My Snipet Showroom

http://pastebin.com/5KKuU5cg

W3aPoN^

Bro Finch Thanks Thanks Thanks Thanks Thanks Thanks Thanks Thanks All Your Help :) :) :)

.

Quote from: =NK=RazaCharan** on Nov 19, 2016, 08:14 PMBro Finch Thanks Thanks Thanks Thanks Thanks Thanks Thanks Thanks All Your Help :) :) :)

4 f*ing months later... what the
.