This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tortuga/rsc/scripts/setup_server.lua
T
2014-11-06 01:22:08 +11:00

12 lines
372 B
Lua

print("Lua script check")
mapMaker = require "map_maker"
mapSaver = require "map_saver"
roomSystem = require "room_system"
--create the overworld, set it's generator, loader & saver
local overworld = roomSystem.CreateRoom("overworld", "overworld.bmp")
roomSystem.SetOnLoad(overworld, mapMaker.debugIsland, mapSaver.load, mapSaver.save)
print("Finished the lua script")