It is a warning, you can ignore it. Your triggers should work now.
However what it is telling you is that the Lua "script sandbox" has disabled some things that potentially can be used to cause problems for you. Probably not by yourself directly, but if you installed a plugin that did things like delete files. There have been no reported cases of such things but we are being cautious.
You can do one of three things to make the warning message go away. Go to the File menu -> Global Preferences -> Lua tab, and:
- Suppress the warnings
Change the line (right near the top):
warn_if_not_trusted = true -- change to false to suppress warnings
to:
warn_if_not_trusted = false -- no warning messages
That suppresses the warnings themselves.
- Trust all worlds
Change the line (right near the top):
trust_all_worlds = false -- change to true to trust all the worlds
to:
trust_all_worlds = true -- trusting scripts in all worlds
This lets "dangerous" scripts be executed directly by world files (eg. triggers) but not plugins. There is a potential issue if you do this that a script that you or someone else writes (using "send to script") may cause a problem.
- Trust this particular world
You know your world "ID" (identifier) which in your case is "7d4718a967a99bbdb1ab63d1". That was in the warning message.
A little further down in the edit box on the Lua tab is a list of trusted worlds. Click the Edit button to see it more clearly. It looks like this:
local trusted_worlds = {
-- ["a4a1cc1801787ba88cd84f3a"] = true, -- example world A
-- ["cdc8552d1b251e449b874b9a"] = true, -- example world B
-- ["1ec5aac3265e472b97f0c103"] = true, -- example world C
} -- end of trusted_worlds
You can change that to trust this particular world, by add a line similar to the ones shown, with your world ID in it:
local trusted_worlds = {
["7d4718a967a99bbdb1ab63d1"] = true, -- Achaea
-- ["a4a1cc1801787ba88cd84f3a"] = true, -- example world A
-- ["cdc8552d1b251e449b874b9a"] = true, -- example world B
-- ["1ec5aac3265e472b97f0c103"] = true, -- example world C
} -- end of trusted_worlds