I have tried two things in my game_interface.lua but none are working.
The first attempt is to see if the game can find user_script_1.lvl and attempt to run it. It did not work.
Code: Select all
if ScriptCB_IsFileExist("user_script_1.lvl") then
ReadDataFile("user_script_1.lvl")
endCode: Select all
ReadDataFile("user_script_1.lvl")Code: Select all
OnCharacterSpawn(
function(character)
if IsCharacterHuman(character) then
MissionVictory(1,2)
end
end
)



