Description
MAIN COMPILING
Download this setup file and execute it, follow the steps accordingly in order to compile the game
ERROR FIXES
all of these need a terminal / command prompt open, so get ready to type stuff
Press Windows+R and type "cmd"
if you are on Linux, just refer to your Desktop Environment's keybinds to open a new terminal (usually Ctrl+Shift+T)
...or launch it from your start menu
"Library not found: hxCodec" | "Invalid Class: MP4Handler" / "VideoHandler" FIX
type the following commands
haxelib remove hxCodec
haxelib install hxCodec
LUA RELATED ERRORS (mainly FunkinLua.hx returning errors)
type the following
haxelib remove linc_luajit
haxelib git linc_luajit https://github.com/superpowers04/linc_luajit
HXCPP_MSVC_CUSTOM ERROR (This is WINDOWS only error)
NOTICE: you need git installed in order for the next commands to work
type the following
curl -# -O https://download.visualstudio.microsoft.com/download/pr/3105fcfe-e771-41d6-9a1c-fc971e7d03a7/8eb13958dc429a6e6f7e0d6704d43a55f18d02a253608351b6bf6723ffdaf24e/vs_Community.exe
vs_Community.exe --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.Windows10SDK.19041 -p
del vs_Community.exe
NOTICE: if del vs_Community.exe
returns an error, simply delete the file manually
Activity