ID:1862020
 
Code:


Problem description:
ive never got this before
now i am getting a safety check message before i can run my byond games

Explain a little bit more. Are you using Dream Daemon or Dream Seeker?

Is the safety check the message that says you're giving permission to access things like .sav or whatnot?
i am running forumaccounts rpg
i save and exit
when i try to load
                if(fexists("savefile/[usr.ckey].sav"))//if an existing save file exists in the folder located in the game folder
var/savefile/F=new("savefile/[src.ckey].sav") // it creates a new save file
src.Read(F)
This should be in BYOND help, but how are you running the games? If it's through Dream Daemon, it could be the Security setting.

Could be the name of the folder not matching the name of the .dmb.
This is typical behavior, regardless of Dream Daemon/Seeker as the game is trying to access files that are stored on your machine. If the check wasn't in place, games could have access to any file on your system if the programmer knew the directory/file name.

Dream Daemon has an option to switch to Trusted which will accept any security check call. I can't remember if Seeker has the option to, but I don't believe so.
The issue is running the dmb file from a folder that's not named the same as the dmb. So "mygame.dmb" should be in a folder called "mygame", otherwise it'll default to ultra-safe mode instead of safe mode.