init.lua 494 B

123456789101112131415
  1. -- A couple variables used throughout.
  2. percent = 100
  3. -- GUI related stuff
  4. default.gui_bg = 'bgcolor[#080808BB;true]'
  5. default.gui_bg_img = 'background[5,5;1,1;gui_formbg.png;true]'
  6. default.gui_slots = 'listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]'
  7. campfire = {}
  8. dofile(minetest.get_modpath('campfire')..'/functions.lua')
  9. dofile(minetest.get_modpath('campfire')..'/abms.lua')
  10. dofile(minetest.get_modpath('campfire')..'/nodes.lua')
  11. dofile(minetest.get_modpath('campfire')..'/crafts.lua')