Time Nick Message 00:43 Zughy[m]1 what's the best way to make a player unclickable, like it had no collisions at all? 00:44 Zughy[m]1 because `collision_box` doesn't seem to work. Or maybe PlayerAPI is overriding it every step, Idk 00:51 rubenwardy is there a pointable obj property 00:58 jaydemir installed Minetest 5, installed 'bows' mod from content tab,no bow in inventory and cant craft. Is there a command I'm spuposed to run or something? 00:59 Hawk777 If you already had a world, you need to go into the world configuration and turn on themod. 00:59 Hawk777 *the mod 00:59 Hawk777 Newly installed mods aren’t enabled by default in existing worlds IIRC. 00:59 jaydemir didnt think of that thanks! 01:04 Zughy[m]1 huh, yes, there is. So if I cast a ray through it, it shouldn't be able to detect the object, correct? 01:05 rubenwardy hmm, not sure which raycasts use 01:05 rubenwardy worst case, you can manually iterate 12:58 hisforever Hi I frogot gow to stop time. I think its /set time_speed 0 ? 14:18 MinetestBot 02[git] 04rubenwardy -> 03minetest/minetest: Fix crash in tab_online when cURL is disabled 13b287490 https://git.io/JtrYs (152021-02-09T12:41:11Z) 14:28 MiniontobyPI hi 14:28 MiniontobyPI can someone helps me 14:28 MiniontobyPI https://termbin.com/p2yr 14:28 MiniontobyPI i am trying to make an menu 14:28 MiniontobyPI to manage my minetest servers 14:29 MiniontobyPI i want to have an checklist to see all mods 14:29 MiniontobyPI can someone helpme? 14:29 MiniontobyPI or should i ask at an bash channel 14:30 anuke[m] ls ~/.minetest/mods -1 14:31 anuke[m] yes 14:32 Guest20520 Hello everyone, I would like to use Minetest for a youth project. I have rented a server privately so that all participants can log in via the IP address. Unfortunately, logging in as a client via the Minetest GUI does not work properly. I suspect that I am missing an error somewhere. Unfortunately, I can't really find anything online that fits my problem. My server knowledge is also not 14:32 Guest20520 the most extensive. Thanks in advance for the help! 14:33 MiniontobyPI i need to chec if it is enabled or not 14:33 sfan5 can you be more specific on "does not work properly"? 14:35 Guest20520 I mean I can not connect as a client to my private server (which I have set up before in Minetest) 14:37 Guest20520 I get the error message: 'connection timed out.' 14:38 Guest20520 if i try to cnnect as a client 14:38 rubenwardy is it being hosted publicly to the internet? 14:39 sfan5 could be the firewall 14:39 rubenwardy You can try doing /msg MinetestBot up IPADDRESS PORT 14:39 rubenwardy for example 14:39 MiniontobyPI thanks for the ls -1 dir 14:39 rubenwardy /msg MinetestBot !up rubenwardy.com 30000 14:39 rubenwardy missing ! 14:40 Guest20520 no, I have not announced the server (checkbox empty). it should be used in a closed group. 14:41 rubenwardy public doesn't mean announced in this context, I mean is it to be used over the internet 14:41 rubenwardy the MinetestBot tell can test whether it is accessible 14:41 rubenwardy *tool 14:41 rubenwardy It'll probably be a firewall or port forwarding issue 14:42 Guest20520 @rubenwardy: ok, i will check that 16:34 MinetestBot 02[git] 04An0n3m0us -> 03minetest/minetest_game: Smoothen lava sounds at loop points (#2820) 133d95fce https://git.io/JtrlO (152021-02-09T16:34:40Z) 17:41 Megaf Hello everyone :) 17:41 MTDiscord <11J​onathon> Hi 20:20 khimaros[m] is there a simple CLI client for minetest that is well suited to server admin tasks? 20:22 erlehmann https://nitter.snopyta.org/taviso/status/1359209259385294850 20:22 erlehmann > Yikes, someone found a buffer overflow in GNU screen that's reachable via irssi... it's almost like the old days. The reporter says it was found in the wild, apparently used to DoS a minecraft server. ?‍♂️ 20:22 erlehmann https://www.openwall.com/lists/oss-security/2021/02/09/7 21:12 gpcf hi 21:13 gpcf while I was verifying some tape backups, I found out that minetest saves the player creation date in the (postgres) player database 21:13 gpcf CREATE TABLE public.player ( [...] 21:13 gpcf creation_date timestamp without time zone DEFAULT now() NOT NULL, 21:13 gpcf 21:13 gpcf is there anyway to get this from inside the game? 21:20 Krock gpcf: https://github.com/minetest/minetest/blob/master/doc/lua_api.txt#L4802-L4806 21:20 Krock https://github.com/minetest/minetest/blob/master/doc/lua_api.txt#L8425 21:21 Krock no, there's no direct postgres API 21:37 definitely_a yo 21:49 gpcf Krock: that does not include any way to find out the first login 21:49 gpcf from what I read