13 lines
358 B
Lua
13 lines
358 B
Lua
print("Lua script check")
|
|
|
|
mapMaker = require "map_maker"
|
|
mapSaver = require "map_saver"
|
|
|
|
--BUG: #35 The server fails without at least one room
|
|
--TODO: Create rooms with names?
|
|
newRoom = RoomManager.CreateRoom("overworld", "overworld.bmp")
|
|
pager = Room.GetPager(newRoom)
|
|
RegionPager.SetOnCreate(pager, mapMaker.debugIsland)
|
|
|
|
print("Finished the lua script")
|