diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2014-07-04 05:28:19 -0400 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2014-07-04 05:28:19 -0400 |
commit | 5e5580db1e018c05becb95591e8db704e6d9ac22 (patch) | |
tree | d03e5f3e56e32167b4848c5260707c3876cc6214 /init.lua |
initial commit
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..c7caffe --- /dev/null +++ b/init.lua @@ -0,0 +1,13 @@ +print(" Currency mod loading... ")
+dofile(minetest.get_modpath("currency").."/craftitems.lua")
+print("[Currency] Craft_items Loaded!")
+dofile(minetest.get_modpath("currency").."/shop.lua")
+print("[Currency] Shop Loaded!")
+dofile(minetest.get_modpath("currency").."/barter.lua")
+print("[Currency] Barter Loaded!")
+dofile(minetest.get_modpath("currency").."/safe.lua")
+print("[Currency] Safe Loaded!")
+dofile(minetest.get_modpath("currency").."/crafting.lua")
+print("[Currency] Crafting Loaded!")
+dofile(minetest.get_modpath("currency").."/income.lua")
+print("[Currency] Income Loaded!")
|