2020-01-13 09:07:43 --> Polarizedions (~polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2020-01-13 09:42:06 <-- ry60003333 (~textual@2605:a000:1223:c148:d4d9:1567:6e34:e096) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2020-01-13 13:35:33 -- bildramer1 est maintenant connu sous le nom bildramer 2020-01-13 13:54:44 --> ath (athre0z@gateway/vpn/mullvad/athre0z) a rejoint #mcdevs 2020-01-13 14:39:40 <-- ath (athre0z@gateway/vpn/mullvad/athre0z) a quitté (Quit: WeeChat 2.6) 2020-01-13 14:57:08 --> gabrielchihongle (uid274900@gateway/web/irccloud.com/x-jsvoqamqwludxpcp) a rejoint #mcdevs 2020-01-13 15:46:47 --> notBrut0r (~notBrut0r@196.196.203.166) a rejoint #mcdevs 2020-01-13 15:49:34 notBrut0r Hello! I have a question about minecraft server protocol. What is a maximum packet length for the packets from client to server? 2020-01-13 15:49:54 notBrut0r In the latest version of protocol 2020-01-13 15:51:38 notBrut0r I already tried to find information myself, but i'm a bit confused about current packet length limits 2020-01-13 15:55:06 timmyRS It's 2^21 2020-01-13 15:59:08 notBrut0r Thank you <3 2020-01-13 16:16:47 <-- notBrut0r (~notBrut0r@196.196.203.166) a quitté (Quit: Leaving) 2020-01-13 16:40:53 --> millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a rejoint #mcdevs 2020-01-13 17:52:02 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 240 seconds) 2020-01-13 19:05:53 <-- Polarizedions (~polarized@unaffiliated/polarizedions) a quitté (Quit: Ping timeout (120 seconds)) 2020-01-13 19:06:23 --> Polarizedions (~polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2020-01-13 20:24:00 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-13 22:14:57 --> niceplace (~nplace@185.246.211.68) a rejoint #mcdevs 2020-01-13 22:15:01 <-- niceplaces (~nplace@185.246.211.68) a quitté (Ping timeout: 258 seconds) 2020-01-14 00:45:14 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 240 seconds) 2020-01-14 01:05:38 <-- millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a quitté (Ping timeout: 240 seconds) 2020-01-14 02:52:57 <-- gabrielchihongle (uid274900@gateway/web/irccloud.com/x-jsvoqamqwludxpcp) a quitté (Quit: Connection closed for inactivity) 2020-01-14 05:05:09 <-- l4mRh4X0r (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a quitté (Ping timeout: 250 seconds) 2020-01-14 05:12:12 --> leonardus (sid358597@orbital/leonardus) a rejoint #mcdevs 2020-01-14 05:19:03 <-- mgrech (~mgrech@188-22-224-163.adsl.highway.telekom.at) a quitté (Ping timeout: 245 seconds) 2020-01-14 06:40:50 --> l4mRh4X0r (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a rejoint #mcdevs 2020-01-14 06:51:58 leonardus If I'm writing a custom server, will I have to do all the world gen my self? 2020-01-14 06:54:56 +pokechu22 Kinda? You can also just default to generating something really basic (i.e. superflat), and require users to generate the world in singleplayer first or something like that 2020-01-14 07:08:26 leonardus is the vanilla world gen algo public? 2020-01-14 07:21:59 +pokechu22 No -- you could decompile it with MCP, still, but it wouldn't mesh up too well. There are some other ones though (e.g. https://github.com/cuberite/cuberite/ has one I think) but I haven't messed with that myself 2020-01-14 07:22:32 leonardus I won't be writing it in a JVM lang 2020-01-14 07:22:45 leonardus so decompiling is probably out of the question for me 2020-01-14 07:22:51 leonardus would I have to RE it? 2020-01-14 07:23:14 leonardus (well, I guess REing would involve decompiling) 2020-01-14 07:43:05 +pokechu22 Yeah, you'd have to RE it. But it's really a complicated thing; I wouldn't recommend trying to do it all from scratch (at least not as a first step). If you do want to, I'd recommend starting with the 1.12 version; 1.13 did some changes regarding multithreading that makes the code a fair bit harder to follow 2020-01-14 07:48:05 leonardus is there anyone that's done all the dirty work and written a blog post on it or something? 2020-01-14 07:48:19 leonardus don't want to reinvent the wheel here if I don't need to 2020-01-14 07:54:41 +SpaceManiac leonardus: some of the existing open-source projects have world generators 2020-01-14 08:16:27 timmyRS Maybe this 2011 post by Notch is a good starting point as an introduction to the code you may find: https://notch.tumblr.com/post/3746989361/terrain-generation-part-1 2020-01-14 08:55:02 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-14 09:02:43 --> mgrech (~mgrech@188-22-224-163.adsl.highway.telekom.at) a rejoint #mcdevs 2020-01-14 09:19:57 --> gabrielchihongle (uid274900@gateway/web/irccloud.com/x-imbhzpopjolwceio) a rejoint #mcdevs 2020-01-14 10:09:45 MiniDigger meh, world gen works entirely different nowadays 2020-01-14 10:11:00 MiniDigger as poke said, I would just start out with a flat gen and require ppl to just gen their world in vanilla 2020-01-14 10:11:18 MiniDigger you can try to implement a nice world generator later, thats really a non trivial task 2020-01-14 10:18:23 timmyRS If one were to look into it, at least knowing the idea would work. And the world doesn't have to be 100% the same as in vanilla 2020-01-14 10:47:53 +Amaranth It's not how vanilla does it but http://mc-server.xoft.cz/docs/Generator.html might be useful 2020-01-14 10:48:01 +Amaranth Not sure if that's how cuberite does it anymore either 2020-01-14 11:41:20 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-01-14 12:30:59 MiniDigger thats a really cool writeup, didnt knew that that existed, thanks! 2020-01-14 14:55:16 --> charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a rejoint #mcdevs 2020-01-14 15:08:05 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-01-14 16:13:31 <-- Jeebiss (sid25046@gateway/web/irccloud.com/x-bduzwehwwmpfvbzn) a quitté (Remote host closed the connection) 2020-01-14 16:17:42 --> Jeebiss (sid25046@gateway/web/irccloud.com/x-ftigdncvggsxsyai) a rejoint #mcdevs 2020-01-14 16:48:27 <-- Jeebiss (sid25046@gateway/web/irccloud.com/x-ftigdncvggsxsyai) a quitté (Remote host closed the connection) 2020-01-14 16:51:58 --> Jeebiss (sid25046@gateway/web/irccloud.com/x-hgnxjjkdrpbayoim) a rejoint #mcdevs 2020-01-14 17:45:02 Not-c468 [McUpdates] Minecraft snapshot 1.15.2-pre1 has just been published to the launcher! 2020-01-14 17:45:32 Not-c468 [Burger] New data now avaliable for 1.15.2-pre1: 2020-01-14 17:45:33 Not-c468 [Burger] Diff from 1.15.1: https://pokechu22.github.io/Burger/diff_1.15.1_1.15.2-pre1.html (https://pokechu22.github.io/Burger/diff_1.15.1_1.15.2-pre1.json) 2020-01-14 17:45:35 Not-c468 [Burger] Full data: https://pokechu22.github.io/Burger/1.15.2-pre1.html (https://pokechu22.github.io/Burger/1.15.2-pre1.json) 2020-01-14 17:54:24 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 265 seconds) 2020-01-14 18:30:02 Not-c468 [McUpdates] An article about Minecraft 1.15.2 Pre-Release 1 was just published: https://www.minecraft.net/en-us/article/minecraft-1-15-2-pre-release-1 2020-01-14 18:35:26 <-- bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2020-01-14 18:35:58 --> bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-14 19:04:53 <-- kashike (kashike@unaffiliated/kashike) a quitté (Ping timeout: 245 seconds) 2020-01-14 19:06:49 --> kashike (kashike@unaffiliated/kashike) a rejoint #mcdevs 2020-01-14 19:21:24 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-14 20:54:58 <-- mgrech (~mgrech@188-22-224-163.adsl.highway.telekom.at) a quitté (Ping timeout: 268 seconds) 2020-01-14 22:02:17 --> skyrising (~skyrising@89.43.121.249) a rejoint #mcdevs 2020-01-15 00:32:51 --> mgrech (~mgrech@188-22-224-163.adsl.highway.telekom.at) a rejoint #mcdevs 2020-01-15 01:14:43 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 265 seconds) 2020-01-15 04:19:40 <-- gabrielchihongle (uid274900@gateway/web/irccloud.com/x-imbhzpopjolwceio) a quitté (Quit: Connection closed for inactivity) 2020-01-15 09:01:47 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-15 09:08:22 <-- pokechu22 (~pokechu22@2601:602:900:860:816a:390b:fd19:1c1a) a quitté (Ping timeout: 260 seconds) 2020-01-15 09:13:56 --> pokechu22 (~pokechu22@2601:602:900:860:816a:390b:fd19:1c1a) a rejoint #mcdevs 2020-01-15 09:13:56 -- Mode #mcdevs [+v pokechu22] par ChanServ 2020-01-15 10:33:13 <-- deltab (~deltab@95.154.230.49) a quitté (Ping timeout: 260 seconds) 2020-01-15 10:42:46 --> deltab (~deltab@95.154.230.49) a rejoint #mcdevs 2020-01-15 11:22:08 --> gabrielchihongle (uid274900@gateway/web/irccloud.com/x-ejahmidaxkcjdqyi) a rejoint #mcdevs 2020-01-15 14:32:42 <-- Brandon15811 (sid13052@gateway/web/irccloud.com/x-dmxprrbihnqfciqh) a quitté 2020-01-15 14:32:58 --> Brandon15811 (sid13052@gateway/web/irccloud.com/x-aaychwvjiujgaayj) a rejoint #mcdevs 2020-01-15 15:10:22 -- irc : déconnecté du serveur 2020-01-15 15:23:33 --> rom1504 (rom1504@rom1504.fr) a rejoint #mcdevs 2020-01-15 15:23:33 -- Le titre pour #mcdevs est "A haunt for developers working on projects related to Minecraft | Website & Rules: http://wiki.vg/MCDevs/rules | Wiki: http://wiki.vg | Channel is publicly logged as of Feb.25/13 https://logs.rom1504.fr/" 2020-01-15 15:23:33 -- Titre défini par tktech (~tktech@ec2-52-70-105-60.compute-1.amazonaws.com) le jeu., 11 mai 2017 00:28:31 2020-01-15 15:23:33 -- Canal #mcdevs : 108 pseudos (1 op, 15 voices, 92 normaux) 2020-01-15 15:25:18 -- Canal créé le lun., 06 déc. 2010 12:22:40 2020-01-15 15:31:16 --> killmePI (~killmePI@185.9.253.124) a rejoint #mcdevs 2020-01-15 15:31:21 <-- killme (~killmePI@185.9.253.124) a quitté (Ping timeout: 258 seconds) 2020-01-15 17:57:06 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 268 seconds) 2020-01-15 18:10:29 <-- gabrielchihongle (uid274900@gateway/web/irccloud.com/x-ejahmidaxkcjdqyi) a quitté 2020-01-15 18:10:44 --> gabrielchihongle (uid274900@gateway/web/irccloud.com/x-jhwqgzjytllyqxwp) a rejoint #mcdevs 2020-01-15 19:29:56 <-- leonardus (sid358597@orbital/leonardus) a quitté (Ping timeout: 248 seconds) 2020-01-15 19:30:18 <-- Jeebiss (sid25046@gateway/web/irccloud.com/x-hgnxjjkdrpbayoim) a quitté (Ping timeout: 245 seconds) 2020-01-15 19:31:57 <-- Fenhl (sid30770@gateway/web/irccloud.com/x-ntfgihmngdsyexhf) a quitté (Ping timeout: 260 seconds) 2020-01-15 19:32:04 <-- Intelli (sid46069@gateway/web/irccloud.com/x-shyvdzjinoxfkhfs) a quitté (Ping timeout: 268 seconds) 2020-01-15 19:33:47 --> Intelli (sid46069@gateway/web/irccloud.com/x-guibjpzlzrbjxopp) a rejoint #mcdevs 2020-01-15 19:33:52 --> Fenhl (sid30770@gateway/web/irccloud.com/x-jpzbkebvdesqebjm) a rejoint #mcdevs 2020-01-15 19:33:52 -- Mode #mcdevs [+v Fenhl] par ChanServ 2020-01-15 19:36:54 --> Jeebiss (sid25046@gateway/web/irccloud.com/x-udbqbimffjqdulos) a rejoint #mcdevs 2020-01-15 19:48:21 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-15 21:12:49 --> leonardus (sid358597@orbital/leonardus) a rejoint #mcdevs 2020-01-15 22:40:34 <-- gabrielchihongle (uid274900@gateway/web/irccloud.com/x-jhwqgzjytllyqxwp) a quitté (Quit: Connection closed for inactivity) 2020-01-16 00:58:27 <-- Dadido3 (~quassel@p54A3A08E.dip0.t-ipconnect.de) a quitté (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 2020-01-16 00:59:14 --> Dadido3 (~quassel@p200300D9DF245500BD3B9E25F51E3B56.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-16 01:18:44 <-- leonardus (sid358597@orbital/leonardus) a quitté (Read error: Connection reset by peer) 2020-01-16 01:20:23 --> leonardus (sid358597@orbital/leonardus) a rejoint #mcdevs 2020-01-16 01:42:48 <-- Jeebiss (sid25046@gateway/web/irccloud.com/x-udbqbimffjqdulos) a quitté (Ping timeout: 245 seconds) 2020-01-16 01:42:48 <-- Fenhl (sid30770@gateway/web/irccloud.com/x-jpzbkebvdesqebjm) a quitté (Ping timeout: 245 seconds) 2020-01-16 01:42:57 <-- leonardus (sid358597@orbital/leonardus) a quitté (Ping timeout: 260 seconds) 2020-01-16 01:45:17 <-- Intelli (sid46069@gateway/web/irccloud.com/x-guibjpzlzrbjxopp) a quitté (Ping timeout: 260 seconds) 2020-01-16 01:49:47 <-- Brandon15811 (sid13052@gateway/web/irccloud.com/x-aaychwvjiujgaayj) a quitté (Ping timeout: 272 seconds) 2020-01-16 02:29:07 --> Brandon15811 (sid13052@gateway/web/irccloud.com/x-vknpidughuujlrvs) a rejoint #mcdevs 2020-01-16 02:31:32 --> Jeebiss (sid25046@gateway/web/irccloud.com/x-ubtxqbjlmzzumlay) a rejoint #mcdevs 2020-01-16 02:38:22 <-- Brandon15811 (sid13052@gateway/web/irccloud.com/x-vknpidughuujlrvs) a quitté (Ping timeout: 260 seconds) 2020-01-16 02:45:04 --> Brandon15811 (sid13052@gateway/web/irccloud.com/x-heiosteeseguixsj) a rejoint #mcdevs 2020-01-16 02:50:37 <-- Brandon15811 (sid13052@gateway/web/irccloud.com/x-heiosteeseguixsj) a quitté (Ping timeout: 260 seconds) 2020-01-16 02:54:23 <-- Jeebiss (sid25046@gateway/web/irccloud.com/x-ubtxqbjlmzzumlay) a quitté (Ping timeout: 272 seconds) 2020-01-16 03:06:37 --> Brandon15811 (sid13052@gateway/web/irccloud.com/x-uekxvtpfttnvebym) a rejoint #mcdevs 2020-01-16 03:12:45 <-- Brandon15811 (sid13052@gateway/web/irccloud.com/x-uekxvtpfttnvebym) a quitté (Ping timeout: 272 seconds) 2020-01-16 03:52:13 <-- Amaranth (~Amaranth@ubuntu/member/Amaranth) a quitté (Quit: The Lounge - https://thelounge.chat) 2020-01-16 03:52:53 --> Amaranth (~Amaranth@ubuntu/member/Amaranth) a rejoint #mcdevs 2020-01-16 03:52:53 -- Mode #mcdevs [+v Amaranth] par ChanServ 2020-01-16 06:22:11 --> ShrewdSpirit (~ShrewdSpi@91.99.221.198) a rejoint #mcdevs 2020-01-16 06:23:50 ShrewdSpirit Hello. What's the next step after login and state change to play? From the list of clientbound packets I think I should send join game, but when I do, client does nothing and the "joining game" remains until it times out 2020-01-16 06:26:01 +pokechu22 There's a list of packets on https://wiki.vg/Protocol_FAQ#What.27s_the_normal_login_sequence_for_a_client.3F - after join game, you need to send chunks, and then "Player Position and Look" tells the client that it's done with all of that and hides the joining game screen (at least IIRC) 2020-01-16 06:27:55 ShrewdSpirit pokechu22: Ops! I didn't read FAQ before, sorry -_- Thanks a lot 2020-01-16 06:28:43 +pokechu22 No worries. It is called the FAQ for a reason -- you're not the only person to have asked it, and the list isn't completely obvious :P 2020-01-16 06:37:27 +ammar2 wiki not loading for anyone else? 2020-01-16 06:40:32 +pokechu22 Seems down to me too now, 502 Bad Gateway. It was definitely fine 15 minutes ago :P 2020-01-16 06:41:40 ShrewdSpirit yeah it was okay minutes ago 2020-01-16 07:47:48 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 260 seconds) 2020-01-16 07:55:55 --> Fenhl (sid30770@gateway/web/irccloud.com/x-dgzegqgsveuynqos) a rejoint #mcdevs 2020-01-16 07:55:55 -- Mode #mcdevs [+v Fenhl] par ChanServ 2020-01-16 07:56:26 --> Jeebiss (sid25046@gateway/web/irccloud.com/x-vkspeehmtjgmdfbu) a rejoint #mcdevs 2020-01-16 07:57:39 --> leonardus (sid358597@orbital/leonardus) a rejoint #mcdevs 2020-01-16 07:59:09 --> Intelli (sid46069@gateway/web/irccloud.com/x-piuiurihtfdzdqui) a rejoint #mcdevs 2020-01-16 07:59:59 --> Brandon15811 (sid13052@gateway/web/irccloud.com/x-afkvvccegpvzuyrs) a rejoint #mcdevs 2020-01-16 08:49:42 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-16 08:58:08 --> Polarizedions4 (~polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2020-01-16 08:58:34 <-- Polarizedions (~polarized@unaffiliated/polarizedions) a quitté (Ping timeout: 265 seconds) 2020-01-16 08:58:34 -- Polarizedions4 est maintenant connu sous le nom Polarizedions 2020-01-16 09:15:12 --> gabrielchihongle (uid274900@gateway/web/irccloud.com/x-gedtiawhsvjrqydm) a rejoint #mcdevs 2020-01-16 10:38:27 <-- _123DMWM (~123DMWM@2601:18d:580:3870:7968:879b:7f6e:b74d) a quitté (Ping timeout: 260 seconds) 2020-01-16 10:39:02 --> _123DMWM (~123DMWM@2601:18d:580:3870:4010:c673:29be:aa87) a rejoint #mcdevs 2020-01-16 12:20:53 <-- Polarizedions (~polarized@unaffiliated/polarizedions) a quitté (Quit: Ping timeout (120 seconds)) 2020-01-16 12:21:27 --> Polarizedions (~polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2020-01-16 13:13:23 <-- ShrewdSpirit (~ShrewdSpi@91.99.221.198) a quitté (Remote host closed the connection) 2020-01-16 13:13:48 --> ShrewdSpirit (~ShrewdSpi@91.99.221.198) a rejoint #mcdevs 2020-01-16 15:55:02 Not-c468 [McUpdates] Minecraft snapshot 1.15.2-pre2 has just been published to the launcher! 2020-01-16 16:00:02 Not-c468 [McUpdates] An article about Minecraft 1.15.2 Pre-Release 2 was just published: https://www.minecraft.net/en-us/article/minecraft-1-15-2-pre-release-1 2020-01-16 16:05:12 Not-c468 [Burger] New data now avaliable for 1.15.2-pre2: 2020-01-16 16:05:14 Not-c468 [Burger] Diff from 1.15.2-pre1: https://pokechu22.github.io/Burger/diff_1.15.2-pre1_1.15.2-pre2.html (https://pokechu22.github.io/Burger/diff_1.15.2-pre1_1.15.2-pre2.json) 2020-01-16 16:05:15 Not-c468 [Burger] Full data: https://pokechu22.github.io/Burger/1.15.2-pre2.html (https://pokechu22.github.io/Burger/1.15.2-pre2.json) 2020-01-16 16:15:01 <-- Polarizedions (~polarized@unaffiliated/polarizedions) a quitté (Quit: Ping timeout (120 seconds)) 2020-01-16 16:15:30 --> Polarizedions (~polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2020-01-16 16:59:23 <-- Polarizedions (~polarized@unaffiliated/polarizedions) a quitté (Quit: Ping timeout (120 seconds)) 2020-01-16 16:59:53 --> Polarizedions (~polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2020-01-16 17:31:00 <-- bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2020-01-16 17:31:29 --> bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-16 17:38:26 <-- ShrewdSpirit (~ShrewdSpi@91.99.221.198) a quitté (Quit: Leaving) 2020-01-16 17:42:41 <-- Polarizedions (~polarized@unaffiliated/polarizedions) a quitté (Quit: Ping timeout (120 seconds)) 2020-01-16 17:43:21 --> Polarizedions (~polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2020-01-16 17:53:19 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 268 seconds) 2020-01-16 18:24:20 <-- bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2020-01-16 18:24:51 --> bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-16 18:50:28 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-16 19:30:18 <-- skyrising (~skyrising@89.43.121.249) a quitté (Remote host closed the connection) 2020-01-16 20:01:09 <-- Polarizedions (~polarized@unaffiliated/polarizedions) a quitté (Quit: Ping timeout (120 seconds)) 2020-01-16 20:01:39 --> Polarizedions (~polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2020-01-16 20:17:18 <-- bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2020-01-16 20:17:45 --> bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-16 20:20:54 <-- Polarizedions (~polarized@unaffiliated/polarizedions) a quitté (Quit: Ping timeout (120 seconds)) 2020-01-16 20:21:27 --> Polarizedions (~polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2020-01-16 20:41:10 <-- Polarizedions (~polarized@unaffiliated/polarizedions) a quitté (Quit: Ping timeout (120 seconds)) 2020-01-16 20:41:55 --> Polarizedions (~polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2020-01-16 20:53:01 <-- Polarizedions (~polarized@unaffiliated/polarizedions) a quitté (Quit: Ping timeout (120 seconds)) 2020-01-16 20:53:46 --> Polarizedions (~polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2020-01-16 20:56:17 <-- Polarizedions (~polarized@unaffiliated/polarizedions) a quitté (Client Quit) 2020-01-16 21:28:02 <-- mgrech (~mgrech@188-22-224-163.adsl.highway.telekom.at) a quitté (Ping timeout: 240 seconds) 2020-01-17 01:12:17 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 258 seconds) 2020-01-17 01:22:20 <-- Dadido3 (~quassel@p200300D9DF245500BD3B9E25F51E3B56.dip0.t-ipconnect.de) a quitté (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 2020-01-17 01:25:03 --> Dadido3 (~quassel@p200300D9DF2455006DB78AEDD1A4B72D.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-17 01:30:49 --> VADemon_ (~VADemon@2a01:4f8:212:2f1d:88::41) a rejoint #mcdevs 2020-01-17 01:32:26 <-- VADemon (~VADemon@2a01:4f8:212:2f1d:88::41) a quitté (Read error: Connection reset by peer) 2020-01-17 01:32:34 <-- humerusj (~humerusj@unaffiliated/humerusj) a quitté (Ping timeout: 252 seconds) 2020-01-17 01:32:55 --> humerusj (~humerusj@unaffiliated/humerusj) a rejoint #mcdevs 2020-01-17 04:24:59 <-- gabrielchihongle (uid274900@gateway/web/irccloud.com/x-gedtiawhsvjrqydm) a quitté (Quit: Connection closed for inactivity) 2020-01-17 05:13:01 <-- wvffle (~wvffle@host-46-175-47-49.wtvk.pl) a quitté (Ping timeout: 258 seconds) 2020-01-17 06:15:51 --> wvffle (~wvffle@host-46-175-47-49.wtvk.pl) a rejoint #mcdevs 2020-01-17 06:20:06 <-- wvffle (~wvffle@host-46-175-47-49.wtvk.pl) a quitté (Read error: Connection reset by peer) 2020-01-17 06:21:08 --> wvffle (~wvffle@host-46-175-47-49.wtvk.pl) a rejoint #mcdevs 2020-01-17 06:22:40 <-- wvffle (~wvffle@host-46-175-47-49.wtvk.pl) a quitté (Read error: Connection reset by peer) 2020-01-17 06:23:50 <-- matthewprenger (~matthewpr@136.33.220.153) a quitté (Remote host closed the connection) 2020-01-17 06:26:09 --> wvffle (~wvffle@host-46-175-47-49.wtvk.pl) a rejoint #mcdevs 2020-01-17 06:28:49 --> matthewprenger (~matthewpr@136.33.220.153) a rejoint #mcdevs 2020-01-17 07:13:53 --> mgrech (~mgrech@188-22-224-163.adsl.highway.telekom.at) a rejoint #mcdevs 2020-01-17 08:18:06 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (*.net *.split) 2020-01-17 08:18:06 <-- kev009 (~kev009@ip72-222-200-117.ph.ph.cox.net) a quitté (*.net *.split) 2020-01-17 08:18:06 <-- Proximyst (~Proximyst@proximyst.com) a quitté (*.net *.split) 2020-01-17 08:18:06 <-- ashka (~postmaste@pdpc/supporter/active/ashka) a quitté (*.net *.split) 2020-01-17 08:18:06 <-- shoghicp (~shoghicp@bouncer.pocketmine.net) a quitté (*.net *.split) 2020-01-17 08:18:06 <-- craftxbox (~craftxbox@unaffiliated/craftxbox) a quitté (*.net *.split) 2020-01-17 08:18:06 <-- darngeek (~darngeek@bouncer.pocketmine.net) a quitté (*.net *.split) 2020-01-17 08:18:06 <-- jamierocks (~jamie@vista.jamiemansfield.me) a quitté (*.net *.split) 2020-01-17 08:18:06 <-- mundus (~mundus201@unaffiliated/mundus2018) a quitté (*.net *.split) 2020-01-17 08:45:40 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-17 09:05:52 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2020-01-17 09:05:52 --> kev009 (~kev009@ip72-222-200-117.ph.ph.cox.net) a rejoint #mcdevs 2020-01-17 09:05:52 --> Proximyst (~Proximyst@proximyst.com) a rejoint #mcdevs 2020-01-17 09:05:52 --> ashka (~postmaste@pdpc/supporter/active/ashka) a rejoint #mcdevs 2020-01-17 09:05:52 --> shoghicp (~shoghicp@bouncer.pocketmine.net) a rejoint #mcdevs 2020-01-17 09:05:52 --> craftxbox (~craftxbox@unaffiliated/craftxbox) a rejoint #mcdevs 2020-01-17 09:05:52 --> darngeek (~darngeek@bouncer.pocketmine.net) a rejoint #mcdevs 2020-01-17 09:05:52 --> jamierocks (~jamie@vista.jamiemansfield.me) a rejoint #mcdevs 2020-01-17 09:05:52 --> mundus (~mundus201@unaffiliated/mundus2018) a rejoint #mcdevs 2020-01-17 09:05:52 -- Mode #mcdevs [+v kev009] par karatkievich.freenode.net 2020-01-17 10:51:41 --> gabrielchihongle (uid274900@gateway/web/irccloud.com/x-tzhtrsuwksgxphid) a rejoint #mcdevs 2020-01-17 13:12:40 <-- charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a quitté (Remote host closed the connection) 2020-01-17 13:13:56 --> charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a rejoint #mcdevs 2020-01-17 13:58:29 <-- charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a quitté (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 2020-01-17 14:37:41 --> charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a rejoint #mcdevs 2020-01-17 14:41:59 <-- charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a quitté (Read error: Connection reset by peer) 2020-01-17 14:42:17 --> charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a rejoint #mcdevs 2020-01-17 14:47:28 <-- charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a quitté (Ping timeout: 260 seconds) 2020-01-17 15:11:39 --> charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a rejoint #mcdevs 2020-01-17 16:05:12 <-- charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a quitté (Ping timeout: 265 seconds) 2020-01-17 16:22:56 --> charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a rejoint #mcdevs 2020-01-17 17:43:36 <-- charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a quitté (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 2020-01-17 17:45:30 --> charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a rejoint #mcdevs 2020-01-17 17:54:08 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 260 seconds) 2020-01-17 17:57:03 <-- mgrech (~mgrech@188-22-224-163.adsl.highway.telekom.at) a quitté (Ping timeout: 260 seconds) 2020-01-17 19:28:57 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-17 20:31:45 tktech Wiki was down for a couple minutes while AWS updated RDS. There's two replicas so normally the failover is instant, not sure why it took so long. 2020-01-17 20:31:59 tktech Normally happens every night when RDS switches masters so it can snapshot the DB 2020-01-17 20:36:29 +pokechu22 Speaking of those snapshots, it looks like https://wiki.vg/dumps/ hasn't updated since 10-Jun-2019 2020-01-17 20:37:47 timmyRS Really gotta have cronjobs to check if your cronjobs are still doing there job 2020-01-17 20:37:47 tktech Those are just the XML dumps of page contents for importing into another wiki, but that's odd...thanks for letting me know I'll take a look 2020-01-17 20:38:18 tktech Yeah it's just a trivial cron running a mediawiki maintenance script 2020-01-17 21:41:29 tktech Righto fixed, and one manually generated for today. 2020-01-17 21:44:52 +pokechu22 Huh, the file size is a lot smaller than the previous ones. Even the uncompressed size has a difference of about 30MB. Maybe it's missing images or something? 2020-01-17 21:45:26 tktech Shouldn't be, it's run with --include-files. I pruned a large number of users and spam revisions which are no longer included in the dump. 2020-01-17 21:46:31 +pokechu22 Ah, yeah, that would explain it 2020-01-17 22:35:11 tktech If you're curious, when I moved to a new instance because the old one was being retired, I used the base AMI setup awhile ago which didn't include the manually added crontab entry for dumps. 2020-01-17 22:42:37 <-- dexter0 (~dexter0@2601:647:4500:700:7c:10ff:fe00:b0b) a quitté (Ping timeout: 260 seconds) 2020-01-18 00:01:33 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Quit: redstonehelper) 2020-01-18 00:02:17 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2020-01-18 00:46:45 rom1504 "Really gotta have cronjobs to check if your cronjobs are still doing there job" that's actually done by something called monitoring, for example using prometheus and grafana, and then you can have alerts, that can get propagated by emails, phone, irc, ... 2020-01-18 00:47:22 rom1504 (but this is not really a critical system, so probably not worth it to setup anything like that here :)) 2020-01-18 01:07:59 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 265 seconds) 2020-01-18 02:00:13 --> dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-01-18 02:04:43 <-- dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a quitté (Ping timeout: 260 seconds) 2020-01-18 02:58:43 <-- matthewprenger (~matthewpr@136.33.220.153) a quitté (Quit: matthewprenger) 2020-01-18 03:21:29 --> matthewprenger (~matthewpr@136.33.220.153) a rejoint #mcdevs 2020-01-18 03:42:58 --> dexter0 (~dexter0@2601:647:4500:700:7c:10ff:fe00:b0b) a rejoint #mcdevs 2020-01-18 04:29:39 <-- gabrielchihongle (uid274900@gateway/web/irccloud.com/x-tzhtrsuwksgxphid) a quitté (Quit: Connection closed for inactivity) 2020-01-18 05:18:44 <-- dexter0 (~dexter0@2601:647:4500:700:7c:10ff:fe00:b0b) a quitté (Ping timeout: 248 seconds) 2020-01-18 05:38:41 --> dexter0 (~dexter0@2601:647:4500:700:7c:10ff:fe00:b0b) a rejoint #mcdevs 2020-01-18 05:54:17 <-- dexter0 (~dexter0@2601:647:4500:700:7c:10ff:fe00:b0b) a quitté (Ping timeout: 260 seconds) 2020-01-18 07:16:49 --> dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-01-18 08:12:51 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-18 10:32:48 <-- killmePI (~killmePI@185.9.253.124) a quitté (Ping timeout: 265 seconds) 2020-01-18 10:32:58 --> killme (~killmePI@185.9.253.124) a rejoint #mcdevs 2020-01-18 10:59:03 --> gabrielchihongle (uid274900@gateway/web/irccloud.com/x-ijdzrsvgqyvsuvfc) a rejoint #mcdevs 2020-01-18 11:23:45 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-01-18 11:30:57 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 272 seconds) 2020-01-18 11:44:33 <-- SpaceManiac (~SpaceMani@c-67-172-121-111.hsd1.ca.comcast.net) a quitté (Ping timeout: 260 seconds) 2020-01-18 11:48:18 --> SpaceManiac (~SpaceMani@c-67-172-121-111.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-01-18 11:48:18 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2020-01-18 14:34:32 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-01-18 17:11:21 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2020-01-18 17:12:27 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 240 seconds) 2020-01-18 17:12:27 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2020-01-18 17:13:15 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-18 18:15:12 --> mgrech (~mgrech@188-22-224-163.adsl.highway.telekom.at) a rejoint #mcdevs 2020-01-18 18:19:32 --> mgrech_ (~mgrech@188-22-224-163.adsl.highway.telekom.at) a rejoint #mcdevs 2020-01-18 18:23:15 <-- mgrech (~mgrech@188-22-224-163.adsl.highway.telekom.at) a quitté (Ping timeout: 258 seconds) 2020-01-18 18:24:50 <-- mgrech_ (~mgrech@188-22-224-163.adsl.highway.telekom.at) a quitté (Ping timeout: 240 seconds) 2020-01-18 18:29:23 --> mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-01-18 18:30:09 <-- dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a quitté (Ping timeout: 258 seconds) 2020-01-18 18:37:48 <-- SupaHam (~SupaHam@supaham.com) a quitté (Read error: No route to host) 2020-01-18 18:38:06 --> SupaHam (~SupaHam@supaham.com) a rejoint #mcdevs 2020-01-18 21:17:53 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 268 seconds) 2020-01-18 21:18:54 --> dexter0 (~dexter0@2601:647:4500:700:7c:10ff:fe00:b0b) a rejoint #mcdevs 2020-01-18 22:39:06 --> ItzAmir (59c671f3@89.198.113.243) a rejoint #mcdevs 2020-01-18 22:44:32 ItzAmir Hi, 2020-01-18 22:46:46 timmyRS Hi 2020-01-18 22:47:28 KennyTV , 2020-01-18 22:52:40 ItzAmir So, I'm searching for a python library or Minecraft API that i can use for creating Minecraft Bots, and doing actions like chatting, moving player in Java Edition Minecraft servers. As you know python is a growing language which is good if both MC developers and Server developers work on it. Without getting far from the main question, Can someone 2020-01-18 22:52:40 ItzAmir introduce some useful libraries for python (or APIs) ? 2020-01-18 22:55:38 +pokechu22 https://wiki.vg/Client_List - that's a list of things you could use. https://github.com/ammaraskar/pyCraft sounds like what you want, and it looks like it actually does support 1.15 (though the wiki article says it doesn't) 2020-01-18 22:59:03 ItzAmir Thank you. 2020-01-18 23:03:11 <-- ItzAmir (59c671f3@89.198.113.243) a quitté (Remote host closed the connection) 2020-01-18 23:03:11 +ammar2 note that it's not particularly easy to move a bot around "naturally" in pyCraft, it doesn't read the chunks or have an in-memory representation of the map 2020-01-18 23:03:17 +ammar2 :| 2020-01-18 23:03:21 +ammar2 what timing 2020-01-18 23:03:50 timmyRS I thought I saw a video of a pyCraft bot moving around in a world once? 2020-01-18 23:04:01 +ammar2 flying around 2020-01-18 23:04:03 +ammar2 flying is easy 2020-01-18 23:04:15 timmyRS Fair enough 2020-01-18 23:21:39 timmyRS Does anyone know the actual snapshot in which data generators where added? 2020-01-18 23:26:01 timmyRS Apparently it's 18w01a 2020-01-18 23:39:23 Not-c468 [minecraft-data] timmyRS pushed 1 commit to master [+0/-0/±1] https://git.io/JvkuF 2020-01-18 23:39:25 Not-c468 [minecraft-data] timmyRS 9cfad6c - Add 1.15.2-pre1 & 2 to common/protocolVersions.json 2020-01-19 03:58:46 <-- gabrielchihongle (uid274900@gateway/web/irccloud.com/x-ijdzrsvgqyvsuvfc) a quitté (Quit: Connection closed for inactivity) 2020-01-19 04:11:10 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-01-19 05:25:52 <-- bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2020-01-19 05:26:17 --> bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-19 06:59:06 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2020-01-19 07:00:43 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 272 seconds) 2020-01-19 07:00:43 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2020-01-19 09:29:49 <-- deltab (~deltab@95.154.230.49) a quitté (Ping timeout: 265 seconds) 2020-01-19 09:39:05 --> deltab (~deltab@95.154.230.49) a rejoint #mcdevs 2020-01-19 09:47:17 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-19 10:52:05 <-- kev009 (~kev009@ip72-222-200-117.ph.ph.cox.net) a quitté (Remote host closed the connection) 2020-01-19 10:54:31 --> kev009 (~kev009@ip72-222-200-117.ph.ph.cox.net) a rejoint #mcdevs 2020-01-19 10:54:31 -- Mode #mcdevs [+v kev009] par ChanServ 2020-01-19 11:30:42 --> gabrielchihongle (uid274900@gateway/web/irccloud.com/x-plcmmyzwcvjndvfc) a rejoint #mcdevs 2020-01-19 11:38:01 <-- KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a quitté (Quit: o>) 2020-01-19 11:39:33 --> KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a rejoint #mcdevs 2020-01-19 12:16:05 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 265 seconds) 2020-01-19 12:17:54 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-19 14:16:21 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-01-19 18:56:01 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (Remote host closed the connection) 2020-01-19 19:08:35 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2020-01-19 19:55:31 <-- _123DMWM (~123DMWM@2601:18d:580:3870:4010:c673:29be:aa87) a quitté (Read error: Connection reset by peer) 2020-01-19 19:55:58 --> _123DMWM (~123DMWM@2601:18d:580:3870:31dc:f84a:58da:9dfb) a rejoint #mcdevs 2020-01-19 21:55:34 <-- uis (~uis@95.165.156.213) a quitté (Ping timeout: 252 seconds) 2020-01-19 22:13:35 --> uis (~uis@95.165.156.213) a rejoint #mcdevs 2020-01-19 22:53:18 <-- uis (~uis@95.165.156.213) a quitté (Ping timeout: 260 seconds) 2020-01-19 22:53:54 --> uis (~uis@95.165.156.213) a rejoint #mcdevs 2020-01-19 22:55:25 <-- craftxbox (~craftxbox@unaffiliated/craftxbox) a quitté (Ping timeout: 268 seconds) 2020-01-19 23:20:37 --> craftxbox (~craftxbox@unaffiliated/craftxbox) a rejoint #mcdevs 2020-01-20 00:10:55 <-- Defolos (~Defolos@fedora/defolos) a quitté (Remote host closed the connection) 2020-01-20 00:21:29 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-20 00:56:45 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 272 seconds) 2020-01-20 02:48:54 --> RoboMWM_ (~RoboMWM@tf.robomwm.com) a rejoint #mcdevs 2020-01-20 02:50:38 <-- RoboMWM (~RoboMWM@tf.robomwm.com) a quitté (Ping timeout: 265 seconds) 2020-01-20 02:50:38 -- RoboMWM_ est maintenant connu sous le nom RoboMWM 2020-01-20 02:52:34 <-- Luck (~Luck@51.89.139.51) a quitté (Ping timeout: 265 seconds) 2020-01-20 02:55:58 --> Luck (~Luck@51.89.139.51) a rejoint #mcdevs 2020-01-20 04:29:36 <-- gabrielchihongle (uid274900@gateway/web/irccloud.com/x-plcmmyzwcvjndvfc) a quitté (Quit: Connection closed for inactivity) 2020-01-20 06:57:48 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2020-01-20 07:00:07 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 268 seconds) 2020-01-20 07:00:07 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2020-01-20 09:02:42 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-20 12:16:51 --> gabrielchihongle (uid274900@gateway/web/irccloud.com/x-vooribhazliuqnjh) a rejoint #mcdevs 2020-01-20 15:41:38 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 268 seconds) 2020-01-20 16:14:11 --> T97 (541d9617@84-29-150-23.cable.dynamic.v4.ziggo.nl) a rejoint #mcdevs 2020-01-20 16:14:31 <-- T97 (541d9617@84-29-150-23.cable.dynamic.v4.ziggo.nl) a quitté (Remote host closed the connection) 2020-01-20 18:40:26 <-- mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a quitté (Ping timeout: 240 seconds) 2020-01-20 19:20:17 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-20 19:27:14 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 240 seconds) 2020-01-20 19:29:25 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-20 19:49:52 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 258 seconds) 2020-01-20 19:51:47 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-20 19:59:08 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 260 seconds) 2020-01-20 19:59:49 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-20 20:15:36 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 265 seconds) 2020-01-20 20:33:56 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-20 20:46:09 <-- bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2020-01-20 20:47:00 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-20 20:47:50 --> bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-20 22:21:40 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 258 seconds) 2020-01-20 23:26:17 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-21 00:04:13 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 268 seconds) 2020-01-21 00:29:48 <-- barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a quitté (Ping timeout: 260 seconds) 2020-01-21 04:26:14 <-- gabrielchihongle (uid274900@gateway/web/irccloud.com/x-vooribhazliuqnjh) a quitté (Quit: Connection closed for inactivity) 2020-01-21 05:02:47 --> mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-01-21 05:06:43 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-21 05:57:09 <-- barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a quitté (Ping timeout: 272 seconds) 2020-01-21 08:52:24 --> Defolos (Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-21 08:54:40 <-- kev009 (~kev009@ip72-222-200-117.ph.ph.cox.net) a quitté (Remote host closed the connection) 2020-01-21 08:57:05 --> kev009 (~kev009@ip72-222-200-117.ph.ph.cox.net) a rejoint #mcdevs 2020-01-21 08:57:05 -- Mode #mcdevs [+v kev009] par ChanServ 2020-01-21 09:28:02 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-01-21 09:52:49 <-- Defolos (Defolos@fedora/defolos) a quitté (Ping timeout: 258 seconds) 2020-01-21 10:00:13 --> Defolos (Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-21 10:14:59 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-21 11:23:18 <-- saper (saper@wikipedia/saper) a quitté (Ping timeout: 265 seconds) 2020-01-21 13:47:36 <-- mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a quitté (Quit: mgrech) 2020-01-21 13:51:10 --> gabrielchihongle (uid274900@gateway/web/irccloud.com/x-odlcgqblprfvbvcw) a rejoint #mcdevs 2020-01-21 14:13:06 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-01-21 15:24:23 --> mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-01-21 15:27:35 <-- e (e@freenode/staff/spy.edk) a quitté (Quit: edk) 2020-01-21 15:44:09 --> e (e@freenode/staff/spy.edk) a rejoint #mcdevs 2020-01-21 16:00:02 Not-c468 [McUpdates] Minecraft release 1.15.2 has just been published to the launcher! 2020-01-21 16:05:00 Not-c468 [Burger] New data now avaliable for 1.15.2: 2020-01-21 16:05:02 Not-c468 [Burger] Diff from 1.15.2-pre2: https://pokechu22.github.io/Burger/diff_1.15.2-pre2_1.15.2.html (https://pokechu22.github.io/Burger/diff_1.15.2-pre2_1.15.2.json) 2020-01-21 16:05:03 Not-c468 [Burger] Full data: https://pokechu22.github.io/Burger/1.15.2.html (https://pokechu22.github.io/Burger/1.15.2.json) 2020-01-21 16:57:14 <-- Defolos (Defolos@fedora/defolos) a quitté (Remote host closed the connection) 2020-01-21 18:06:15 Not-c468 [minecraft-data] timmyRS pushed 1 commit to master [+0/-0/±1] https://git.io/JvLLA 2020-01-21 18:06:16 Not-c468 [minecraft-data] timmyRS a057680 - Add 1.15.2 to common/protocolVersions.json 2020-01-21 18:32:36 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-21 20:42:26 <-- mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a quitté (Ping timeout: 240 seconds) 2020-01-21 20:46:52 tktech ammar2: I'm going to kill https://github.com/mcdevs/protocol-spec 2020-01-21 20:47:30 tktech Nothing there, been around since 2015 2020-01-21 20:47:45 MiniDigger https://github.com/mcdevs/BenchCraft is also pretty empty 2020-01-21 20:55:38 KennyTV f 2020-01-21 21:13:27 tktech Keeping mark2 (archived) since it has an active fork it points to. Keeping burger where it is since pokechu22 actively maintains it. 2020-01-21 21:14:08 +ammar2 lol I like the last commit in mark2 2020-01-21 21:16:03 tktech Isn't that how all minecraft projects are developed? Hah. 2020-01-21 21:17:11 chibill yes. But more sleep deprived less drunk. 2020-01-21 21:18:13 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 258 seconds) 2020-01-21 21:23:45 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-21 21:25:32 --> saper (saper@wikipedia/saper) a rejoint #mcdevs 2020-01-21 22:34:17 <-- dexter0 (~dexter0@2601:647:4500:700:7c:10ff:fe00:b0b) a quitté (Ping timeout: 260 seconds) 2020-01-21 22:53:16 --> dexter0 (~dexter0@2601:647:4500:700:7c:10ff:fe00:b0b) a rejoint #mcdevs 2020-01-21 22:54:23 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 260 seconds) 2020-01-21 23:01:57 <-- dexter0 (~dexter0@2601:647:4500:700:7c:10ff:fe00:b0b) a quitté (Ping timeout: 246 seconds) 2020-01-22 00:01:42 --> GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a rejoint #mcdevs 2020-01-22 01:10:24 <-- AndrewPH (~Butts@2606:db00:0:62e::b) a quitté (Quit: ZNC - http://znc.in) 2020-01-22 01:10:58 --> AndrewPH (~Butts@2606:db00:0:62e::b) a rejoint #mcdevs 2020-01-22 01:10:58 -- Mode #mcdevs [+v AndrewPH] par ChanServ 2020-01-22 01:21:57 <-- AndrewPH (~Butts@2606:db00:0:62e::b) a quitté (Ping timeout: 246 seconds) 2020-01-22 01:27:07 --> AndrewPH (~Butts@72.9.147.61) a rejoint #mcdevs 2020-01-22 01:27:07 -- Mode #mcdevs [+v AndrewPH] par ChanServ 2020-01-22 01:59:06 <-- AndrewPH (~Butts@72.9.147.61) a quitté (Ping timeout: 265 seconds) 2020-01-22 02:03:33 --> AndrewPH (~Butts@72.9.147.61) a rejoint #mcdevs 2020-01-22 02:03:33 -- Mode #mcdevs [+v AndrewPH] par ChanServ 2020-01-22 02:06:35 chibill So I updated my JarFingerPrinter and currently I am generating the Fingerprints for all versions of MC after 1.0 :) 2020-01-22 02:11:19 chibill It now works on python3 properly. 2020-01-22 02:13:12 <-- barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a quitté (Ping timeout: 268 seconds) 2020-01-22 02:42:54 <-- GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a quitté (Quit: Leaving) 2020-01-22 02:53:03 --> dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-01-22 03:30:44 +ammar2 woo 2020-01-22 03:43:55 tktech Nice! 2020-01-22 03:44:43 +ammar2 chibill: you missed the deadline by 21 days though! 2020-01-22 03:47:59 <-- VADemon_ (~VADemon@2a01:4f8:212:2f1d:88::41) a quitté (Read error: Connection reset by peer) 2020-01-22 03:48:52 --> VADemon_ (~VADemon@2a01:4f8:212:2f1d:88::41) a rejoint #mcdevs 2020-01-22 03:50:59 chibill Lol. I haven’t touched the repo in 3 years because college is hell. 2020-01-22 03:52:31 <-- VADemon_ (~VADemon@2a01:4f8:212:2f1d:88::41) a quitté (Read error: Connection reset by peer) 2020-01-22 03:52:58 --> VADemon_ (~VADemon@2a01:4f8:212:2f1d:88::41) a rejoint #mcdevs 2020-01-22 03:55:14 <-- Proximyst (~Proximyst@proximyst.com) a quitté (Remote host closed the connection) 2020-01-22 03:57:43 <-- Anna (anna@borealis.voxelstorm.com) a quitté (Ping timeout: 260 seconds) 2020-01-22 04:26:33 <-- blackdog476_ (~notquasse@2a01:4f8:200:11e1::2) a quitté (Quit: No Ping reply in 180 seconds.) 2020-01-22 04:26:38 --> Proximyst (~Proximyst@proximyst.com) a rejoint #mcdevs 2020-01-22 04:27:49 --> Anna (anna@borealis.voxelstorm.com) a rejoint #mcdevs 2020-01-22 04:31:48 --> blackdog476 (~notquasse@godx.pw) a rejoint #mcdevs 2020-01-22 04:53:18 --> mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-01-22 05:17:29 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-22 07:06:18 <-- gabrielchihongle (uid274900@gateway/web/irccloud.com/x-odlcgqblprfvbvcw) a quitté (Quit: Connection closed for inactivity) 2020-01-22 07:31:43 <-- mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a quitté (Read error: Connection reset by peer) 2020-01-22 08:11:55 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 268 seconds) 2020-01-22 08:55:23 --> Defolos (Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-22 09:45:50 <-- Defolos (Defolos@fedora/defolos) a quitté (Ping timeout: 268 seconds) 2020-01-22 10:10:59 <-- bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2020-01-22 10:11:38 <-- Tknoguyfication (~Tknoguyfi@184.103.6.160) a quitté (Ping timeout: 260 seconds) 2020-01-22 10:11:58 --> Defolos (Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-22 10:13:25 --> Tknoguyfication (~Tknoguyfi@184.103.34.184) a rejoint #mcdevs 2020-01-22 10:13:44 --> bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-22 11:29:51 <-- pokechu22 (~pokechu22@2601:602:900:860:816a:390b:fd19:1c1a) a quitté (Ping timeout: 272 seconds) 2020-01-22 11:41:51 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-22 11:42:26 --> pokechu22 (~pokechu22@2601:602:900:860:816a:390b:fd19:1c1a) a rejoint #mcdevs 2020-01-22 11:42:26 -- Mode #mcdevs [+v pokechu22] par ChanServ 2020-01-22 13:20:49 --> gabrielchihongle (uid274900@gateway/web/irccloud.com/x-xhvgdliyyjcydguk) a rejoint #mcdevs 2020-01-22 14:17:14 <-- barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a quitté (Ping timeout: 240 seconds) 2020-01-22 15:44:49 --> Dadido3_ (~quassel@p200300D9DF245500C900C0E461E3EF7B.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-22 15:46:33 <-- Dadido3 (~quassel@p200300D9DF2455006DB78AEDD1A4B72D.dip0.t-ipconnect.de) a quitté (Ping timeout: 245 seconds) 2020-01-22 16:03:07 <-- Dadido3_ (~quassel@p200300D9DF245500C900C0E461E3EF7B.dip0.t-ipconnect.de) a quitté (Ping timeout: 260 seconds) 2020-01-22 16:03:28 --> Dadido3 (~quassel@p200300D9DF382100F17999554D44FF3E.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-22 16:03:54 --> GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a rejoint #mcdevs 2020-01-22 16:45:55 <-- GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a quitté (Quit: Leaving) 2020-01-22 17:37:35 <-- Defolos (Defolos@fedora/defolos) a quitté (Ping timeout: 268 seconds) 2020-01-22 17:53:26 <-- KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a quitté (Quit: o>) 2020-01-22 17:54:32 --> KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a rejoint #mcdevs 2020-01-22 17:56:49 <-- KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a quitté (Client Quit) 2020-01-22 17:57:20 --> KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a rejoint #mcdevs 2020-01-22 17:57:47 <-- KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a quitté (Client Quit) 2020-01-22 17:59:56 --> KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a rejoint #mcdevs 2020-01-22 18:04:48 --> GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a rejoint #mcdevs 2020-01-22 21:05:21 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-23 00:12:24 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-23 00:23:12 <-- wvffle (~wvffle@host-46-175-47-49.wtvk.pl) a quitté (Read error: Connection reset by peer) 2020-01-23 00:24:20 --> wvffle (~wvffle@host-46-175-47-49.wtvk.pl) a rejoint #mcdevs 2020-01-23 00:37:44 <-- SpaceManiac (~SpaceMani@c-67-172-121-111.hsd1.ca.comcast.net) a quitté (Ping timeout: 258 seconds) 2020-01-23 00:56:33 --> SpaceManiac (~SpaceMani@c-67-172-121-111.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-01-23 00:56:34 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2020-01-23 01:20:27 -- gabrielchihongle est maintenant connu sous le nom gabrielchl 2020-01-23 01:44:02 <-- SpaceManiac (~SpaceMani@c-67-172-121-111.hsd1.ca.comcast.net) a quitté (Ping timeout: 240 seconds) 2020-01-23 01:49:38 --> SpaceManiac (~SpaceMani@2601:200:4400:fb::106e) a rejoint #mcdevs 2020-01-23 01:49:38 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2020-01-23 02:21:14 <-- barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a quitté (Ping timeout: 240 seconds) 2020-01-23 02:37:13 <-- GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a quitté (Quit: Leaving) 2020-01-23 03:18:26 <-- killme (~killmePI@185.9.253.124) a quitté (Read error: Connection reset by peer) 2020-01-23 03:19:43 --> killme (~killmePI@185.9.253.124) a rejoint #mcdevs 2020-01-23 03:53:37 <-- SpaceManiac (~SpaceMani@2601:200:4400:fb::106e) a quitté (Ping timeout: 260 seconds) 2020-01-23 03:58:15 --> SpaceManiac (~SpaceMani@c-67-172-121-111.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-01-23 03:58:15 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2020-01-23 04:45:00 <-- gabrielchl (uid274900@gateway/web/irccloud.com/x-xhvgdliyyjcydguk) a quitté (Quit: Connection closed for inactivity) 2020-01-23 07:58:31 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 272 seconds) 2020-01-23 08:36:40 --> Defolos (Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-23 08:58:27 <-- keg[m] (kegicyname@gateway/shell/matrix.org/x-ttoxclhpbrzjcmdk) a quitté (*.net *.split) 2020-01-23 08:58:28 <-- e (e@freenode/staff/spy.edk) a quitté (*.net *.split) 2020-01-23 08:58:28 <-- craftxbox (~craftxbox@unaffiliated/craftxbox) a quitté (*.net *.split) 2020-01-23 08:58:29 <-- tassu (~tassu@tassu.me) a quitté (*.net *.split) 2020-01-23 08:58:29 <-- dav1d (~dav1d@volt/developer/dav1d) a quitté (*.net *.split) 2020-01-23 08:58:29 <-- EvilJStoker (jstoker@unaffiliated/jstoker) a quitté (*.net *.split) 2020-01-23 08:58:29 <-- sudden (~lax@unaffiliated/laxask) a quitté (*.net *.split) 2020-01-23 08:58:29 <-- clonejo (~clonejo@shakik3.shakik.de) a quitté (*.net *.split) 2020-01-23 08:58:36 <-- winny (~winny@unaffiliated/winstonw) a quitté (*.net *.split) 2020-01-23 08:58:37 <-- GingerGeek (~Zed@unaffiliated/gingergeek) a quitté (*.net *.split) 2020-01-23 09:01:28 <-- chibill (chibillmat@gateway/shell/matrix.org/x-pkzxhalbgcfsmrnw) a quitté (Ping timeout: 250 seconds) 2020-01-23 09:02:53 --> winny (~winny@unaffiliated/winstonw) a rejoint #mcdevs 2020-01-23 09:02:53 --> GingerGeek (~Zed@unaffiliated/gingergeek) a rejoint #mcdevs 2020-01-23 09:22:29 --> cheakoirccloud (uid293319@gateway/web/irccloud.com/x-mslwgorqthahhbyj) a rejoint #mcdevs 2020-01-23 09:45:39 --> e (e@freenode/staff/spy.edk) a rejoint #mcdevs 2020-01-23 09:45:39 --> craftxbox (~craftxbox@unaffiliated/craftxbox) a rejoint #mcdevs 2020-01-23 09:45:39 --> tassu (~tassu@tassu.me) a rejoint #mcdevs 2020-01-23 09:45:39 --> dav1d (~dav1d@volt/developer/dav1d) a rejoint #mcdevs 2020-01-23 09:45:39 --> EvilJStoker (jstoker@unaffiliated/jstoker) a rejoint #mcdevs 2020-01-23 09:45:39 --> sudden (~lax@unaffiliated/laxask) a rejoint #mcdevs 2020-01-23 09:45:39 --> clonejo (~clonejo@shakik3.shakik.de) a rejoint #mcdevs 2020-01-23 09:45:39 -- Mode #mcdevs [+v clonejo] par karatkievich.freenode.net 2020-01-23 09:59:53 --> jrra (~jrra@hardchats.jrra.zone) a rejoint #mcdevs 2020-01-23 10:49:26 --> gabrielchl (uid274900@gateway/web/irccloud.com/x-tmwsymmgzmwtuzkv) a rejoint #mcdevs 2020-01-23 11:41:41 <-- cheakoirccloud (uid293319@gateway/web/irccloud.com/x-mslwgorqthahhbyj) a quitté (Quit: Connection closed for inactivity) 2020-01-23 12:10:34 --> Zoltus (5b98d2a0@91-152-210-160.elisa-laajakaista.fi) a rejoint #mcdevs 2020-01-23 12:11:40 Zoltus Yo im new to packet stuff, trying to mess with PacketPlayOutLogin and PacketPlayOutCustomPayload but they have changed after 1.14, im using 1.15 and cant figure out what values to use for them because they have extra variables 2020-01-23 12:22:57 MiniDigger they have been changed? 2020-01-23 12:23:45 MiniDigger am not aware of any changes and the prerelease page doesnt list them https://wiki.vg/Pre-release_protocol 2020-01-23 12:27:33 Zoltus when i create packetplayoutlogin new PacketPlayOutLogin(int var0, EnumGamemode var1, long var2, boolean var4, DimensionManager var5, int var6, WorldType var7, int var8, boolean var9, boolean var10); 2020-01-23 12:29:31 MiniDigger sorry 2020-01-23 12:29:33 MiniDigger am stupid 2020-01-23 12:29:36 MiniDigger https://wiki.vg/Pre-release_protocol#Join_Game 2020-01-23 12:29:51 Zoltus Oh thanks so much 2020-01-23 12:29:59 MiniDigger let it be known that spigots mapping names are stupid 2020-01-23 12:30:03 Zoltus i was watching to old protocl page 2020-01-23 12:30:27 Zoltus https://wiki.vg/Protocol#Login_Request_.280x01.29 2020-01-23 12:30:31 Zoltus thatpage ios 1.14 right? 2020-01-23 12:30:53 Zoltus but anyways got what i wanted thanks:) 2020-01-23 12:30:54 MiniDigger yes, as noted on the top 2020-01-23 12:31:31 Zoltus was about to quit trying but im happy i found this "community" :D 2020-01-23 12:37:14 Zoltus so spigot has changes those a bit? seems like they are a bit different when im using spigot api 2020-01-23 13:13:52 <-- Zoltus (5b98d2a0@91-152-210-160.elisa-laajakaista.fi) a quitté (Remote host closed the connection) 2020-01-23 13:40:32 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-23 13:43:59 --> chibill (chibillmat@gateway/shell/matrix.org/x-omcfbcuhbkhraevn) a rejoint #mcdevs 2020-01-23 13:43:59 --> keg[m] (kegicyname@gateway/shell/matrix.org/x-ddcdruuycrvoaosg) a rejoint #mcdevs 2020-01-23 13:48:59 --> cheakoirccloud (uid293319@gateway/web/irccloud.com/x-oxbqyokxepewbpyw) a rejoint #mcdevs 2020-01-23 14:05:48 <-- Defolos (Defolos@fedora/defolos) a quitté (Ping timeout: 268 seconds) 2020-01-23 14:21:13 MiniDigger Spigot has no packet API 2020-01-23 15:22:32 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-23 16:18:02 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 240 seconds) 2020-01-23 16:55:17 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-23 17:01:49 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 265 seconds) 2020-01-23 17:02:41 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-23 17:06:41 --> circ-user-lbSOo (~circuser-@204.184.214.98) a rejoint #mcdevs 2020-01-23 17:06:51 circ-user-lbSOo Hello 2020-01-23 17:07:40 -- circ-user-lbSOo est maintenant connu sous le nom PassTheMAyo 2020-01-23 17:07:43 -- PassTheMAyo est maintenant connu sous le nom PassTheMayo 2020-01-23 17:08:05 timmyRS Hello 2020-01-23 17:08:27 PassTheMayo I'm having problems with a recent project of mine 2020-01-23 17:08:50 PassTheMayo I'm building a Minecraft server implementation in Golang, and I've gotten pretty far, but I'm stuck at the part when I need to enable encryption 2020-01-23 17:09:36 PassTheMayo I really don't want to retype everything I've posted on a GitHub issue, so I'll just link it here 2020-01-23 17:09:50 PassTheMayo https://github.com/gocraft-org/gocraft/issues/1 2020-01-23 17:11:43 <-- SpaceManiac (~SpaceMani@c-67-172-121-111.hsd1.ca.comcast.net) a quitté (Ping timeout: 258 seconds) 2020-01-23 17:13:48 timmyRS If you want, you can just send Login Success and proceed in offline mode. 2020-01-23 17:14:41 PassTheMayo Yeah I definitely could, but I want to get the encryption down before I proceed to sending chunk data. 2020-01-23 17:15:38 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 240 seconds) 2020-01-23 17:15:47 timmyRS Chunk data is definitely harder. I'd just go with not sending it, getting the client to spawn in the void, and having a working chat server, and expand from there. 2020-01-23 17:16:12 PassTheMayo Alright, I'll do that in the mean time 2020-01-23 17:17:25 --> SpaceManiac (~SpaceMani@2601:200:4400:fb::1006) a rejoint #mcdevs 2020-01-23 17:17:25 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2020-01-23 17:17:48 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-23 17:21:52 <-- PassTheMayo (~circuser-@204.184.214.98) a quitté (Remote host closed the connection) 2020-01-23 17:24:03 <-- SpaceManiac (~SpaceMani@2601:200:4400:fb::1006) a quitté (Ping timeout: 245 seconds) 2020-01-23 17:28:11 --> SpaceManiac (~SpaceMani@c-67-172-121-111.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-01-23 17:28:11 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2020-01-23 17:32:48 <-- SpaceManiac (~SpaceMani@c-67-172-121-111.hsd1.ca.comcast.net) a quitté (Ping timeout: 258 seconds) 2020-01-23 17:37:38 --> SpaceManiac (~SpaceMani@c-67-172-121-111.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-01-23 17:37:38 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2020-01-23 17:47:15 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 240 seconds) 2020-01-23 17:54:19 --> PassTheMayo (~PassTheMa@204.184.214.98) a rejoint #mcdevs 2020-01-23 17:58:04 <-- PassTheMayo (~PassTheMa@204.184.214.98) a quitté (Remote host closed the connection) 2020-01-23 18:30:33 chibill Chunk Data is definitely hard as all heck. 2020-01-23 18:33:12 chibill I have a jar fingerprints for every version of MC that is available in the launcher. And they only take up 364MB. (compared to 2.2 GB when i didn't compress them.) 2020-01-23 19:11:14 <-- SpaceManiac (~SpaceMani@c-67-172-121-111.hsd1.ca.comcast.net) a quitté (Ping timeout: 268 seconds) 2020-01-23 19:11:43 <-- AndrewPH (~Butts@72.9.147.61) a quitté (Quit: ZNC - http://znc.in) 2020-01-23 19:12:02 --> AndrewPH (~Butts@2606:db00:0:62e::b) a rejoint #mcdevs 2020-01-23 19:12:02 -- Mode #mcdevs [+v AndrewPH] par ChanServ 2020-01-23 19:15:55 --> SpaceManiac (~SpaceMani@2601:200:4400:fb::1006) a rejoint #mcdevs 2020-01-23 19:15:55 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2020-01-23 19:15:58 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-23 19:21:48 <-- AndrewPH (~Butts@2606:db00:0:62e::b) a quitté (Quit: ZNC - http://znc.in) 2020-01-23 19:22:10 --> AndrewPH (~Butts@2606:db00:0:62e::b) a rejoint #mcdevs 2020-01-23 19:22:10 -- Mode #mcdevs [+v AndrewPH] par ChanServ 2020-01-23 19:28:39 <-- cheakoirccloud (uid293319@gateway/web/irccloud.com/x-oxbqyokxepewbpyw) a quitté (Quit: Connection closed for inactivity) 2020-01-23 19:29:55 --> cheakoirccloud (uid293319@gateway/web/irccloud.com/x-wjcfaonfddtydfjx) a rejoint #mcdevs 2020-01-23 20:41:14 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 240 seconds) 2020-01-23 20:46:39 <-- SpaceManiac (~SpaceMani@2601:200:4400:fb::1006) a quitté (Ping timeout: 246 seconds) 2020-01-23 20:51:42 --> SpaceManiac (~SpaceMani@c-67-172-121-111.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-01-23 20:51:42 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2020-01-23 22:18:20 <-- SpaceManiac (~SpaceMani@c-67-172-121-111.hsd1.ca.comcast.net) a quitté (*.net *.split) 2020-01-23 22:18:20 <-- wvffle (~wvffle@host-46-175-47-49.wtvk.pl) a quitté (*.net *.split) 2020-01-23 22:18:20 <-- blackdog476 (~notquasse@godx.pw) a quitté (*.net *.split) 2020-01-23 22:18:20 <-- Proximyst (~Proximyst@proximyst.com) a quitté (*.net *.split) 2020-01-23 22:18:20 <-- dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a quitté (*.net *.split) 2020-01-23 22:18:20 <-- tktech (~tktech@ec2-52-70-105-60.compute-1.amazonaws.com) a quitté (*.net *.split) 2020-01-23 22:18:21 <-- Yamakaja (~yamakaja@vps.pub.yamakaja.me) a quitté (*.net *.split) 2020-01-23 22:18:21 <-- timmyRS (~timmyRS@tim.private.hell.sh) a quitté (*.net *.split) 2020-01-23 22:18:21 <-- ddevault (znc@sourcehut/staff/ddevault) a quitté (*.net *.split) 2020-01-23 22:18:21 <-- Akkarin (~Akkarin@hyperion.torchmind.com) a quitté (*.net *.split) 2020-01-23 23:01:44 --> SpaceManiac (~SpaceMani@c-67-172-121-111.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-01-23 23:01:44 --> wvffle (~wvffle@host-46-175-47-49.wtvk.pl) a rejoint #mcdevs 2020-01-23 23:01:44 --> blackdog476 (~notquasse@godx.pw) a rejoint #mcdevs 2020-01-23 23:01:44 --> Proximyst (~Proximyst@proximyst.com) a rejoint #mcdevs 2020-01-23 23:01:44 --> dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-01-23 23:01:44 --> tktech (~tktech@ec2-52-70-105-60.compute-1.amazonaws.com) a rejoint #mcdevs 2020-01-23 23:01:44 --> Yamakaja (~yamakaja@vps.pub.yamakaja.me) a rejoint #mcdevs 2020-01-23 23:01:44 --> timmyRS (~timmyRS@tim.private.hell.sh) a rejoint #mcdevs 2020-01-23 23:01:44 --> ddevault (znc@sourcehut/staff/ddevault) a rejoint #mcdevs 2020-01-23 23:01:44 --> Akkarin (~Akkarin@hyperion.torchmind.com) a rejoint #mcdevs 2020-01-23 23:01:44 -- Mode #mcdevs [+vv SpaceManiac ddevault] par karatkievich.freenode.net 2020-01-23 23:07:25 --> millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a rejoint #mcdevs 2020-01-24 01:28:35 <-- charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a quitté (Ping timeout: 272 seconds) 2020-01-24 04:02:37 <-- barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a quitté (Ping timeout: 268 seconds) 2020-01-24 04:28:40 <-- cheakoirccloud (uid293319@gateway/web/irccloud.com/x-wjcfaonfddtydfjx) a quitté (Quit: Connection closed for inactivity) 2020-01-24 04:41:31 --> mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-01-24 04:57:23 <-- gabrielchl (uid274900@gateway/web/irccloud.com/x-tmwsymmgzmwtuzkv) a quitté (Quit: Connection closed for inactivity) 2020-01-24 07:33:10 <-- Meeeh (~Meeeh@206.ip-51-68-140.eu) a quitté (Quit: ZNC - https://znc.in) 2020-01-24 08:03:32 <-- AndrewPH (~Butts@2606:db00:0:62e::b) a quitté (Quit: ZNC - http://znc.in) 2020-01-24 08:03:47 --> AndrewPH (~Butts@2606:db00:0:62e::b) a rejoint #mcdevs 2020-01-24 08:03:47 -- Mode #mcdevs [+v AndrewPH] par ChanServ 2020-01-24 08:18:40 --> mgrech_ (~mgrech@193-154-228-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-01-24 08:22:28 <-- mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a quitté (Ping timeout: 260 seconds) 2020-01-24 08:49:04 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-24 09:10:33 <-- AndrewPH (~Butts@2606:db00:0:62e::b) a quitté (Quit: ZNC - http://znc.in) 2020-01-24 09:12:31 --> AndrewPH (~Butts@72.9.147.61) a rejoint #mcdevs 2020-01-24 09:12:32 -- Mode #mcdevs [+v AndrewPH] par ChanServ 2020-01-24 09:16:50 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-01-24 09:36:08 --> Meeeh (~Meeeh@206.ip-51-68-140.eu) a rejoint #mcdevs 2020-01-24 09:38:53 <-- uis (~uis@95.165.156.213) a quitté (Ping timeout: 268 seconds) 2020-01-24 09:40:31 --> uis (~uis@95.165.156.213) a rejoint #mcdevs 2020-01-24 09:45:13 <-- AndrewPH (~Butts@72.9.147.61) a quitté (Quit: ZNC - http://znc.in) 2020-01-24 09:45:31 --> AndrewPH (~Butts@2606:db00:0:62e::b) a rejoint #mcdevs 2020-01-24 09:45:31 -- Mode #mcdevs [+v AndrewPH] par ChanServ 2020-01-24 10:06:24 <-- AndrewPH (~Butts@2606:db00:0:62e::b) a quitté (Ping timeout: 246 seconds) 2020-01-24 10:10:25 --> AndrewPH (~Butts@2606:db00:0:62e::b) a rejoint #mcdevs 2020-01-24 10:10:25 -- Mode #mcdevs [+v AndrewPH] par ChanServ 2020-01-24 10:31:26 <-- MiniDigger (~MiniDigge@electroniccat.smells.minidigger.me) a quitté (Quit: The Lounge - https://thelounge.chat) 2020-01-24 10:34:41 <-- AndrewPH (~Butts@2606:db00:0:62e::b) a quitté (Quit: ZNC - http://znc.in) 2020-01-24 10:36:56 --> AndrewPH (~Butts@2606:db00:0:62e::b) a rejoint #mcdevs 2020-01-24 10:36:56 -- Mode #mcdevs [+v AndrewPH] par ChanServ 2020-01-24 10:39:39 --> MiniDigger (~MiniDigge@electroniccat.smells.minidigger.me) a rejoint #mcdevs 2020-01-24 10:49:43 <-- AndrewPH (~Butts@2606:db00:0:62e::b) a quitté (Ping timeout: 272 seconds) 2020-01-24 11:29:13 --> gabrielchl (uid274900@gateway/web/irccloud.com/x-euyhmqpwdhxxeyya) a rejoint #mcdevs 2020-01-24 11:46:01 --> AndrewPH (~Butts@2606:db00:0:62e::b) a rejoint #mcdevs 2020-01-24 11:46:01 -- Mode #mcdevs [+v AndrewPH] par ChanServ 2020-01-24 11:54:34 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-24 12:18:11 --> mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-01-24 12:19:13 <-- mgrech_ (~mgrech@193-154-228-28.adsl.highway.telekom.at) a quitté (Ping timeout: 268 seconds) 2020-01-24 12:42:37 <-- Intelli (sid46069@gateway/web/irccloud.com/x-piuiurihtfdzdqui) a quitté 2020-01-24 12:42:54 --> Intelli (sid46069@gateway/web/irccloud.com/x-ukwdmwvczhsdwsmj) a rejoint #mcdevs 2020-01-24 13:52:55 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-01-24 14:04:26 <-- bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2020-01-24 14:04:56 --> bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-24 14:35:14 <-- barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a quitté (Ping timeout: 240 seconds) 2020-01-24 15:15:40 --> GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a rejoint #mcdevs 2020-01-24 16:35:05 <-- mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a quitté (Ping timeout: 265 seconds) 2020-01-24 16:38:13 <-- pokechu22 (~pokechu22@2601:602:900:860:816a:390b:fd19:1c1a) a quitté (Ping timeout: 245 seconds) 2020-01-24 16:52:50 <-- millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a quitté (Ping timeout: 268 seconds) 2020-01-24 16:52:52 --> pokechu22 (~pokechu22@c-73-97-214-77.hsd1.wa.comcast.net) a rejoint #mcdevs 2020-01-24 16:52:52 -- Mode #mcdevs [+v pokechu22] par ChanServ 2020-01-24 18:06:02 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 240 seconds) 2020-01-24 20:09:45 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-24 20:49:27 <-- Andrio (Andrio@questers-rest.andriocelos.net) a quitté (Ping timeout: 260 seconds) 2020-01-24 20:51:28 --> Andrio (Andrio@questers-rest.andriocelos.net) a rejoint #mcdevs 2020-01-24 22:46:36 tktech ammar2 / timmyRS: I'm giving this a try, if you're still donating: https://github.com/sponsors/TkTech 2020-01-24 22:46:42 tktech Github is matching donations for the first year 2020-01-24 22:51:39 timmyRS Github matching donations is great, but it doesn't change the fact that open-source only pays if you work for a company who maintains or consumes open-source projects :/ 2020-01-24 22:56:17 tktech Eh, I usually have IP rights written into my contracts and almost always work on open-source. 2020-01-24 22:57:24 tktech I don't expect to get much through it, the $150 option is just an experiment for small-scale support. 2020-01-24 22:57:39 tktech Goals just to get the community project's opperating costs self-sufficient. 2020-01-24 23:03:05 tktech https://gist.github.com/TkTech/24e8f967876e916451b8910834463bbd as an example of what my typical contracts with the Government of Canada include 2020-01-24 23:04:03 tktech Main thing is that you're selling your services and time, to be used at their direction, not the software. 2020-01-24 23:07:33 timmyRS Yeah, but in that case open-source is the hobby you do beside your actual job :P 2020-01-24 23:08:14 tktech Not really, I open-source practically all of it, that's the point to keeping the IP. 2020-01-24 23:11:10 timmyRS My point being, you don't just start an open-source project, maybe have thousands of users, and then magically get money. 2020-01-24 23:13:08 tktech Oh no, there are certainly projects like that but they are unicorns. Always more reliable to go the other way, or take existing OS that fits 90% of a companies needs and get them to pay for the next 10%. 2020-01-24 23:16:14 rom1504 some projects are like that 2020-01-24 23:16:41 rom1504 but it's usually from very smart people, that could probably make much more money by making their own company or working for a big company 2020-01-24 23:17:38 rom1504 for example the initial creator of mineflayer, who is now building https://github.com/ziglang/zig and making some money of it (but probably less than what he could make in some company) 2020-01-24 23:18:00 rom1504 https://andrewkelley.me/post/full-time-zig.html 2020-01-24 23:19:08 +ammar2 wow I guess andrewrk is too good for us now ): 2020-01-24 23:19:11 +ammar2 he doesn't idle here anymore 2020-01-24 23:21:59 rom1504 well he's been out of the minecraft world for a few years... which is quite fine 2020-01-24 23:43:59 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-25 01:59:54 timmyRS How exactly is the block data encoded in the chunk data? Whenever bits per block is not 4 or 8, the client sees something entirely wrong. I've tried all sort of byte and bit orderings to encode those longs in but somehow the client always gets it wrong. I've seen what's sent over the wire, and it looks how I reckon it should look. For example, with grass_block[snowy=false], I see 10010000000000 or 00000000001001 repeated all over but somehow I find 2020-01-25 01:59:54 timmyRS jukeboxes, stone fences, smooth red sandstone stairs, and water, sometimes with actual grass blocks sprinked in between. 2020-01-25 02:06:04 +pokechu22 You're probably handling wrapping between longs wrong. You might want to test bits per block at 8, but with a specific pattern of blocks in the x direction so that you can see if it's getting flipped 2020-01-25 02:06:21 +pokechu22 https://wiki.vg/Chunk_Format#Example shows an example of how it works -- the actual numbers in it are outdated, but the format is still right 2020-01-25 02:06:58 timmyRS It works perfectly fine with bits per block 8 and 4. 2020-01-25 02:11:43 +pokechu22 The thing with that is that those will always be aligned entirely into the long, so you don't have to deal with merging multiple longs 2020-01-25 02:11:59 +pokechu22 though I'd expect an issue with merging multiple longs to look correct *most* of the time, with issues only on the overlap bits 2020-01-25 02:13:35 timmyRS My solution for this is also really crap: I just write the bits into a string containing "0" and "1", and then splitting every 64 characters to write longs. 2020-01-25 02:14:14 +pokechu22 Are you handling the splitting right when the string isn't divisible by 64? ... actually, that can't happen, so that won't be an issue 2020-01-25 02:17:29 +pokechu22 I think using a string could cause more confusion than it's worth, since you'd need to work on multiple parts and the least significant bits of a value spanning across 2 longs ends up on the MSBs of the 1st long and the LSBs of the 2nd, which means adding 64 characters and then going backwards in them 2020-01-25 02:17:58 <-- GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a quitté (Quit: Leaving) 2020-01-25 02:19:17 timmyRS No, the string contains all the data, and is then split into 64-character parts to be encoded as longs 2020-01-25 02:20:08 +pokechu22 Do you get something matching the example for your string if you use the example blocks given in the article? 2020-01-25 02:24:17 timmyRS ? 2020-01-25 02:24:49 +pokechu22 https://wiki.vg/Chunk_Format#Example - it also has a string of 0's and 1's 2020-01-25 02:25:28 timmyRS Yes, that is how it is represented internally as one continuous string 2020-01-25 02:26:01 +pokechu22 Right, and does your code generate a matching string when you use the blocks it gives, at 13 bits per block? 2020-01-25 02:26:18 +pokechu22 [which wouldn't be valid for current versions, but it's still useful for testing] 2020-01-25 02:26:27 timmyRS I'll give it a try 2020-01-25 02:27:48 +pokechu22 You can convert the id:meta format to id << 4 | meta 2020-01-25 02:29:36 timmyRS Erg, it matches, but also it doesn't 2020-01-25 02:29:53 timmyRS I get 01 00 18 80 c0 06 00 20 2020-01-25 02:30:04 timmyRS but the example is missing a nibble 2020-01-25 02:31:57 +pokechu22 I don't understand what you mean by that 2020-01-25 02:32:21 +pokechu22 Oh, wait, there's also hex strings next to it... 2020-01-25 02:32:52 +pokechu22 Yeah, those hex strings are missing a nibble :| 2020-01-25 02:33:04 +pokechu22 Does the second one match? 2020-01-25 02:33:33 timmyRS Yes 2020-01-25 02:35:21 +pokechu22 OK, well, that's odd then, since that indicates your code is correct (at least to that point; there might be an endian-swapping part too) 2020-01-25 02:36:22 timmyRS My code for 1.8 had to export using `GMP_LSW_FIRST | GMP_BIG_ENDIAN` to encode those shorts, which is why I tried all sorts of other flags for gmp_export, all with wrong results. 2020-01-25 02:38:28 timmyRS Wait, I just had a long hard look at that example... the bits are the wrong way around. 2020-01-25 02:42:46 +pokechu22 That's how it's supposed to be; the first value is put into the least significant bits 2020-01-25 02:43:52 timmyRS Whoo, I did it, and I just had to open my eyes 2020-01-25 02:44:54 timmyRS So, when I'm adding the blocks to my bits-string, I just reverse what I'm adding, and when I'm writing a long, I'm reversing those 64 bits, and gmp_exporting using GMP_LSW_FIRST | GMP_BIG_ENDIAN 2020-01-25 02:45:05 timmyRS Could probably be done more elegantly, but I'm just glad something worked 2020-01-25 02:49:10 +pokechu22 https://wiki.vg/index.php?title=Chunk_Format&diff=15269&oldid=15025 - fixed that missing nybble 2020-01-25 03:00:14 timmyRS May I suggest updating that example so stupid people don't go ignoring it? :^) 2020-01-25 03:01:40 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 268 seconds) 2020-01-25 03:02:29 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2020-01-25 03:08:36 +pokechu22 Sure, I've got time now actually... though I'll need to basically rewrite it for it to actually be valid 2020-01-25 03:59:05 +pokechu22 timmyRS: I added a second example. Can you use your code to verify it? I'm not actually sure I did it right since I did it mostly by hand 2020-01-25 04:00:32 timmyRS Are you sure you want to trust my code? 2020-01-25 04:00:56 +pokechu22 If your code gives the same result as my brain, *probably* both are right 2020-01-25 04:03:09 <-- barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a quitté (Ping timeout: 265 seconds) 2020-01-25 04:14:55 timmyRS I unfortunately can't access that code in a way to test that easily (which I'll have to fix if I want to unit test it), but that red 7 looks incorrect to me. 2020-01-25 04:20:21 +pokechu22 ... yeah, that looks wrong to me too 2020-01-25 05:10:45 <-- gabrielchl (uid274900@gateway/web/irccloud.com/x-euyhmqpwdhxxeyya) a quitté (Quit: Connection closed for inactivity) 2020-01-25 06:49:38 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2020-01-25 06:51:38 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 240 seconds) 2020-01-25 06:51:39 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2020-01-25 08:00:14 <-- Defolos (~Defolos@fedora/defolos) a quitté (Remote host closed the connection) 2020-01-25 08:02:46 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-25 10:20:52 <-- Morrolan (morrolan@znc.morrolan.ch) a quitté (Quit: Goodbye) 2020-01-25 10:22:26 --> Morrolan (morrolan@znc.morrolan.ch) a rejoint #mcdevs 2020-01-25 12:27:21 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-01-25 13:23:48 --> gabrielchl (uid274900@gateway/web/irccloud.com/x-oexdxcmclkyfcsjg) a rejoint #mcdevs 2020-01-25 14:15:04 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-01-25 14:33:45 --> mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-01-25 14:56:43 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-25 15:56:06 <-- Thinkofname (~Think@163.172.95.9) a quitté (Quit: Leaving) 2020-01-25 16:07:57 --> Thinkofname (~Think@163.172.95.9) a rejoint #mcdevs 2020-01-25 16:07:57 -- Mode #mcdevs [+v Thinkofname] par ChanServ 2020-01-25 16:18:02 <-- bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2020-01-25 16:18:37 --> bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-25 16:28:59 timmyRS https://gist.github.com/timmyRS/2a5281e7e663e27269c7a38e076cf9c7 2020-01-25 16:29:26 timmyRS (regarding that example, output of the script is at the bottom.) 2020-01-25 16:30:51 timmyRS But it also writes the red 7 in that way. So, I guess it's correct? 2020-01-25 17:10:29 <-- Meeeh (~Meeeh@206.ip-51-68-140.eu) a quitté (Quit: ZNC - https://znc.in) 2020-01-25 17:12:48 --> Meeeh (~Meeeh@206.ip-51-68-140.eu) a rejoint #mcdevs 2020-01-25 17:33:25 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 265 seconds) 2020-01-25 18:05:08 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-25 18:44:16 <-- barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a quitté (Ping timeout: 265 seconds) 2020-01-25 18:45:51 --> imharvol (~imharvol@92.189.231.89) a rejoint #mcdevs 2020-01-25 19:08:06 +pokechu22 I fixed the red 7 in the example after you mentioned it, so if it matches now then it's probably correct 2020-01-25 19:20:12 timmyRS With that sneaky edit, the example is exactly equal to the output of that script, so I guess it's correct, unless we're all wrong. ¯\_(ツ)_/¯ 2020-01-25 19:51:13 <-- bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2020-01-25 19:51:43 --> bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-25 19:58:35 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-25 20:15:04 <-- barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a quitté (Remote host closed the connection) 2020-01-25 20:37:52 keg[m] Any idea why I'm getting incorrect entity ids with SpawnEntity? e.g. when spawning chicken, I get id 9, but should get 93? Also I'm reading different ids for entities everywhere, prismarine.org says chicken is 8, minecraftpedia says 93, wiki.vg says 7. Which one to use? :D 2020-01-25 20:39:10 +pokechu22 Uh... I think I might have messed up with that. Entity IDs are dynamic now, but I might not have updated the table when I finally merged 1.14 info into entity metadata 2020-01-25 20:39:54 timmyRS Wait, [m]... is matrix allowed here now? 2020-01-25 20:41:31 +pokechu22 https://pokechu22.github.io/Burger/1.15.2.html#entities is automatically generated so it should be correct (giving 9 for chicken in 1.15.2). https://pokechu22.github.io/Burger/1.14.4.html#entities says it was 8 in 1.14.4, https://pokechu22.github.io/Burger/1.13.2.html#entities gives 7, and dropping down to 1.12.2 where they were manually hardcoded silly IDs 2020-01-25 20:41:33 +pokechu22 https://pokechu22.github.io/Burger/1.12.2.html#entities gives 93 2020-01-25 20:41:58 +pokechu22 (those are all available as JSON too, e.g. https://pokechu22.github.io/Burger/1.15.2.json) 2020-01-25 20:52:05 keg[m] ok that looks correct. Thanks! 2020-01-25 23:36:12 <-- mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a quitté (Ping timeout: 265 seconds) 2020-01-26 00:12:33 --> imharvol1 (~imharvol@92.189.231.89) a rejoint #mcdevs 2020-01-26 00:16:19 imharvol1 / whois imharvol 2020-01-26 00:27:14 <-- imharvol (~imharvol@92.189.231.89) a quitté (Quit: Leaving) 2020-01-26 00:33:26 <-- imharvol1 (~imharvol@92.189.231.89) a quitté (Quit: WeeChat 2.3) 2020-01-26 00:34:14 --> imharvol (~imharvol@92.189.231.89) a rejoint #mcdevs 2020-01-26 01:09:26 chibill So whats up? 2020-01-26 02:14:57 --> charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a rejoint #mcdevs 2020-01-26 06:13:33 <-- gabrielchl (uid274900@gateway/web/irccloud.com/x-oexdxcmclkyfcsjg) a quitté (Quit: Connection closed for inactivity) 2020-01-26 08:03:54 <-- Tknoguyfication (~Tknoguyfi@184.103.34.184) a quitté (Ping timeout: 265 seconds) 2020-01-26 08:04:34 --> Tknoguyfication (~Tknoguyfi@184.103.115.34) a rejoint #mcdevs 2020-01-26 08:56:34 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-01-26 09:53:14 <-- imharvol (~imharvol@92.189.231.89) a quitté (Quit: WeeChat 2.3) 2020-01-26 10:12:11 --> mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-01-26 10:19:57 <-- _123DMWM (~123DMWM@2601:18d:580:3870:31dc:f84a:58da:9dfb) a quitté (Ping timeout: 260 seconds) 2020-01-26 10:21:09 --> _123DMWM (~123DMWM@2601:18d:580:3870:518e:295a:2111:ec44) a rejoint #mcdevs 2020-01-26 10:23:34 --> imharvol (~imharvol@92.189.231.89) a rejoint #mcdevs 2020-01-26 10:55:35 <-- imharvol (~imharvol@92.189.231.89) a quitté (Quit: WeeChat 2.3) 2020-01-26 10:58:53 --> imharvol (~imharvol@92.189.231.89) a rejoint #mcdevs 2020-01-26 13:20:06 imharvol join #webtorrent 2020-01-26 13:50:13 --> gabrielchl (uid274900@gateway/web/irccloud.com/x-rurypwitqarayuxg) a rejoint #mcdevs 2020-01-26 14:17:35 <-- gabrielchl (uid274900@gateway/web/irccloud.com/x-rurypwitqarayuxg) a quitté #mcdevs 2020-01-26 14:34:35 <-- Defolos (~Defolos@fedora/defolos) a quitté (Remote host closed the connection) 2020-01-26 14:39:17 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-26 14:52:36 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-01-26 18:30:16 <-- mgrech (~mgrech@193-154-228-28.adsl.highway.telekom.at) a quitté (Read error: Connection reset by peer) 2020-01-26 18:39:25 --> GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a rejoint #mcdevs 2020-01-27 00:53:17 <-- Defolos (~Defolos@fedora/defolos) a quitté (Remote host closed the connection) 2020-01-27 00:55:05 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-27 01:02:02 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 240 seconds) 2020-01-27 03:34:05 --> PassTheMayo (~circuser-@50-82-198-82.client.mchsi.com) a rejoint #mcdevs 2020-01-27 03:34:28 <-- PassTheMayo (~circuser-@50-82-198-82.client.mchsi.com) a quitté (Remote host closed the connection) 2020-01-27 03:40:34 <-- GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a quitté (Quit: Leaving) 2020-01-27 04:22:03 <-- _123DMWM (~123DMWM@2601:18d:580:3870:518e:295a:2111:ec44) a quitté (Read error: Connection reset by peer) 2020-01-27 04:26:36 --> _123DMWM (~123DMWM@2601:18d:580:3870:1ddf:449b:5956:8a90) a rejoint #mcdevs 2020-01-27 06:14:42 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-01-27 06:47:56 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2020-01-27 06:50:05 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 265 seconds) 2020-01-27 06:50:05 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2020-01-27 08:42:45 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-27 13:56:18 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-01-27 14:43:43 --> ReflxctionDev (~Reflxctio@46.185.201.73) a rejoint #mcdevs 2020-01-27 14:43:58 ReflxctionDev hello? 2020-01-27 14:45:42 ReflxctionDev got a simple question, what packets should I be sending to mine blocks? beside the digging and position packets? 2020-01-27 14:48:20 <-- ReflxctionDev (~Reflxctio@46.185.201.73) a quitté #mcdevs 2020-01-27 15:04:34 MiniDigger waited 3 minutes for a reply, nice 2020-01-27 15:12:41 --> ReflxctionDev (~Reflxctio@46.185.201.73) a rejoint #mcdevs 2020-01-27 15:17:03 <-- MiniDigger (~MiniDigge@electroniccat.smells.minidigger.me) a quitté (Quit: The Lounge - https://thelounge.chat) 2020-01-27 15:18:09 --> MiniDigger (~MiniDigge@electroniccat.smells.minidigger.me) a rejoint #mcdevs 2020-01-27 17:14:39 <-- VADemon_ (~VADemon@2a01:4f8:212:2f1d:88::41) a quitté (Read error: Connection reset by peer) 2020-01-27 17:14:45 --> VADemon (~VADemon@2a01:4f8:212:2f1d:88::41) a rejoint #mcdevs 2020-01-27 17:19:39 --> GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a rejoint #mcdevs 2020-01-27 17:53:12 +pokechu22 Just player digging should be needed, but note that you need to send it both for start digging and finished digging 2020-01-27 18:00:51 --> Polarizedions (~polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2020-01-27 18:24:38 <-- ReflxctionDev (~Reflxctio@46.185.201.73) a quitté (Ping timeout: 260 seconds) 2020-01-27 18:33:38 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 240 seconds) 2020-01-27 19:01:19 Not-c468 [mineflayer] rom1504 pushed 3 commits to master [+0/-0/±3] https://git.io/JvmPo 2020-01-27 19:01:21 Not-c468 [mineflayer] IdanHo 16369f1 - Update inventory window slot count The current inventory size we use for initializing the slots array for the player inventory window is 44 for some arbitrary reason, the actual value is 46 (https://wiki.vg/index.php?title=Inventory&oldid=14093#Player_Inventory), and since js arrays have an unfixed length when the normal window_items packet is sent to update the player's 2020-01-27 19:01:21 Not-c468 inventory on login the slots array gets resized to 46 anyways. 2020-01-27 19:01:22 Not-c468 [mineflayer] IdanHo de2b7b6 - change amount of slots based on version 2020-01-27 19:01:24 Not-c468 [mineflayer] rom1504 caccdb2 - Merge pull request #891 from IdanHo/patch-1 Update inventory window slot count 2020-01-27 19:07:11 --> ReflxctionDev (~Reflxctio@46.185.201.73) a rejoint #mcdevs 2020-01-27 19:39:37 <-- jrra (~jrra@hardchats.jrra.zone) a quitté (Quit: quit) 2020-01-27 19:43:58 <-- ReflxctionDev (~Reflxctio@46.185.201.73) a quitté (Ping timeout: 260 seconds) 2020-01-27 19:44:11 --> jrra (~jrra@hardchats.jrra.zone) a rejoint #mcdevs 2020-01-27 19:44:49 --> ReflxctionDev (~Reflxctio@46.185.201.73) a rejoint #mcdevs 2020-01-27 19:45:54 ReflxctionDev I am indeed sending both packets, but the player does not do anything. I tried sending a client held item packet and then successing with the mining packets, with animation packets in between (so it looks exactly like mining normally) but still does not work @+pokechu22 2020-01-27 19:51:11 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-27 19:56:02 timmyRS Is the gamemode of your bot correct? 2020-01-27 20:49:02 <-- Yamakaja (~yamakaja@vps.pub.yamakaja.me) a quitté (Ping timeout: 258 seconds) 2020-01-27 20:49:11 --> PotatOS (~Akkarin@hyperion.torchmind.com) a rejoint #mcdevs 2020-01-27 20:49:20 --> ProximystZNC (~Proximyst@proximyst.com) a rejoint #mcdevs 2020-01-27 20:49:25 <-- Akkarin (~Akkarin@hyperion.torchmind.com) a quitté (Ping timeout: 258 seconds) 2020-01-27 20:49:25 -- PotatOS est maintenant connu sous le nom Akkarin 2020-01-27 20:49:48 <-- timmyRS (~timmyRS@tim.private.hell.sh) a quitté (Ping timeout: 258 seconds) 2020-01-27 20:49:59 --> timmyRS- (~timmyRS@tim.private.hell.sh) a rejoint #mcdevs 2020-01-27 20:50:11 <-- blackdog476 (~notquasse@godx.pw) a quitté (Ping timeout: 258 seconds) 2020-01-27 20:50:11 <-- Proximyst (~Proximyst@proximyst.com) a quitté (Ping timeout: 258 seconds) 2020-01-27 20:50:23 -- timmyRS- est maintenant connu sous le nom timmyRS 2020-01-27 20:50:24 --> blackdog476 (~notquasse@2a01:4f8:200:11e1::2) a rejoint #mcdevs 2020-01-27 20:50:48 --> Yamakaja (~yamakaja@vps.pub.yamakaja.me) a rejoint #mcdevs 2020-01-27 21:00:22 ReflxctionDev I believe so, it should be in survival. I tried in creative but no luck 2020-01-27 21:13:48 Not-c468 [mineflayer] rom1504 pushed 5 commits to master [+0/-0/±6] https://git.io/JvmDk 2020-01-27 21:13:49 Not-c468 [mineflayer] rom1504 d086527 - Merge pull request #876 from PrismarineJS/wvffle/gh-873 Fix #873 2020-01-27 21:17:58 -- ProximystZNC est maintenant connu sous le nom Proximyst 2020-01-27 23:03:21 <-- ReflxctionDev (~Reflxctio@46.185.201.73) a quitté (Remote host closed the connection) 2020-01-28 00:06:43 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 268 seconds) 2020-01-28 00:53:55 <-- Dadido3 (~quassel@p200300D9DF382100F17999554D44FF3E.dip0.t-ipconnect.de) a quitté (Ping timeout: 272 seconds) 2020-01-28 00:54:53 --> Dadido3 (~quassel@p200300D9DF382100C900C0E461E3EF7B.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-28 01:15:54 --> nathfreder (~Thunderbi@hlfxns018gw-134-41-41-26.dhcp-dynamic.fibreop.ns.bellaliant.net) a rejoint #mcdevs 2020-01-28 01:17:45 <-- nathfreder (~Thunderbi@hlfxns018gw-134-41-41-26.dhcp-dynamic.fibreop.ns.bellaliant.net) a quitté (Client Quit) 2020-01-28 01:25:36 --> nathfreder (~Thunderbi@hlfxns018gw-134-41-41-26.dhcp-dynamic.fibreop.ns.bellaliant.net) a rejoint #mcdevs 2020-01-28 01:25:43 nathfreder test 2020-01-28 01:28:30 --> cheakoirccloud (uid293319@gateway/web/irccloud.com/x-apjftlgnqhabdpcv) a rejoint #mcdevs 2020-01-28 01:32:02 nathfreder hi 2020-01-28 01:36:43 <-- nathfreder (~Thunderbi@hlfxns018gw-134-41-41-26.dhcp-dynamic.fibreop.ns.bellaliant.net) a quitté (Quit: nathfreder) 2020-01-28 01:44:03 --> nathfreder (~Thunderbi@hlfxns018gw-134-41-41-26.dhcp-dynamic.fibreop.ns.bellaliant.net) a rejoint #mcdevs 2020-01-28 01:51:21 timmyRS hi nathfreder 2020-01-28 01:53:33 nathfreder this isn't really on topic 2020-01-28 01:53:37 nathfreder im from the pm world 2020-01-28 01:53:59 nathfreder i saw wiki.vg a while ago and it looked like it hadn't been updated in a long time 2020-01-28 01:54:29 timmyRS pm? 2020-01-28 01:54:34 nathfreder yes pocketmine 2020-01-28 01:54:52 nathfreder is wiki.vg like unofficial protocol docs 2020-01-28 01:55:25 timmyRS Ah. Yes it is, and it is up-to-date with Java Edition, although not merged yet: https://wiki.vg/Pre-release_protocol 2020-01-28 01:56:12 nathfreder i see 2020-01-28 01:56:20 nathfreder im looking at bedrock edition 2020-01-28 01:56:43 nathfreder is https://wiki.vg/Pocket_Edition_Protocol_Documentation still updated 2020-01-28 01:56:55 nathfreder it says current but i don't think anything has changed 2020-01-28 01:57:02 timmyRS Last update was in 2016 2020-01-28 01:57:17 nathfreder hm wow 2020-01-28 01:57:21 nathfreder that's a long while ago 2020-01-28 01:57:45 timmyRS wiki.vg and this irc channel are for java edition. There is some other channel here on freenode dedicated to pocket/cashgrab/bedrock edition, but I always forget the name. 2020-01-28 01:57:59 nathfreder oh ok 2020-01-28 01:58:10 nathfreder i didn't know 2020-01-28 01:58:23 nathfreder ill try to find the other channels 2020-01-28 02:11:23 <-- nathfreder (~Thunderbi@hlfxns018gw-134-41-41-26.dhcp-dynamic.fibreop.ns.bellaliant.net) a quitté (Remote host closed the connection) 2020-01-28 02:54:04 --> Polarizedions9 (~polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2020-01-28 02:57:58 <-- Polarizedions (~polarized@unaffiliated/polarizedions) a quitté (Ping timeout: 260 seconds) 2020-01-28 02:57:59 -- Polarizedions9 est maintenant connu sous le nom Polarizedions 2020-01-28 04:04:41 <-- GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a quitté (Quit: Leaving) 2020-01-28 06:45:28 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2020-01-28 06:46:50 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 240 seconds) 2020-01-28 06:46:51 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2020-01-28 08:46:15 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-28 10:40:38 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-01-28 11:42:22 -- l4mRh4X0r est maintenant connu sous le nom l4mRh4X0r_ 2020-01-28 11:49:03 <-- Fenhl (sid30770@gateway/web/irccloud.com/x-dgzegqgsveuynqos) a quitté 2020-01-28 11:49:31 --> Fenhl (sid30770@gateway/web/irccloud.com/x-ncpbzvzljbpzbdpe) a rejoint #mcdevs 2020-01-28 11:49:31 -- Mode #mcdevs [+v Fenhl] par ChanServ 2020-01-28 12:50:20 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-01-28 13:24:38 +SinZ is cashgrab actually one of the variant names? 2020-01-28 13:25:47 --> GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a rejoint #mcdevs 2020-01-28 13:52:05 MiniDigger It's one of the many names for bedrock formerly known as mcpe 2020-01-28 13:52:26 MiniDigger It's called cashgrab because of all the mircotransactions 2020-01-28 14:34:29 KennyTV at least we have the Java edition, or how I like to call it, not Win10 edition https://i.imgur.com/MRHRaah.png 2020-01-28 16:18:05 <-- cheakoirccloud (uid293319@gateway/web/irccloud.com/x-apjftlgnqhabdpcv) a quitté (Quit: Connection closed for inactivity) 2020-01-28 17:32:50 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 240 seconds) 2020-01-28 18:41:05 Not-c468 [minecraft-data] rom1504 pushed 2 commits to master [+0/-0/±12] https://git.io/JvYcm 2020-01-28 18:41:07 Not-c468 [minecraft-data] IdanHo 6794152 - Fix mushrooms' bounding boxes 2020-01-28 18:41:08 Not-c468 [minecraft-data] rom1504 83aac16 - Merge pull request #262 from IdanHo/master Fix mushrooms' bounding boxes 2020-01-28 18:48:27 --> cheakoirccloud (uid293319@gateway/web/irccloud.com/x-bwsewskugcwepcna) a rejoint #mcdevs 2020-01-28 18:58:28 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-28 19:25:13 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-28 22:03:34 <-- bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2020-01-28 22:04:04 --> bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-28 22:14:42 <-- bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2020-01-28 22:15:14 --> bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-28 22:27:40 <-- bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2020-01-28 22:28:37 --> bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-28 23:12:27 <-- bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2020-01-28 23:13:00 --> bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-29 00:47:47 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 272 seconds) 2020-01-29 02:06:47 <-- GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a quitté (Quit: Leaving) 2020-01-29 02:18:08 <-- cheakoirccloud (uid293319@gateway/web/irccloud.com/x-bwsewskugcwepcna) a quitté (Quit: Connection closed for inactivity) 2020-01-29 04:46:47 <-- barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a quitté (Ping timeout: 268 seconds) 2020-01-29 05:40:25 --> WizardCM- (~WizardCM@103.93.232.3) a rejoint #mcdevs 2020-01-29 06:44:24 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2020-01-29 06:46:36 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 265 seconds) 2020-01-29 06:46:36 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2020-01-29 08:45:47 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-29 12:53:16 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-29 14:18:15 <-- barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a quitté (Ping timeout: 268 seconds) 2020-01-29 15:14:59 --> skyrising (~skyrising@89.43.121.249) a rejoint #mcdevs 2020-01-29 16:14:28 <-- bildramer (~bildramer@p200300CF37052B004E76A785D67B7FE7.dip0.t-ipconnect.de) a quitté (Ping timeout: 245 seconds) 2020-01-29 16:14:47 --> bildramer (~bildramer@p200300CF37128200962C7056D5B08BC2.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-01-29 16:16:26 <-- Polarizedions (~polarized@unaffiliated/polarizedions) a quitté (Read error: Connection reset by peer) 2020-01-29 16:16:44 --> Polarizedions (~polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2020-01-29 16:57:17 <-- VADemon (~VADemon@2a01:4f8:212:2f1d:88::41) a quitté (Read error: Connection reset by peer) 2020-01-29 16:57:23 --> VADemon_ (~VADemon@2a01:4f8:212:2f1d:88::41) a rejoint #mcdevs 2020-01-29 17:37:18 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 260 seconds) 2020-01-29 18:29:28 --> millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a rejoint #mcdevs 2020-01-29 19:09:21 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-29 20:32:10 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-29 21:08:20 <-- barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a quitté (Ping timeout: 268 seconds) 2020-01-29 22:16:25 --> bbrabbit (~bbrabbit@campus-008-095.ucdavis.edu) a rejoint #mcdevs 2020-01-29 22:20:30 <-- bbrabbit (~bbrabbit@campus-008-095.ucdavis.edu) a quitté #mcdevs 2020-01-29 22:26:08 tktech timmyRS, this channel and the wiki are not just for the Java edition of the game. "Classic", bedrock, anything is fine. 2020-01-29 22:27:31 timmyRS I'll have to kindly disagree by saying that wiki.vg would not be a good resource for writing modern bedrock software 2020-01-29 22:36:43 tktech Everyone is free to discuss bedrock here, and bedrock content is welcome on the wiki. 2020-01-29 22:37:38 timmyRS I suppose, but I swear there's a dedicated bedrock edition channel here on freenode 2020-01-29 22:41:49 MiniDigger Mcpedevs? 2020-01-29 22:43:19 timmyRS Looks like it, so what about that? 2020-01-29 22:44:03 +ammar2 (why does this page look different than every other, how does this work? https://wiki.vg/MCDevs/rules) 2020-01-29 22:45:12 +ammar2 timmyRS: I think that was started by shoghi to avoid spamming this channel 2020-01-29 22:45:19 +ammar2 since at the time we used to pretty much talk only about java here 2020-01-29 22:46:56 timmyRS Might be the __NOTOC__ at the top? https://wiki.vg/index.php?title=MCDevs/rules&action=edit 2020-01-29 23:47:04 Not-c468 [mineflayer] rom1504 pushed 8 commits to master [+2/-0/±10] https://git.io/JvOqs 2020-01-29 23:47:05 Not-c468 [mineflayer] ImHarvol a7c2133 - Fix 'respawn' event 2020-01-29 23:47:07 Not-c468 [mineflayer] ImHarvol c4ea87d - Fix space for the tests 2020-01-29 23:47:08 Not-c468 [mineflayer] ImHarvol 460dcdd - Run standard --fix 2020-01-29 23:47:10 Not-c468 [mineflayer] ... and 5 more commits. 2020-01-29 23:47:24 Not-c468 [mineflayer] rom1504 pushed 2 commits to master [+0/-0/±2] https://git.io/JvOqG 2020-01-29 23:47:25 Not-c468 [mineflayer] rom1504 6535675 - Merge pull request #903 from PrismarineJS/greenkeeper/mocha-7.0.1 Update mocha to the latest version 🚀 2020-01-29 23:54:00 <-- Pyker (~pyker@hexagon.pyker.net) a quitté (Quit: Leaving) 2020-01-30 00:17:28 +pokechu22 __NOTOC__ just hides the table of contents. That page has CSS class `page-MCDevs_rules` on its body, and there's some CSS that directly targets it in the main stylesheet it seems. Looks like mediawiki automatically adds such classes, but I can't find where that's documented 2020-01-30 00:34:09 --> Pyker (~pyker@hexagon.pyker.net) a rejoint #mcdevs 2020-01-30 00:49:33 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 260 seconds) 2020-01-30 01:09:46 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-30 01:11:48 <-- skyrising (~skyrising@89.43.121.249) a quitté (Remote host closed the connection) 2020-01-30 01:11:56 --> pvpctutorials (~skyrising@89.43.121.249) a rejoint #mcdevs 2020-01-30 01:13:07 -- pvpctutorials est maintenant connu sous le nom skyrising 2020-01-30 03:16:41 <-- barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a quitté (Ping timeout: 265 seconds) 2020-01-30 03:44:47 -- irc : déconnecté du serveur 2020-01-30 03:46:31 --> rom1504 (rom1504@rom1504.fr) a rejoint #mcdevs 2020-01-30 03:46:31 -- Le titre pour #mcdevs est "A haunt for developers working on projects related to Minecraft | Website & Rules: http://wiki.vg/MCDevs/rules | Wiki: http://wiki.vg | Channel is publicly logged as of Feb.25/13 https://logs.rom1504.fr/" 2020-01-30 03:46:31 -- Titre défini par tktech (~tktech@ec2-52-70-105-60.compute-1.amazonaws.com) le jeu., 11 mai 2017 00:28:31 2020-01-30 03:46:31 -- Canal #mcdevs : 109 pseudos (1 op, 15 voices, 93 normaux) 2020-01-30 03:48:11 -- Canal créé le lun., 06 déc. 2010 12:22:40 2020-01-30 04:08:08 --> cheakoirccloud (uid293319@gateway/web/irccloud.com/x-iyjhpdbpgezakkqr) a rejoint #mcdevs 2020-01-30 04:32:19 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-30 04:34:59 <-- millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a quitté (Ping timeout: 268 seconds) 2020-01-30 05:11:22 <-- barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a quitté (Ping timeout: 268 seconds) 2020-01-30 06:10:55 <-- cheakoirccloud (uid293319@gateway/web/irccloud.com/x-iyjhpdbpgezakkqr) a quitté (Quit: Connection closed for inactivity) 2020-01-30 07:03:43 --> bbrabbit (~bbrabbit@campus-008-095.ucdavis.edu) a rejoint #mcdevs 2020-01-30 08:23:58 <-- bbrabbit (~bbrabbit@campus-008-095.ucdavis.edu) a quitté #mcdevs 2020-01-30 08:36:14 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-01-30 10:04:26 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-01-30 12:46:03 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-01-30 14:04:10 <-- deltab (~deltab@95.154.230.49) a quitté (Ping timeout: 268 seconds) 2020-01-30 14:06:39 --> deltab (~deltab@95.154.230.49) a rejoint #mcdevs 2020-01-30 14:50:04 --> barneygale (~barneygal@cpc93782-hari17-2-0-cust1406.20-2.cable.virginm.net) a rejoint #mcdevs 2020-01-30 15:55:32 --> mgrech (~mgrech@62-46-199-140.adsl.highway.telekom.at) a rejoint #mcdevs 2020-01-30 15:57:43 <-- KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a quitté (Quit: o>) 2020-01-30 16:01:11 --> KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a rejoint #mcdevs 2020-01-30 16:01:22 <-- KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a quitté (Client Quit)