Time Nick Message 01:42 ghoti Trying to figure out some bot programming with basic_robots. I put the following into a spawned bot... http://sprunge.us/K2VbfE It said "Done", but it didn't move or place. What am I missing? 09:05 NetherEran Hello, is anyone else unable to get into 3rd person mode by pressing F7? 09:07 NetherEran seems to be broken for me on 5.3.0 and the most recent commit 09:29 sfan5 they key was changed to C 09:29 sfan5 (yes that's stupid) 09:30 sfan5 the* 09:32 NetherEran aah thanks :) 10:23 CWz Can't compile: *** No rule to make target '/usr/lib/x86_64-linux-gnu/libXext.so' 10:23 sfan5 make clean && make 10:34 CWz Still getting the same error 10:36 sfan5 did cmake reconfigure when you ran that? 10:37 CWz I think so. is the X supposed to be capitalized? 10:38 sfan5 yes 10:38 sfan5 does that file exist? 10:40 tango_ CWz: libXext is part of the Xorg client libraries 10:40 tango_ on debian you need the libxext-dev package 10:40 tango_ other distros will have something similar 10:41 tango_ it's curious that cmake didn't notice its absence though? 10:41 CWz Yes, but not the exact name. libXext.so.6 libXext.so.6.4.0 10:42 CWz nvm, all is well, just had to delete and recreate the _build directory 10:44 CWz Thanks 10:45 sfan5 hm 10:45 sfan5 my suggestion with make clean was supposed to have the same effect 10:46 sfan5 but looks like that didn't work 10:52 tango_ in my experience make clean doesn't reset the cmake dependencies 11:15 Quiark use Nix package manager 11:16 Quiark I use it on macOS, fixed the minetest formula there 11:23 hisforever Hi I'd like some help with the mod pack techpack I can't get it in game. Its in my mods folder? here is a part of the debug page https://pastebin.com/B3mRmud1 11:25 NetherEran do you have any mods in your mod folder that techpack also contains? 11:25 NetherEran because having the same mod twice confuses minetest 11:25 hisforever yes all of the mods are there 11:26 hisforever so I might have 2 of them right? 11:27 hisforever brb 11:28 hisforever there no dduplicates 11:32 NetherEran the log you linked tells you to choose a name, sounds like you clicked on 'host server' by accident. 11:40 hisforever humm I only paly on this computr 11:40 hisforever thanks for your hlp 11:41 hisforever help 11:47 specing hisforever: join blocky survival 11:49 hisforever ok do I go to join gane tab? 11:55 specing hisforever: yes 11:55 specing hisforever: blocky survival and aurelium are the only two servers with techpack, and the latter has no players 11:59 hisforever I'm in blocky's server noe 12:00 hisforever now 12:00 hisforever sorry my typing is terrable lol 17:37 specing Is core.register_on_formspec_input(function(formname, fields) supposed to work in 5.3.0? 17:37 specing I have a print there, but nothing gets printed when I click a button on server 17:38 sfan5 I don't see this function in lua_api.txt 17:38 sfan5 oh, CSM 17:42 tango_ is there a camera switch that gives you a 2D overhead view or something close to that? 17:44 specing sfan5: yes, CSM 17:48 specing sfan5: it doesen't look like any CSM restrictions are in play here, either 17:49 sfan5 giving a quick look into the code it only works on locally shown formspecs 18:02 specing sfan5: meaning? 18:03 specing The formspec is shown to me, and I click a button 18:03 sfan5 it only works if you called minetest.show_formspec from your CSM before 18:03 specing I see 18:03 specing Hmm 18:04 specing Actually, I don't really need this, I need a way to interact with server formspecs, and I probably don't even need receivefields functionality 18:04 specing just send, and perhaps a way to parse received formspec, if that is even necessary 18:15 MinetestBot 02[git] 04An0n3m0us -> 03minetest/minetest_game: Move player model sitting and laying positions to above the ground (#… 132e7b509 https://git.io/JkOIX (152020-11-13T18:14:25Z) 18:35 specing Well, it'd still be nice to know what gets sent on manual use, to have an easier time automating it 18:35 specing I guess I'll make Client::sendNodemetaFields and the other one call CSM onsendfields or something