OpenFunscripter - a scripting tool - 3.2.0 release

Its. Not. There. The page says it’s archived and read only. So how are people getting the thing? Or can someone who has it just give me a copy? PLEASE?

Direct link to download the installer (no AVX)
Direct link to download the installer (AVX)

THANK YOU SO MUCH!! I was clicking the first link in the post which doesnt go there.

For any fellow linux users experiencing double mpv player bug with controls not working:

  1. clone repo
  2. git submodule update --init
  3. go to /OFS-lib/videoplayer/impl/OFS_MpvVideoplayer.cpp
    after line 182 add
error = mpv_set_option_string(CTX->mpv, "vo", "libmpv");
if(error != 0) {
    LOG_WARN("Failed to set mpv: vo=libmpv");
}
error = mpv_set_option_string(CTX->mpv, "gpu-context", "cocoa");
if(error != 0) {
    LOG_WARN("Failed to set mpv: gpu-context=cocoa");
}
  1. go to /lib/bitsery/include/bitsery/details/adapter_common.h
    after line 33 add
#include <cstdint>
  1. go to /localization/gen_localization.cpp
    on line 10 change
enum ColIdx : uint32_t

to

enum ColIdx
  1. go to main directory
  2. cmake -B build
  3. cd build
  4. make
3 Likes

Thanks for sharing this, I’ve been trying on and off to get it working for the last month.