@gagax123 Is the OFS configuration file for 1.3.1.a compatible with 1.2.1 so that I can copy from my old OFS installation?
Is it possible or could it be added if its not to have a scripting mode where you control time with the arrow keys kinda like the people who script with numpad but then enter points with the mouse. I find the recording mode cool but the action often speeds up and slows down so its hard to pick a speed. So I would like to click on the measuring stick when and where I want a point while controlling speed frame by frame.
@Analair By default shift clicking the simulator will add a point at that height.
You can remove the need to hold shift by going into Options->Keys->Modifiers and clearing the shift modifier.
You can also use right shift which is close to the arrow keys.
The thing is Iâm not actually checking if the mouse is on the simulator so if you clear the modifier and click at the same height as the simulator a point is added. I may fix this. some time
Edit: On second thought the best thing you can do is go to Options->Keys->Modifiers and rebind to the right ctrl key. So one hand on the arrow keys + right ctrl and the other on the mouse.
So im a noob to scripting and have tried FunScripter but to no avail. I downloaded the zip of OFS off the GitHub Repo but there is no .exe in order to install it. Am I missing something?
@Jazzyjas00 If you want an installer then download the exe instead of the zip. The zip is a distribution for those that donât want to run an installer or who what to run multiple versions of OFS side by side.
Thatâs what I was looking for thanks.
Iâve managed to clear some major road blocks on the way to the new âLua Extension APIâ.
I got things to compile correctly on Linux by not linking libmpv and instead dynamically loading mpv functions at runtime. I ported this to windows aswell cause why not.
And I finally found a way extension can run code in other threads without blocking UI and without causing undefined behaviour similar to the original Lua scripting in fact itâs the same way by copying the data .
I also tried writing an actual reference for this new API so itâs less obscure.
So this is the first draft.
LuaApiReference.md
Unlike the intial Lua scripting this new API is very easily extensible.
And itâs soooo much more efficient too.
Pretty hyped about this probably going to create a new release soon.
@sentinel Thanks for the help, couldnât find the exe installer yesterday but dug around and found it. Thanks Again, be on the look out for some CH vids from me. Im working on several at the moment.
Just a heads up, idk if this is just on my PC but whenever I open a video that has a â in the file name it crashes (the metadata editor stops responding). Removing the â fixes it.
Weird, must just be me. Might also be a windows 11 thing (Iâm using the dev release)
Could it be ´ or ` and not â (i.e. characters that can also be used with some letters like ĂŠ, è) ? Just a thought.
Still canât reproduce. There may be something else going on though.
Iâm not going to install windows 11 any time soon
I just created another release. v1.4.0
You can now use the new Lua API there shouldnât be any breaking changes anymore.
Check the reference to see how it works: LuaApiReference.md
Note:
You can use luasocket inside extensions without doing anything however Iâm thinking of removing it because itâs not well documented and very impractical.
The reason you would want to use this is for inter process communication and raw tcp/udp sockets arenât very easy to use especially not in a high level language like Lua.
So if you want to write an extension which needs to communicate with another program or hit a server using http let me know.
I think http support and maybe websocket support would be supperiour to raw tcp/udp sockets.
It would be a large amount of work so I wouldnât want to do it, if it wouldnât get used.
thanks for the the realeses !
Can you merge scripts ? import script A, add script B making a Script C = a+b
Does anyone have a list of extensions for OpenFunscripter? Iâm curious if they could make scripting life easier.
Thanks for the great tool!
The ones that are integrated with OFS:
Other than that I ocassionaly use HandyControl 1.2.0 to limit speed in the scripts / create fancy heatmaps.
Yes you can.
- Import the video/audio for your âCâ script. (Loading scripts without video/audio is not supported)
- In the main menubar âProjectâ->âAddâŚâ->âAdd extistingâ to add your âAâ script.
- In the main menubar âProjectâ->âAddâŚâ->âAdd extistingâ to add your âBâ script.
- You should now have 3 timelines. Copy the sections you want from âBâ / âAâ to âCâ via ctrl+c / ctrl+v
- When done you can remove âAâ & âBâ from the project via âProjectâ->âRemoveâ
thanks, thatâs great ! i didnât think of making the compilation video before joining the scripts.