I have tried:
Code: Select all
script.on_init(function()
local freeplay = remote.interfaces["freeplay"]
if freeplay then -- Disable freeplay popup-message
if freeplay["set_skip_intro"] then remote.call("freeplay", "set_skip_intro", true) end
if freeplay["set_disable_crashsite"] then remote.call("freeplay", "set_disable_crashsite", true) end
end
end)
As far as i can tell
Code: Select all
remote.call("freeplay", "set_skip_intro", true)
However
Code: Select all
remote.call("freeplay", "set_disable_crashsite", true)
I want to skip the cutscene because it means that the user has to provide inputs and it gets annoying very fast.
I want to retain the crashsite as it provides some difficulty.
Is there anything simple i can do?