Time Nick Message 02:39 Swift110-mobile sup folks 08:25 erlehmann hey, did any of you ever want to figure out how many packets your mod or game sends without manually tallying up the debug output? i have got something for you, a script that tells you how many packets per second are actually sent: https://git.minetest.land/Mineclonia/Mineclonia/pulls/123/files 08:25 erlehmann the reason is that mineclonia inherited a LOT of useless packets from mineclone2 08:25 erlehmann and we are in the process of cleaning that stuff up 09:41 GNUHacker is possible get offline player metadata? 10:05 GNUHacker I try: 10:06 GNUHacker local player = core.get_player_or_load(name) 10:06 GNUHacker but 10:06 GNUHacker attempt to call field "get_player_or_load" a nil value 10:07 specing It's not in the doc 10:07 GNUHacker maybe im in wrong minetest version (5.4.1) ? 10:07 GNUHacker https://github.com/minetest/minetest/pull/9177 10:08 GNUHacker sorry wrong url 10:08 GNUHacker https://github.com/minetest/minetest/issues/6193 10:10 sfan5 the pull request you linked was not merged so the function described there is not available 10:10 GNUHacker :c 17:01 Elvis26 test 17:06 Krock test failed successfully 20:09 MinetestBot 02[git] 04hecktest -> 03minetest/minetest: Remove unused header includes 13850293b https://git.io/JlTIf (152021-07-21T20:07:13Z) 22:03 Extex I have a question. player:set_eye_offset for first person, if you put it behind the centre will it rotate around centre with the new offset or will it rotate around that new spot 22:04 Extex For example say your player model's head isn't in the centre 22:04 Extex Like a sheep or a horse 22:04 Extex Oh wait nvm I figured it out 22:55 beanzilla What's the best way to obtain the max hp of a player? 22:56 sfan5 !api 22:56 MinetestBot Someone thinks you should read the API docs, please go to: https://github.com/minetest/minetest/blob/master/doc/lua_api.txt 22:56 sfan5 let's see 22:56 MinetestBot 02[git] 04hecktest -> 03minetest/minetest: Remove unused ITextSceneNode header (#11476) 13a049e82 https://git.io/JlT2V (152021-07-21T22:55:20Z) 22:56 sfan5 player:get_properties().max_hp 22:56 beanzilla thank you. 22:56 beanzilla I was close.