mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-05 10:00:26 +01:00
743507564f
- Moved the holographic item's name as a field in switch_params (pclasses.api.register_class) - Added wizard class' skeleton for later - Fixed a few bugs in nodes, inventory and api - Splitted tick function to bury items in two - Items from 3d_armor's armor inventory are also affected by inventory vacuuming (from tick function). The player's static armor inventory is first cleared, then copied to the detached one, then armor updates everything else (rendering, model, etc) - Fixed itemname of admin shield to reserve it properly - Return graveyard inventory if it already exists. Do not create it every two seconds
16 lines
335 B
Lua
Executable File
16 lines
335 B
Lua
Executable File
-----------------------------
|
|
-- Boilerplate class
|
|
--
|
|
|
|
pclasses.api.register_class("adventurer", {
|
|
switch_params = {
|
|
color = { r = 142, g = 64, b = 00},
|
|
tile = "wool_white.png",
|
|
holo_item = "unified_inventory:bag_large"
|
|
},
|
|
on_assigned = function(pname)
|
|
minetest.chat_send_player(pname, "You are now an adventurer")
|
|
end
|
|
})
|
|
|