add mod : giver ... hum :)

master
D ø u G y 2017-05-16 19:35:14 +02:00
parent a6f0f576f0
commit 8225a31003
1 changed files with 10 additions and 0 deletions

10
Mods/giver/init.lua Normal file
View File

@ -0,0 +1,10 @@
-- Mod Name : giver
-- Mod Description : simple mod to give the players what you want on joining the server, useful while developing mods, testing recipes, etc.
-- Mod Author : DouGy
minetest.register_on_joinplayer(function(player)
-- Items and blocks id's can be found on the minetest site : http://wiki.minetest.net/Main_Page
-- Try the search bar in the top-right corner ;)
player:get_inventory():add_item("main", "default:steel_ingot 50") -- gives 50 steel ingots
end)