1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-07-14 05:40:20 +02:00

Add _misc and u_skins

- Backup de u_skins pas update (ne pas l’update pour l’instant)
- ajout d’un _misc à jour
This commit is contained in:
Ombridride
2014-11-08 23:21:10 +01:00
parent 7430cdabe9
commit b86ec17527
1437 changed files with 2295 additions and 0 deletions

View File

@ -0,0 +1,10 @@
minetest.register_on_newplayer(function(player)
print("Un nouveau joueur vient de nous rejoindre !")
if minetest.setting_getbool("give_initial_stuff") then
print("Equipement de depart transmis")
player:get_inventory():add_item("main", "default:axe_wood")
player:get_inventory():add_item("main", "default:torch 10")
player:get_inventory():add_item("main", "default:sapling 2")
player:get_inventory():add_item("main", "default:apple 5")
end
end)