powler 0 Posted April 15, 2013 @engborg how you getting on with the script making buddy? Still hoping its possible to do :-) Quote Share this post Link to post Share on other sites
DRUZZRIN12296 3 Posted July 16, 2013 Is this still in process? Please make this script. It will be a great addition to GTA IV :'S Quote Share this post Link to post Share on other sites
pedro2555 25 Posted July 16, 2013 You said 1.0f=2MPH. Don't know if we are talking about the same think, but the speed value of GTA IV is in meters per second, so 1.0f = 2.23694 MPH. Just a question, how do you handle the already existent gearing system. Because the cars already have gears, they'r auto but they have gears. How to managed that, check the RPM, and if at 1 don't allow speed to go up ? But how to be sure, you don't hear the in-game gear go up (or down) out of time ? I'm looking include this on UltimateFuelScript V2. But it has to be just right. Do we really know they have gears? Could be an auditory trick. They do is set in the handling file. And the car physics also reflet gear changes. Quote Share this post Link to post Share on other sites
funtikar 0 Posted March 13, 2015 Anyone is still doing this? I'm thinking of jumping in , is it impossible to do in GTA IV? Quote Share this post Link to post Share on other sites
Jitnaught 377 Posted March 14, 2015 (edited) Anyone is still doing this? I'm thinking of jumping in , is it impossible to do in GTA IV?Here's a gearbox mod that was posted not too long ago http://www.gta4-mods.com/script/ivmb-gearbox-f31484 Edited March 19, 2015 by LetsPlayOrDy Quote Share this post Link to post Share on other sites
user22245321 1 Posted March 18, 2015 (edited) Why you not just EngineRPM for it? Is more realistic because when the EngineRPM over the o.9xxxx is start to sound noices and up the gear and start agin from 0. I use my phone so in short its should looks like this: Private GearVal as integer Private CarSpeed as integer = player.vehicle.speed If player.vehicle.engingrepm > 0.9000 then If iskeypressed(keys.numpad8) Gearval += 1 Else Player.vehicle.speed =carspeed End if End if Select case carspeed Case 0 to 3 Gearval= -1 Case 3 to 20 Gearval = 1 End select You need develop it more, but this is the idea in big Edited March 18, 2015 by user22245321 Quote Share this post Link to post Share on other sites
leftas 128 Posted March 19, 2015 I would say if you want to develop good gear box mod, you need to RE game. Best wishes, Paul. Quote Share this post Link to post Share on other sites
Jitnaught 377 Posted March 19, 2015 (edited) I don't understand why nobody is noticing the link I posted which seems like it's a pretty good gearbox mod XD Edited March 19, 2015 by LetsPlayOrDy Quote Share this post Link to post Share on other sites
leftas 128 Posted March 19, 2015 LetsPlayOrDie, I noticed that, it's well-made, good gearbox, but I still don't changing my mind, that best gear box would be to edit like in CVehicle class gear variable for example or in worst you can edit CVehicleInfo's max gears. Best wishes, Paul. Quote Share this post Link to post Share on other sites
Jitnaught 377 Posted March 19, 2015 LetsPlayOrDie, I noticed that, it's well-made, good gearbox, but I still don't changing my mind, that best gear box would be to edit like in CVehicle class gear variable for example or in worst you can edit CVehicleInfo's max gears. Best wishes, Paul. That's exactly what it does though... Quote Share this post Link to post Share on other sites
leftas 128 Posted March 19, 2015 Really ? Sorry I didn't see that Best wishes, Paul. Quote Share this post Link to post Share on other sites
Jitnaught 377 Posted March 19, 2015 Really ? Sorry I didn't see that Don't worry about it Quote Share this post Link to post Share on other sites
funtikar 0 Posted March 24, 2015 (edited) @LetsPlayOrDy woah Thank you Brah, i've never would have found it through Google alone, good reason for this because it's a recent mod... I've been taking driving lesson and playing the game City Car Driving, the AT just annoys me now, i mean hearing it automatically shift... ... I was about to grease my rusty programming skills...thanks a bunch Edited March 25, 2015 by funtikar Quote Share this post Link to post Share on other sites