Separate names with a comma.
Bigmap has to be disabled because of the fast travel feature that causes a bunch of bugs especially with health enabled. I'd basically have to...
Yeah I'm going to update tutorials eventually, this is just not very high priority because the amount of people looking to extend the mod is very...
Cars spawning without engines or wheels isn't an issue, this was added in 1.17.4 to behave like the used shop in SLRR. It's not affected by...
Basically you send data to UI apps from lua with: local guihooks = require('guihooks') guihooks.trigger("myHook", myData) And in the UI app...
So to answer your questions I should explain the concept of virtual filesystem BeamNG uses. Your game has files that can reside in the install...
Modifying a function so that it works both for your usage and is still compatible with the standard game is doable and often necessary when making...
Either your missing a part or you haven't exited part edit safe mode.
If the race is a scenario this line seems to works: scenario_scenarios.onSerialize().countDownTime For a different gameplay mode there might be...
Try a vanilla car, if it works the modded car is to blame.
I don't plan to add it, this is mainly a racing focused mod and I don't plan on adding more delivery types which would be needed for the T series...
Yeah it probably would be possible but I don't think it's really worth it at this point.
Modded jbeam files very often have issues because of typos, missing fields, etc. Best you can do is avoid files that cause problems. Show me...
Yeah I did, the map is actually released as an addon. I gave up on having race bystanders because it wasn't that important, just for a throwback...
The script should be inside the 0.34 subfolder, the game doesn't load anything before that into the virtual filesystem so that version specific...
Works fine for me. If you had the game running while you added the script you need to hit CTRL+L to reload lua scripts. If you make edits you need...
It only saves jbeam files that have edited coupler parts in them but those files could indeed contain non coupler parts, although they aren't...
Throw this code in a lua script (ex: userfolder/myScript.lua) and run it from console (extensions.myScript.myFunction()) local M = {} local...
There's a button to attach files to your issue on the bottom left of the text area. But before you try anything else, if you're still using the...
You could do this entire thing through lua without having to deal with parsing issues from a python json library. The game has util functions for...
Yeah I personally don't think it's worth it but it shouldn't be too hard to do as a first UI app. If you do it and get to the point where it works...