arena_lib/mod-init.lua.example

19 lines
535 B
Plaintext
Raw Normal View History

2020-04-19 08:14:18 -07:00
arena_lib.initialize("call of Zughy")
arena_lib.settings("call of Zughy", {
prefix = "[CoZ] ",
hub_spawn_point = { x = 5, y = 10, z = 4 },
properties = {
most_wins_player = " ",
},
temp_properties = {
kill_leader = " ",
}
})
2020-04-19 08:17:35 -07:00
--arena_lib.update_properties("call of Zughy") --REMOVE THE COMMENT IF YOU ADDED NEW PROPERTIES AND YOU NEED TO ADD THEM TO YOUR OLD ARENAS
2020-04-19 08:14:18 -07:00
-- load other scripts
dofile(minetest.get_modpath("call of Zughy") .. "/foo.lua")
dofile(minetest.get_modpath("call of Zughy") .. "/whatever.lua")