Page 1 of 2 12 LastLast
Results 1 to 10 of 19

Thread: Faster Cars?

  1. #1

    Faster Cars?

    Is it possible to make cars go any faster than around 120. I have heard of a script made by someone called deadeye but I cannot find it. Thanks.

  2. #2
    One of the tweaks by PvPScene made cars go faster off road - here
    Jedra's Addons
    Arma 2 : Enhanced Skills Slider
    Take On Helicopters : Take On Taxi | Jedra's Time Trials | Weapon Indicators | No Radar

  3. #3
    Corporal drift501's Avatar
    Join Date
    Dec 10 2011
    Location
    Australia
    Posts
    82
    Author of the Thread
    That sounds useful but is there something that makes cars faster on road. I want them to go ~200 to ~250.

  4. #4
    The engine has a limitation that prevents cars from accelerating beyond 120. If you're looking for a solution for a single mission, there are some setVelocity scripts to simulate a nitro boost or somesuch. My DM Road Rage contains such a script.

  5. #5
    Warrant Officer
    Join Date
    Jul 31 2008
    Location
    North America
    Posts
    2,567
    Any faster and the cars wouldn't be cars, they'd be......rocket ships.
    Last edited by Nicholas; Feb 4 2012 at 21:54.
    "The greatest way to avenge your enemy is by learning to forgive." - Takashi Tanemori

  6. #6
    Corporal drift501's Avatar
    Join Date
    Dec 10 2011
    Location
    Australia
    Posts
    82
    Author of the Thread
    So if I use this
    Code:
    _truck1 setVelocity [200, 0, 0]
    with truck1 as my vehicle does that meam it will start off at 200 and that will be its top speed for the rest of that mission?

  7. #7
    Quote Originally Posted by drift501 View Post
    So if I use this
    Code:
    _truck1 setVelocity [200, 0, 0]
    with truck1 as my vehicle does that meam it will start off at 200 and that will be its top speed for the rest of that mission?
    No, it just gives your truck a one-off push east at 200 m/s.

  8. #8
    Corporal drift501's Avatar
    Join Date
    Dec 10 2011
    Location
    Australia
    Posts
    82
    Author of the Thread
    I fou d this on the wiki
    Code:
    _vel = velocity _vehicle;
    _dir = direction _vehicle;
    _speed = 10; comment "Added speed";
    _vehicle setVelocity [(_vel select 0)+(sin _dir*_speed),(_vel select 1)+
    (cos _dir*_speed),(_vel select 2)];
    So how do I use this. Where do I put the vehicles speed?

  9. #9
    Corporal drift501's Avatar
    Join Date
    Dec 10 2011
    Location
    Australia
    Posts
    82
    Author of the Thread
    Anyone?

  10. #10
    It depends on how your missions is built! The code listed will set the velocity of the car named _vehicle as soon as it is run. You could call it from a trigger if you wanted to boost at a certain point, or you could use it in an addaction command if you wanted to boost from the action menu. What is your scenario?

    EDIT ---> It is still not going to have the effect you require though.
    Last edited by Jedra; Feb 6 2012 at 08:51.

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •