Time Nick Message 16:32 fraang hi! i am currently exploring the modding possibilities in minetest and am trying to store player infos like attributes or skills 16:32 fraang but i am not sure how to do that properly. any suggestions? 16:37 kaeza fraang, the regular approach is to have a table in Lua indexed by player name 16:38 kaeza and (de)serialize to/from disk as needed 16:38 kaeza depending on your needs, detached inventories may also be used 16:39 CiaranG fraang: simple example - https://gitlab.com/CiaranG/health/blob/master/playerattribs.lua 16:43 fraang thx 16:43 fraang i will take a look at it