Time Nick Message 01:05 jonadab Am I _missing_ something? https://imgur.com/a/kV3GrzS 01:16 calcul0n yes, "some" of these savannas 01:17 calcul0n most of them don't 01:18 jonadab Ok, so exploring the savannahs in a 7000x7000 area and not finding any isn't some kind of weird abnormal anomaly? 01:19 jonadab I don't need to worry that my installation's broken / too out of date / whatever? 01:20 jonadab I should just keep exploring? 01:20 calcul0n well, looks like a normal anomaly :) 01:20 jonadab Ah. 01:20 jonadab Ok. 01:20 calcul0n can't tell if something broken, papyrus can be very hard to find when you're unlucky 01:20 jonadab I guess I will just have to widen my search radius some more then. 01:21 jonadab It'll be an adventure. 01:22 jonadab Maybe I should move the server onto llama (the headless system that runs things like irssi and gnus and my NetHack development and such). 01:22 jonadab Might improve performance to not have it competing with the client for disk I/O. 01:22 jonadab And, possibly more importantly, for RAM. 05:13 tumeninodes !tell Dr_Frankenstone https://github.com/Napiophelios/NBox_Abuse this is the mod you are looking for. 05:13 MinetestBot tumeninodes: I'll pass that on when Dr_Frankenstone is around 05:18 Dr_Frankenstone !tell tumeninodes that's the one, thanks. 05:18 MinetestBot Dr_Frankenstone: Feb-01 05:13 UTC https://github.com/Napiophelios/NBox_Abuse this is the mod you are looking for. 05:18 MinetestBot Dr_Frankenstone: I'll pass that on when tumeninodes is around 10:08 Spookan Good morning folks! 12:56 MinetestBot 02[git] 04DS-Minetest -> 03minetest/minetest: Formspec: Create a new class for inventorylists (#9287) 131116918 https://git.io/Jv3yQ (152020-02-01T12:55:13Z) 13:06 MinetestBot 02[git] 04bendeutsch -> 03minetest/minetest: Add limit parameter to decompressZlib 132b3490d https://git.io/Jv3SY (152020-02-01T13:05:26Z) 15:10 MinetestBot 02[git] 04HybridDog -> 03minetest/minetest: Add table.shuffle (#8299) 13ea5e231 https://git.io/Jv3Qf (152020-02-01T15:09:45Z) 15:29 perrier I found a couple CDs 15:30 perrier for the jukebox 15:31 perrier Jordach 15:35 perrier found another one 15:36 perrier I have 3 Jordach CDs 15:38 perrier found sound helix the evil sister 19:33 MinetestBot 02[git] 04sfan5 -> 03minetest/minetest: Convert sound_play uses in builtin to ephemeral 137d29611 https://git.io/Jv3Aj (152020-02-01T19:31:41Z) 19:33 MinetestBot 02[git] 04sfan5 -> 03minetest/minetest: Let node 'place' and 'dug' sounds be heard by other players 13c10e188 https://git.io/Jv3xe (152020-02-01T19:31:41Z) 19:33 MinetestBot 02[git] 04sfan5 -> 03minetest/minetest: Improve core.sound_play with ephemeral sounds and player exclusion 13ace3c76 https://git.io/Jv3xv (152020-02-01T19:31:41Z) 19:43 MinetestBot 02[git] 04SmallJoker -> 03minetest/minetest: StaticText: Reset background on EnrichedString change (#9340) 134eb3baa https://git.io/Jv3xG (152020-02-01T19:41:32Z) 21:04 Pie-jacker875 for some reasion my client build doesn't load the serverlist 21:05 Pie-jacker875 curl is enabled and the serverlist url is set to servers.minetest.net. I don't see any related errors 21:09 calcul0n Pie-jacker875, maybe just some lag? you can increase the curl timeout value in the settings 21:10 calcul0n afaik the default value is pretty low 21:11 Pie-jacker875 oh if I leave the search bar in the server list blank then I get no results but if I type in something it will filter and show matches 21:40 whtemple1959 hello, I hope as a noob I am in the right place. I am exploring automated farming. I am using a basic robot. I am having trouble finding a resolution to this error .... "Robot out of available operations in one step (1s). View available operations with self.operations() and check help to see how much operations each action requires.". does any one have a suggestion? 21:54 calcul0n whtemple1959, the bot starts each step with 10 ops available and most actions cost a given number of them 21:54 calcul0n like 2 for move, 6 for dig... 21:55 calcul0n afaik the exact cost is not documented anywhere, you can find it by reading the code or experimenting 21:56 calcul0n and self.operations() is a function returning the actual number of remaining ops 21:58 whtemple1959 calcul0n; thanks but what are "ops" I do not see anything like that in my script? and how do I replenish them? 21:59 calcul0n see ops as available energy, all you can do to get it back is wait for the next step 22:01 whtemple1959 calcul0n: so how long does a "step" take? 22:03 calcul0n the bot runs one step per second 22:03 calcul0n a simple way to handle that is to use coroutines, there's an example in the bot help 22:06 calcul0n looks a bit weird at first but it's not that complicated in fact 22:07 whtemple1959 calcul0n: I am using ... with his permission ... Hanno Behrens' "farmer_01" script. it does have coroutines. it planted my field with no difficulty but now it will not harvest the field. so thank you for this information. let me return to my game and see if I can make sense of it 22:10 whtemple1959 calcul0n: two last questions does the bot operate when it is in the "stop" condition ? or will I need to put some sort of pause coroutine in the script so it will store up some ops? 22:12 calcul0n it doesn't do anything when stopped 22:13 whtemple1959 calcul0n: ok thank you 22:13 calcul0n and yes pause() in a coroutine will stop it until the next step so it will resume execution where it stopped in the script with 10 available ops 22:16 whtemple1959 calcul0n: well let me go learn about writing a pause coroutine. again thanks for the advice 22:47 whtemple1959 calcul0n: let me preface by saying I am an accountant not a programmer. My brain just does not work like that. after looking at 6 websites with twice as many "resolutions" my head is spinning. I think I may be better off using mese and pipes as they have much simpler instructions. I really thought using a robot was going to be the best process but they are simply too confusing. again thanks for your help