gonna be honest my memory on this mod is rusty so i might be total off.
Reading the source code it seems that the syntax is simply the syntax of minetest.deserialize, minus the brackets and return statement, so a command could look like this:
/afl:start "hello_world", "(2,2,2)", "(3,3,3)" -- start a forceload called "hello_world" on mapblocks (2,2,2) to (3,3,3) (remember to divide if you work on node positions) /afl:stop "hello_world" -- stop the forceload called "hello_world" /afl:query -- displays all forceloads
Could you provide examples of chatcommands syntax?
gonna be honest my memory on this mod is rusty so i might be total off.
Reading the source code it seems that the syntax is simply the syntax of minetest.deserialize, minus the brackets and return statement, so a command could look like this:
/afl:start "hello_world", "(2,2,2)", "(3,3,3)"
-- start a forceload called "hello_world" on mapblocks (2,2,2) to (3,3,3) (remember to divide if you work on node positions)/afl:stop "hello_world"
-- stop the forceload called "hello_world"/afl:query
-- displays all forceloads