2017-09-01 00:19:27 Jan1902 just an assumption 2017-09-01 00:19:51 Jan1902 since the server doesnt care about the length either 2017-09-01 00:19:59 pokechu22 Yea, it needs to be exact 2017-09-01 00:20:03 Jan1902 oh 2017-09-01 00:20:09 Jan1902 lemme find a way to calculate that 2017-09-01 00:20:26 pokechu22 Worth noting that you can use the length to "skip" packets you don't care about just by reading that many bytes 2017-09-01 00:20:39 Jan1902 ah k 2017-09-01 00:20:53 Jan1902 also i need to add a way for my writevarint to return the length 2017-09-01 00:21:00 Jan1902 since its 1-5 bytes 2017-09-01 00:22:14 Jan1902 does the length parameter include itself ? xD 2017-09-01 00:22:25 Jan1902 or just the data and packet id 2017-09-01 00:22:40 timmyRS Just the packet id and data 2017-09-01 00:22:56 Jan1902 yea 2017-09-01 00:22:57 Jan1902 right 2017-09-01 00:23:02 timmyRS A quick look on the wiki could've told you that too: http://wiki.vg/Protocol#Packet_format 2017-09-01 00:23:07 Jan1902 yea 2017-09-01 00:23:18 Jan1902 i saw that too a second later, sorry 2017-09-01 00:28:52 Jan1902 nice, so now im getting an error at least 2017-09-01 00:29:38 timmyRS Yay, errors! 2017-09-01 00:29:46 Jan1902 better than nothing :) 2017-09-01 00:30:04 Jan1902 https://gyazo.com/1e63f15cbbfb3160e09d3990fee04b7a 2017-09-01 00:31:36 timmyRS Enjoy them as they last 2017-09-01 00:31:42 Jan1902 yea 2017-09-01 00:32:36 pokechu22 Looks like the game tried to read 9 bytes starting at index 19 (which would mean 19-28) when there were only 26 2017-09-01 00:32:54 Jan1902 something like that yea 2017-09-01 00:33:18 Jan1902 or atleast it expected 26 bytes but tried even that was not full filled 2017-09-01 00:33:30 Jan1902 might be an error in the length parameter 2017-09-01 00:34:40 pokechu22 Yea 2017-09-01 00:35:06 Jan1902 https://hastebin.com/oxeropudod.cs 2017-09-01 00:35:10 Jan1902 this should be right 2017-09-01 00:37:14 Jan1902 might really be that the guid.tobytearray is not what the client wants 2017-09-01 00:37:40 pokechu22 Oh hold on 2017-09-01 00:38:30 Jan1902 Something dumb i missed ? :P 2017-09-01 00:39:10 pokechu22 Nah, I thought for some reason GUIDs were different from UUIDs and that would account for the different size - but that's not the case 2017-09-01 00:39:17 Jan1902 nah 2017-09-01 00:39:21 Jan1902 36 char longs 2017-09-01 00:40:32 pokechu22 32 if you don't count the dashes, or 16 bytes, or two 64-bit longs 2017-09-01 00:41:07 pokechu22 Ah 2017-09-01 00:41:11 Jan1902 yea, but the wiki says it wants the full 36 2017-09-01 00:41:12 pokechu22 https://msdn.microsoft.com/en-us/library/system.guid.tobytearray(v=vs.110).aspx 2017-09-01 00:41:17 pokechu22 "Note that the order of bytes in the returned byte array is different from the string representation of a Guid value. The order of the beginning four-byte group and the next two two-byte groups is reversed, whereas the order of the last two-byte group and the closing six-byte group is the same. The example provides an illustration. 2017-09-01 00:41:19 pokechu22 " 2017-09-01 00:41:41 Jan1902 i tried using guid.tostring -> ascii bytes now 2017-09-01 00:42:03 Jan1902 but not working either 2017-09-01 00:42:10 Jan1902 different out of bounds error :P 2017-09-01 00:42:26 pokechu22 Right, almost forgot that the handshake packet uses a string instead of two longs 2017-09-01 00:42:48 Jan1902 yea 2017-09-01 00:42:54 Jan1902 it wants string(36) 2017-09-01 00:43:10 pokechu22 You definitely should be sending ToString and not ToByteArray - ToByteArray won't work 2017-09-01 00:43:18 Jan1902 yea 2017-09-01 00:43:47 Jan1902 i tried Encoding.ASCII.GetBytes(uuid.ToString()) and the length of that but still just a different out of bounds error 2017-09-01 00:45:05 pokechu22 Which one this time? 2017-09-01 00:45:23 Jan1902 https://gyazo.com/13a63ec6475074c2cfb8edcd399cf2b8 2017-09-01 00:45:56 pokechu22 How are you calculating your packet length? 2017-09-01 00:46:14 Jan1902 https://www.irccloud.com/pastebin/PJXRWKed/ 2017-09-01 00:47:54 pokechu22 Ah, you're not including the length of the length of the strings - you need VarCoding.LengthAsVarInt(Encoding.ASCII.GetBytes(uuid.ToString()).Length) and VarCoding.LengthAsVarInt(Encoding.ASCII.GetBytes(username).Length); 2017-09-01 00:48:16 Jan1902 ah damn it 2017-09-01 00:48:43 Jan1902 wait na 2017-09-01 00:48:52 Jan1902 the two strings are the last two lines 2017-09-01 00:49:28 pokechu22 Right, you're including the length of the strings... what you're not including is the length of the prefix on those strings 2017-09-01 00:49:38 Jan1902 oh wow 2017-09-01 00:49:41 Jan1902 i hate this xD 2017-09-01 00:49:45 Jan1902 lemme include that real quick 2017-09-01 00:50:31 pokechu22 It's worth noting that most projects write the packet contents to a temporary buffer and calculate the length of that buffer - makes things a lot easier :P (but it's a bit of work to set up at first) 2017-09-01 00:51:01 Jan1902 yea 2017-09-01 00:51:04 Jan1902 i may change that later 2017-09-01 00:51:09 Jan1902 and guess what 2017-09-01 00:51:20 pokechu22 Works now? Or a new error? 2017-09-01 00:51:22 Jan1902 were back to windows error sound and a timeout xD 2017-09-01 00:51:53 pokechu22 That windows error sound is just weird - not sure why that'd happen 2017-09-01 00:51:58 Jan1902 yea 2017-09-01 00:52:07 Jan1902 and im not sure if its minecraft or the server 2017-09-01 00:52:23 Jan1902 but most likely the server 2017-09-01 00:52:31 pokechu22 I'd not expect MC to do it since java doesn't usually make windows sounds 2017-09-01 00:52:39 Jan1902 yea 2017-09-01 00:52:41 Jan1902 but .net does 2017-09-01 00:58:58 pokechu22 What you'd probably want to send now is a few player packets (http://wiki.vg/Protocol_FAQ#.E2.80.A6my_player_isn.27t_spawning.21 - which'd get you the void) and then do keep alives and process chat. Or you can go through the full login sequence (http://wiki.vg/Protocol_FAQ#What.27s_the_normal_login_sequence_for_a_client.3F) though that might not be up to date 2017-09-01 00:59:37 Jan1902 well maybe i should get into the game for that 2017-09-01 01:00:02 Jan1902 im just thinking right now what the client might be expecting/sending whats causing a problem 2017-09-01 01:00:04 pokechu22 Yea - those packets are the ones you need to get into the game I think (there's a trigger for getting rid of the dirt screen - which I think is the move packets) 2017-09-01 01:00:26 Jan1902 ah okay 2017-09-01 01:00:44 Jan1902 and i guess the time out is because there is no keep alive packet 2017-09-01 01:01:31 Jan1902 ima do the join game packet first i guess 2017-09-01 01:01:36 pokechu22 Yea - or rather, no packets at all (keep alive is a convenient packet since it's intended, but any packet (e.g. chat)) would work 2017-09-01 01:01:43 pokechu22 Oh yea you probably should be sending join game and such 2017-09-01 01:02:53 Jan1902 so join or keep alive first? 2017-09-01 01:04:16 pokechu22 Join first, I think - send keep alives every second or so though 2017-09-01 01:04:28 Jan1902 45 seconds 2017-09-01 01:04:35 Jan1902 is the normal delay i think 2017-09-01 01:04:47 Jan1902 well ima do join then 2017-09-01 01:06:08 --> WizardCM (~WizardCM@dsl-58-6-81-236.sa.westnet.com.au) a rejoint #mcdevs 2017-09-01 01:06:30 Jan1902 Any idea how i could generate the entity id ? just a random like 5 char int or so ? 2017-09-01 01:07:34 <-- Hafydd (~Hafydd@unaffiliated/joo) a quitté (Quit: Lost terminal) 2017-09-01 01:07:35 timmyRS I have a counter going up by one for every entity. 2017-09-01 01:07:58 timmyRS Should be fine for small amounts of entities. 2017-09-01 01:08:02 Jan1902 k 2017-09-01 01:08:11 Jan1902 so it doesnt matter how big the int is ? 2017-09-01 01:08:29 Jan1902 do ints need a length prefix aswell ? 2017-09-01 01:08:38 timmyRS At some point everything will overflow 2017-09-01 01:09:49 pokechu22 Vanilla uses a counter - you're not going to have 2 billion entities (nor 4 billion) 2017-09-01 01:09:56 Jan1902 yea right 2017-09-01 01:10:04 --> Hafydd (~Hafydd@unaffiliated/joo) a rejoint #mcdevs 2017-09-01 01:22:53 Jan1902 Added my join packet from the server to the client and "The packet was larger than i expected" 2017-09-01 01:23:02 Jan1902 so maybe now the length is too small xD 2017-09-01 06:07:31 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-09-01 06:07:46 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 255 seconds) 2017-09-01 06:07:46 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-09-01 07:00:15 --> protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-09-01 07:35:41 --> UUID03 (~UUID00@BSN-182-234-218.dynamic.siol.net) a rejoint #mcdevs 2017-09-01 10:10:45 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-01 10:12:01 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-01 10:16:54 <-- protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a quitté (Quit: WeeChat 1.7-rc2) 2017-09-01 10:32:20 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-01 10:33:35 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-01 10:54:14 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-01 10:55:27 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-01 11:49:55 timmyRS Jan1902, ints do not need a length prefix, they are always 4 bytes. 2017-09-01 12:26:46 <-- octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a quitté (Quit: ZNC 1.6.5 - http://znc.in) 2017-09-01 12:28:31 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2017-09-01 12:28:37 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-09-01 12:43:22 --> octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a rejoint #mcdevs 2017-09-01 12:45:10 <-- SpaceManiac (~SpaceMani@c-98-208-52-207.hsd1.ca.comcast.net) a quitté (Ping timeout: 240 seconds) 2017-09-01 12:49:54 --> SpaceManiac (~SpaceMani@c-98-208-52-207.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-09-01 12:50:09 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2017-09-01 13:58:19 <-- benbaptist (~benbaptis@c-73-110-94-64.hsd1.mi.comcast.net) a quitté (Remote host closed the connection) 2017-09-01 13:58:35 --> benbaptist (~benbaptis@c-73-110-94-64.hsd1.mi.comcast.net) a rejoint #mcdevs 2017-09-01 14:53:25 --> Jan3004 (~Jan1902@2a02:2028:638:fa01:cc7b:86bb:7fc4:ab94) a rejoint #mcdevs 2017-09-01 14:55:45 <-- redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a quitté (Quit: redstonehelper_) 2017-09-01 14:58:38 Jan1902 Good, for some reason im still having a problem with the length, and for some reason the client is saying he found extra bytes, but when i increase the length parameter he says he found more extra bytes because the packet was too big, thats the exact opposite of what i think should happen O.o 2017-09-01 15:02:02 timmyRS Jan1902, what packet do you mean? 2017-09-01 15:02:13 Jan1902 the join packet currently 2017-09-01 15:02:26 timmyRS What version is your client? 2017-09-01 15:02:42 Jan1902 1.12.1 2017-09-01 15:03:10 timmyRS Can you maybe wireshark the connection and send the raw bytes? 2017-09-01 15:03:29 Jan1902 i can try, never really worked with wireshark 2017-09-01 15:13:21 Jan1902 i dont find any traffic on the used ports, neither on wireshark nor on windows capture O.o 2017-09-01 15:14:47 timmyRS Do you have the Ncap Loopback Adapter? 2017-09-01 15:14:55 timmyRS It records all trafic from localhost to localhost 2017-09-01 15:15:08 Jan1902 that would be nice 2017-09-01 15:15:23 timmyRS That should've been installed with wireshark 2017-09-01 15:15:29 timmyRS if not, (re)install Ncap 2017-09-01 15:15:45 timmyRS Npcap* 2017-09-01 15:16:52 --> Jan2002 (~Jan1902@2a02:2028:638:fa01:b537:c97b:8cd:ab80) a rejoint #mcdevs 2017-09-01 15:20:11 Jan1902 found some stuff with that 2017-09-01 15:20:21 Jan1902 is 57900 the minecraft port ? 2017-09-01 15:20:49 <-- Jan3004 (~Jan1902@2a02:2028:638:fa01:cc7b:86bb:7fc4:ab94) a quitté (Ping timeout: 255 seconds) 2017-09-01 15:20:57 MiniDigger nope, default is 25565 2017-09-01 15:21:03 Jan1902 for servers 2017-09-01 15:23:17 Jan1902 yea, i found the packets in there, the unique id and that are working 2017-09-01 15:23:50 timmyRS Just use the filter tcp.port = 25565 2017-09-01 15:23:59 timmyRS One of the sides will use that port 2017-09-01 15:24:06 Jan1902 no 2017-09-01 15:24:28 Jan1902 the two ports are in my case: 8888 and 57900 2017-09-01 15:32:24 timmyRS All right then the port your server listens to 2017-09-01 15:32:29 Jan1902 yea 2017-09-01 15:32:34 Jan1902 i found the packets 2017-09-01 15:32:57 timmyRS So could you just send the bytes of the Join Game Packet 2017-09-01 15:32:58 Jan1902 but for some reason the client is also sending packets to the server while the server is sending the join packet and login and stuff 2017-09-01 15:33:06 Jan1902 like in between data parts 2017-09-01 15:37:21 Jan1902 wait, do the data parts need to be sent in one big buffer ? or can i send the stuff one by one like i am doing it ? 2017-09-01 15:48:09 timmyRS You can send it one by one 2017-09-01 15:48:17 timmyRS It's just better for debugging if you send it as one 2017-09-01 15:49:22 Jan1902 ah k 2017-09-01 15:49:40 Jan1902 my problem currently is just that my length calculations are completely off 2017-09-01 15:49:46 Jan1902 by like 17 or so 2017-09-01 15:50:44 Jan1902 might also be because i just convert my string to bytes but it wants a string of length 16 2017-09-01 15:52:13 Jan1902 https://hastebin.com/ucogebukiv.pl 2017-09-01 15:52:19 Jan1902 this has sooo many problems in it 2017-09-01 15:57:21 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-01 15:58:36 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-01 16:10:56 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-01 16:12:11 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-01 16:22:51 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-01 16:24:05 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-01 16:35:14 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-01 16:36:29 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-01 17:05:39 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-01 17:06:43 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-01 18:05:21 --> protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-09-01 18:17:14 <-- octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a quitté (Quit: ZNC 1.6.5 - http://znc.in) 2017-09-01 18:18:32 --> octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a rejoint #mcdevs 2017-09-01 18:49:49 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-09-01 19:14:04 <-- tyteen4a03 (~tyteen4a0@unaffiliated/tyteen4a03) a quitté (Quit: Bleh?) 2017-09-01 19:14:39 --> tyteen4a03 (~tyteen4a0@unaffiliated/tyteen4a03) a rejoint #mcdevs 2017-09-01 19:14:45 <-- tyteen4a03 (~tyteen4a0@unaffiliated/tyteen4a03) a quitté (Client Quit) 2017-09-01 19:15:46 --> tyteen4a03 (~tyteen4a0@unaffiliated/tyteen4a03) a rejoint #mcdevs 2017-09-01 19:52:36 <-- octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a quitté (Quit: ZNC 1.6.5 - http://znc.in) 2017-09-01 21:16:26 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-01 22:45:39 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 240 seconds) 2017-09-01 23:56:21 <-- Xandaros (~xandaros@unaffiliated/xandaros) a quitté (Remote host closed the connection) 2017-09-02 00:45:49 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-09-02 00:47:34 --> Xandaros (~xandaros@unaffiliated/xandaros) a rejoint #mcdevs 2017-09-02 01:45:29 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-09-02 02:08:31 <-- AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a quitté (Read error: Connection reset by peer) 2017-09-02 02:09:47 --> AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a rejoint #mcdevs 2017-09-02 02:20:39 <-- protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a quitté (Ping timeout: 240 seconds) 2017-09-02 02:32:49 --> protryon (~protryon@2601:647:ca00:ab50:6252:6b43:5224:6122) a rejoint #mcdevs 2017-09-02 02:37:27 <-- ferrybig (~ferrybig@mail.ferrybig.me) a quitté (Ping timeout: 246 seconds) 2017-09-02 02:37:35 --> ferrybig (~ferrybig@2a03:b0c0:0:1010::20:c001) a rejoint #mcdevs 2017-09-02 02:38:03 <-- Voltasalt (~Voltasalt@5.101.100.240) a quitté (Ping timeout: 246 seconds) 2017-09-02 02:38:30 <-- Fador (fador@hentai.fi) a quitté (Ping timeout: 240 seconds) 2017-09-02 02:38:39 <-- Prf_Jakob (jakob@volt/developer/jakob) a quitté (Ping timeout: 240 seconds) 2017-09-02 02:38:42 --> Fador (fador@hentai.fi) a rejoint #mcdevs 2017-09-02 02:38:58 <-- Dykam (~Dykam@37.139.10.7) a quitté (Read error: Connection reset by peer) 2017-09-02 02:40:03 --> Prf_Jakob (jakob@volt/developer/jakob) a rejoint #mcdevs 2017-09-02 02:40:03 -- Mode #mcdevs [+v Prf_Jakob] par ChanServ 2017-09-02 02:40:16 --> Dykam (~Dykam@37.139.10.7) a rejoint #mcdevs 2017-09-02 02:40:17 --> Voltasalt (~Voltasalt@5.101.100.240) a rejoint #mcdevs 2017-09-02 02:52:14 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (Ping timeout: 248 seconds) 2017-09-02 02:53:21 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2017-09-02 03:23:52 --> Jan3004 (~Jan1902@2a02:2028:54b:1801:b537:c97b:8cd:ab80) a rejoint #mcdevs 2017-09-02 03:27:23 <-- Jan2002 (~Jan1902@2a02:2028:638:fa01:b537:c97b:8cd:ab80) a quitté (Ping timeout: 252 seconds) 2017-09-02 04:23:36 <-- Jan3004 (~Jan1902@2a02:2028:54b:1801:b537:c97b:8cd:ab80) a quitté (Read error: Connection reset by peer) 2017-09-02 06:30:48 tktech Jawa can now natively parse android APKs ;_; 2017-09-02 06:31:42 timmyRS Java or Jawa? 2017-09-02 06:31:50 Z750 Jawa 2017-09-02 06:31:54 tktech Jawa. 2017-09-02 06:31:55 timmyRS Wait what 2017-09-02 06:32:02 tktech I implemented DEX support since no existing tool could get the encryption key out of an android game apk since every tool like d2j was discarding what it deemed to be irrelevant information. 2017-09-02 06:32:16 timmyRS No, wait, what is Jawa? 2017-09-02 06:32:16 Z750 The sandcrawler houses dex support and some fancy utils 2017-09-02 06:32:57 tktech Jawa is the library that Burger uses to parse the minecraft Jars 2017-09-02 06:33:38 tktech http://jawa.tkte.ch/ 2017-09-02 06:34:12 tktech Z750: sandcrawler? Haven't hear of it, got a link? 2017-09-02 06:34:15 timmyRS Ohh nice, thanks for the explanation. 2017-09-02 06:35:26 tktech I've put way too much effort into answering this reverse engineering question on stackoverflow lol 2017-09-02 06:35:46 tktech All because some guy can't figure out how this custom PNG superset is being parsed 2017-09-02 06:35:56 tktech Except the actual logic is in encrypted lua files inside the apk 2017-09-02 06:36:14 tktech And the key used is hidden in a clever way, tricking existing transcompilers 2017-09-02 06:36:25 tktech moontonAGame1234 is the key ;_; 2017-09-02 06:44:03 Z750 erm... no I dont 2017-09-02 06:44:51 timmyRS Z750, What? 2017-09-02 06:45:38 tktech Z750: OH YOU WERE MAKING A STAR WARS JOKE 2017-09-02 06:45:45 tktech Hur hur sorry it's 1AM here 2017-09-02 06:46:15 tktech God I'm slow 2017-09-02 06:46:43 Z750 yeah nearly 1am here too :) 2017-09-02 06:46:47 Z750 probably my only excuse for that joke 2017-09-02 09:04:10 <-- balrog (~balrog@unaffiliated/balrog) a quitté (Ping timeout: 240 seconds) 2017-09-02 09:05:25 --> balrog (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2017-09-02 09:47:55 <-- protryon (~protryon@2601:647:ca00:ab50:6252:6b43:5224:6122) a quitté (Ping timeout: 246 seconds) 2017-09-02 10:01:00 --> protryon (~protryon@2601:647:ca00:ab50:bb28:66ca:5dc1:4c60) a rejoint #mcdevs 2017-09-02 10:08:23 <-- UUID03 (~UUID00@BSN-182-234-218.dynamic.siol.net) a quitté (Read error: Connection reset by peer) 2017-09-02 10:39:11 <-- kev009 (~kev009@tempe0.bbox.io) a quitté (Read error: Connection reset by peer) 2017-09-02 10:39:36 --> kev009 (~kev009@tempe0.bbox.io) a rejoint #mcdevs 2017-09-02 10:39:36 -- Mode #mcdevs [+v kev009] par ChanServ 2017-09-02 10:39:39 <-- AlJaMa (~AlJaMa@unaffiliated/aljama) a quitté (Quit: No Ping reply in 180 seconds.) 2017-09-02 10:40:54 --> AlJaMa (~AlJaMa@unaffiliated/aljama) a rejoint #mcdevs 2017-09-02 16:10:14 timmyRS I just wrote a chat enhancer and I noticed application-links (like skype:) don't work in minecraft. :( 2017-09-02 16:45:01 Hwiggy not even with the open url action? 2017-09-02 16:45:39 timmyRS That was what I was using. 2017-09-02 16:45:52 Hwiggy Ah that is unfortunate 2017-09-02 16:46:46 Hwiggy Is it because the TextComponents add http:// to the beginning? Or simply how links are opened 2017-09-02 16:48:34 timmyRS I assume how the links are opened, because it didn't even open the "do you want to open this link" dialog. 2017-09-02 16:50:55 MVXA mhhh 2017-09-02 16:51:02 MVXA looks like the client checks if the scheme of the url is http or https 2017-09-02 16:59:21 Hwiggy Oh if its the client's doing then you are out of luck 2017-09-02 17:04:30 timmyRS Well I try to do something like https://dummyredirecter.foo/skype:bar 2017-09-02 17:05:21 timmyRS http://redirect.me/ might do what I want... 2017-09-02 17:47:06 <-- benbaptist (~benbaptis@c-73-110-94-64.hsd1.mi.comcast.net) a quitté (Remote host closed the connection) 2017-09-02 18:14:35 --> Gjum (~Gjum@37.120.15.255) a rejoint #mcdevs 2017-09-02 18:22:11 tktech Translating Dalvik bytecode (register-based) to JVM bytecode (stack-based) is *hard* 2017-09-02 18:28:24 tktech I can get it 95% of the way, and it's pretty understandable. 2017-09-02 18:28:56 tktech To fully support it I'd have to generate stub methods to implement missing opcodes like full polymorphic dispatch 2017-09-02 18:29:16 tktech And the debug stubs are entire DWARF3-based state machines of their own 2017-09-02 18:29:23 tktech Hm, that might not be that bad. 2017-09-02 18:30:36 timmyRS Do I need to feel bad for not understanding this? 2017-09-02 18:31:56 tktech There are only like 3 people in this channel interested in this :P 2017-09-02 18:32:01 tktech It's pretty niche 2017-09-02 18:32:40 timmyRS Maybe instead of saying things like "opcodes like full polymorphic dispatch" you just say something more understandable? 2017-09-02 18:32:54 tktech That is understandable. 2017-09-02 18:33:06 timmyRS That seriously sounds like something you would hear in a pseudo-hacker movie 2017-09-02 18:33:11 tktech If you're missing the fundamental domain knowledge rewording it won't help. 2017-09-02 18:34:35 timmyRS But, may I ask, what is the purpose the bytecode translation? 2017-09-02 18:35:44 tktech You have an Android APK, say the Minecraft mobile app. 2017-09-02 18:36:13 <-- Gjum (~Gjum@37.120.15.255) a quitté (Ping timeout: 248 seconds) 2017-09-02 18:36:32 tktech You want to figure out how its protocol works, so you rip the APK off your device then use a tool like d2j (dex2jar) to convert that APK (in DEX format, Dalvik bytecode) to a Java APK (JVM bytecode). 2017-09-02 18:36:49 tktech At which point you can use the much more mature Java decompilers like JD-GUI to produce human-readable code. 2017-09-02 18:37:32 timmyRS But the existing tools to convert the DEX format to JVM bytecode don't do what you want, so you just make it yourself? 2017-09-02 18:37:39 tktech Correct 2017-09-02 18:37:57 tktech ProGuard is using a fun trick to hide the encryption key in the DEX file in such a way that dex2jar thinks it is never used 2017-09-02 18:38:06 tktech So it discards it during the translation process 2017-09-02 18:38:22 timmyRS Is dex2jar open-source? If yes, why don't you just contribute? 2017-09-02 18:39:21 tktech dex2jar works but is messy, written in java, poorly documented and wildly convoluted at times. 2017-09-02 18:39:30 tktech The minimal documentation that exists for it is all Chinese 2017-09-02 18:40:17 tktech It requires familiarity with the dex format anyways so you might as well start from scratch. 2017-09-02 18:40:23 pokechu22 The links should work theoretically. It's just that client restricts the protocols to only `http` or `https` - if it allowed all of them, there'd be for instance `file` which poses security ricks. 2017-09-02 18:48:55 --> Gjum (~Gjum@37.120.15.255) a rejoint #mcdevs 2017-09-02 19:06:12 Hwiggy pokechu22 http is still risky, as it does not take much to forward a user to a malicious site with auto-executable code 2017-09-02 19:17:10 timmyRS Hwiggy, I think that is why Mojang added the confirmation - https://i.imgur.com/g5GBc7F.png 2017-09-02 19:17:39 Hwiggy But you said you got it to skip the confirmation? 2017-09-02 19:18:17 timmyRS I said it didn't open the confirmation at all, meaning "the link/protocol is not supported" 2017-09-02 19:21:15 Hwiggy Ah I misunderstood 2017-09-02 19:50:47 <-- Gjum (~Gjum@37.120.15.255) a quitté (Ping timeout: 252 seconds) 2017-09-02 20:02:01 --> Gjum (~Gjum@37.120.15.255) a rejoint #mcdevs 2017-09-02 20:02:51 timmyRS I love the totam of undying animation. It'd be so awesome if we could do this for any item. Would make a nice animation for kit selection, etc. :D 2017-09-02 20:59:50 <-- balrog (~balrog@unaffiliated/balrog) a quitté (Ping timeout: 240 seconds) 2017-09-02 21:03:54 --> balrog (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2017-09-02 21:04:27 <-- Gjum (~Gjum@37.120.15.255) a quitté (Ping timeout: 264 seconds) 2017-09-02 21:43:32 --> Gjum (~Gjum@37.120.23.135) a rejoint #mcdevs 2017-09-02 22:07:56 <-- balrog (~balrog@unaffiliated/balrog) a quitté (Quit: Bye) 2017-09-02 22:11:25 --> balrog (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2017-09-02 22:17:17 <-- balrog (~balrog@unaffiliated/balrog) a quitté (Quit: Bye) 2017-09-02 22:20:42 --> balrog (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2017-09-02 22:45:04 <-- Gjum (~Gjum@37.120.23.135) a quitté (Ping timeout: 240 seconds) 2017-09-02 22:54:22 <-- OkAlt (~OkAlt@S0106f0f2498160d3.lb.shawcable.net) a quitté (Quit: OkAlt) 2017-09-02 23:18:53 --> Gjum (~Gjum@37.120.60.196) a rejoint #mcdevs 2017-09-02 23:56:48 <-- Gjum (~Gjum@37.120.60.196) a quitté (Read error: Connection reset by peer) 2017-09-03 00:09:01 --> Gjum (~Gjum@37.120.60.196) a rejoint #mcdevs 2017-09-03 00:19:27 <-- Gjum (~Gjum@37.120.60.196) a quitté (Ping timeout: 246 seconds) 2017-09-03 00:25:27 --> Gjum (~Gjum@37.120.60.196) a rejoint #mcdevs 2017-09-03 01:23:32 <-- Gjum (~Gjum@37.120.60.196) a quitté (Ping timeout: 260 seconds) 2017-09-03 01:34:19 --> Gjum (~Gjum@37.120.60.196) a rejoint #mcdevs 2017-09-03 01:47:09 <-- Gjum (~Gjum@37.120.60.196) a quitté (Ping timeout: 248 seconds) 2017-09-03 02:02:50 --> iso2013 (~iso2013@2601:281:c503:9186:109c:9768:1391:a36) a rejoint #mcdevs 2017-09-03 05:53:32 <-- iso2013 (~iso2013@2601:281:c503:9186:109c:9768:1391:a36) a quitté (Quit: Bye :)) 2017-09-03 09:25:49 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-09-03 10:07:09 --> cra5um (~cra5um@ip220.ip-178-32-53.eu) a rejoint #mcdevs 2017-09-03 10:10:43 <-- cra5um (~cra5um@ip220.ip-178-32-53.eu) a quitté (Quit: Leaving) 2017-09-03 10:11:00 --> cra5um (~cra5um@ip220.ip-178-32-53.eu) a rejoint #mcdevs 2017-09-03 10:13:35 <-- cra5um (~cra5um@ip220.ip-178-32-53.eu) a quitté (Client Quit) 2017-09-03 10:13:50 --> cra5um (~cra5um@ip220.ip-178-32-53.eu) a rejoint #mcdevs 2017-09-03 10:37:15 <-- cra5um (~cra5um@ip220.ip-178-32-53.eu) a quitté (Quit: Leaving) 2017-09-03 10:37:31 --> cra5um (~cra5um@ip220.ip-178-32-53.eu) a rejoint #mcdevs 2017-09-03 12:36:34 <-- cra5um (~cra5um@ip220.ip-178-32-53.eu) a quitté (Ping timeout: 240 seconds) 2017-09-03 14:28:34 <-- Andrio (Andrio@questers-rest.andriocelos.ml) a quitté (Quit: ZNC - http://znc.in) 2017-09-03 16:18:43 --> Andrio (Andrio@questers-rest.andriocelos.ml) a rejoint #mcdevs 2017-09-03 16:59:17 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-03 17:00:30 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-03 17:09:06 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-09-03 17:58:07 <-- bildramer1 (~bildramer@80.106.99.70) a quitté (Ping timeout: 276 seconds) 2017-09-03 18:06:49 --> yorick (~yorick@oftn/oswg-member/yorick) a rejoint #mcdevs 2017-09-03 18:28:31 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (Quit: You're not just a regular moron. You were designed to be a moron.) 2017-09-03 18:28:46 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2017-09-03 18:46:12 --> bildramer (~bildramer@2a02:582:5857:7300:cea:cccb:6bc3:50ed) a rejoint #mcdevs 2017-09-03 21:29:26 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-09-03 21:44:40 <-- protryon (~protryon@2601:647:ca00:ab50:bb28:66ca:5dc1:4c60) a quitté (Quit: WeeChat 1.7-rc2) 2017-09-03 21:45:17 --> protryon (~protryon@2601:647:ca00:ab50:bb28:66ca:5dc1:4c60) a rejoint #mcdevs 2017-09-03 21:56:30 --> cra5um (~cra5um@ip1f10fd06.dynamic.kabel-deutschland.de) a rejoint #mcdevs 2017-09-03 22:00:48 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-09-03 22:02:24 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-09-03 22:06:42 <-- cra5um (~cra5um@ip1f10fd06.dynamic.kabel-deutschland.de) a quitté (Read error: Connection reset by peer) 2017-09-03 22:14:32 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-09-03 22:23:53 --> cra5um (~cra5um@ip1f10fd06.dynamic.kabel-deutschland.de) a rejoint #mcdevs 2017-09-03 22:37:00 <-- cra5um (~cra5um@ip1f10fd06.dynamic.kabel-deutschland.de) a quitté (Read error: Connection reset by peer) 2017-09-03 22:44:16 --> cra5um (~cra5um@ip220.ip-178-32-53.eu) a rejoint #mcdevs 2017-09-03 23:03:58 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-09-03 23:05:26 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-09-03 23:20:13 --> Jailout2000 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2017-09-03 23:21:11 -- Jailout2000 est maintenant connu sous le nom Caaaaarrrrlll 2017-09-03 23:47:04 <-- AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a quitté (Read error: Connection reset by peer) 2017-09-03 23:48:21 --> AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a rejoint #mcdevs 2017-09-04 00:17:26 <-- cra5um (~cra5um@ip220.ip-178-32-53.eu) a quitté (Ping timeout: 252 seconds) 2017-09-04 00:29:39 --> cra5um (~cra5um@ip1f10fd06.dynamic.kabel-deutschland.de) a rejoint #mcdevs 2017-09-04 00:46:44 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-09-04 00:52:50 <-- gentauro (~gentauro@xd520f272.cust.hiper.dk) a quitté (Ping timeout: 240 seconds) 2017-09-04 01:07:42 <-- cra5um (~cra5um@ip1f10fd06.dynamic.kabel-deutschland.de) a quitté (Ping timeout: 248 seconds) 2017-09-04 01:09:21 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-09-04 01:19:45 --> cra5um (~cra5um@ip1f10fd06.dynamic.kabel-deutschland.de) a rejoint #mcdevs 2017-09-04 01:25:47 <-- cra5um (~cra5um@ip1f10fd06.dynamic.kabel-deutschland.de) a quitté (Read error: Connection reset by peer) 2017-09-04 01:29:00 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-09-04 01:31:50 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-09-04 01:34:03 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Client Quit) 2017-09-04 01:42:43 --> cra5um (~cra5um@ip1f10fd06.dynamic.kabel-deutschland.de) a rejoint #mcdevs 2017-09-04 02:02:58 <-- protryon (~protryon@2601:647:ca00:ab50:bb28:66ca:5dc1:4c60) a quitté (Ping timeout: 255 seconds) 2017-09-04 02:15:11 --> protryon (~protryon@2601:647:ca00:ab50:fbd5:2659:fad1:9d5c) a rejoint #mcdevs 2017-09-04 02:19:20 <-- Caaaaarrrrlll (~Jailout20@unaffiliated/jailout2000) a quitté (Quit: Leaving.) 2017-09-04 03:15:07 <-- cra5um (~cra5um@ip1f10fd06.dynamic.kabel-deutschland.de) a quitté (Ping timeout: 240 seconds) 2017-09-04 03:28:16 --> cra5um (~cra5um@ip220.ip-178-32-53.eu) a rejoint #mcdevs 2017-09-04 05:53:39 --> cra5um1 (~cra5um@ip220.ip-178-32-53.eu) a rejoint #mcdevs 2017-09-04 05:56:35 <-- cra5um (~cra5um@ip220.ip-178-32-53.eu) a quitté (Ping timeout: 240 seconds) 2017-09-04 06:45:49 <-- cra5um1 (~cra5um@ip220.ip-178-32-53.eu) a quitté (Ping timeout: 248 seconds) 2017-09-04 07:01:39 Hafydd I like to use "cra5sum" instead of "sha1sum". 2017-09-04 07:03:22 --> gentauro (~gentauro@xd520f27b.cust.hiper.dk) a rejoint #mcdevs 2017-09-04 07:04:13 timmyRS Hafydd, I hope it generates very nice hashes. 2017-09-04 07:04:40 timmyRS The best hashing algo: It outputs the length of the input. 2017-09-04 07:05:21 Hafydd timmyRS: not to be confused with "crap5sum", which just gives the first 5 bits of the input. 2017-09-04 07:06:18 timmyRS The first 5 BITS? Lovely. 2017-09-04 07:07:14 Hafydd It is very space-efficient. 2017-09-04 07:07:22 Hafydd And it aligns well on 5-bit computers. 2017-09-04 07:07:34 <-- gentauro (~gentauro@xd520f27b.cust.hiper.dk) a quitté (Ping timeout: 240 seconds) 2017-09-04 07:08:36 timmyRS Damn, I wish I had a 5-bit computer, they have like so many advantages... 2017-09-04 07:09:24 timmyRS Then I could finally play Minecraft on fluent 0,625 FPS... 2017-09-04 07:10:04 --> gentauro (~gentauro@xd520f243.cust.hiper.dk) a rejoint #mcdevs 2017-09-04 07:35:57 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 260 seconds) 2017-09-04 07:36:37 --> cra5um (~cra5um@ip220.ip-178-32-53.eu) a rejoint #mcdevs 2017-09-04 07:36:37 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-09-04 09:08:48 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-09-04 10:45:49 <-- cra5um (~cra5um@ip220.ip-178-32-53.eu) a quitté (Ping timeout: 248 seconds) 2017-09-04 11:16:09 --> cra5um (~cra5um@ip220.ip-178-32-53.eu) a rejoint #mcdevs 2017-09-04 11:17:06 --> benbaptist (~benbaptis@c-73-110-94-64.hsd1.mi.comcast.net) a rejoint #mcdevs 2017-09-04 12:35:16 --> octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a rejoint #mcdevs 2017-09-04 12:53:52 <-- cra5um (~cra5um@ip220.ip-178-32-53.eu) a quitté (Ping timeout: 260 seconds) 2017-09-04 12:57:52 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-04 13:07:17 --> cra5um (~cra5um@ip220.ip-178-32-53.eu) a rejoint #mcdevs 2017-09-04 13:42:19 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2017-09-04 13:42:51 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-09-04 13:55:33 <-- cra5um (~cra5um@ip220.ip-178-32-53.eu) a quitté (Quit: Leaving) 2017-09-04 14:14:37 <-- PhonicUK (~PhonicUK@pdpc/supporter/student/phonicuk) a quitté (Ping timeout: 240 seconds) 2017-09-04 14:16:59 --> PhonicUK (~PhonicUK@pdpc/supporter/student/phonicuk) a rejoint #mcdevs 2017-09-04 14:25:49 Not-b032 [Charge] Wallbraker pushed 3 commits to master [+2/-2/±4] https://github.com/VoltLang/Charge/compare/1bb7e1992d45...80e92b8f7661 2017-09-04 14:25:51 Not-b032 [Charge] Wallbraker ec47d01 - gfx: Export more symbols 2017-09-04 14:25:52 Not-b032 [Charge] Wallbraker a27ff84 - tui: Add Window and Menu Scene 2017-09-04 14:25:54 Not-b032 [Charge] Wallbraker 80e92b8 - power: Use new tui.MenuScene for menu 2017-09-04 14:50:26 Not-b032 [Charge] Wallbraker pushed 1 commit to master [+0/-0/±3] https://github.com/VoltLang/Charge/compare/80e92b8f7661...8f05a0ab3ecc 2017-09-04 14:50:27 Not-b032 [Charge] Wallbraker 8f05a0a - tui: Try to work around weird casting bug 2017-09-04 15:10:51 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-09-04 15:23:23 -- Hwiggy est maintenant connu sous le nom leCat 2017-09-04 15:23:24 <-- leCat (~Hwiggy@cpe-74-74-87-170.stny.res.rr.com) a quitté (Disconnected by services) 2017-09-04 15:23:51 --> Hwiggy (~Hwiggy@cpe-74-74-87-170.stny.res.rr.com) a rejoint #mcdevs 2017-09-04 15:24:42 -- Hwiggy est maintenant connu sous le nom PixelNet 2017-09-04 15:24:59 -- PixelNet est maintenant connu sous le nom PixelFactions 2017-09-04 15:25:10 -- PixelFactions est maintenant connu sous le nom PixelCreative 2017-09-04 15:25:31 -- PixelCreative est maintenant connu sous le nom xPixL 2017-09-04 15:25:41 -- xPixL est maintenant connu sous le nom Hwiggy 2017-09-04 15:27:37 -- Hwiggy est maintenant connu sous le nom PixelCreative 2017-09-04 15:27:44 -- PixelCreative est maintenant connu sous le nom Hwiggy 2017-09-04 15:29:07 Hwiggy looool 2017-09-04 15:29:10 Hwiggy when you're irc noob 2017-09-04 15:29:23 MiniDigger mmh? 2017-09-04 15:29:33 MiniDigger oooh, the nicks 2017-09-04 15:29:34 MiniDigger lol 2017-09-04 15:29:45 Hwiggy I did not realize I didnt have to nick to them to ungroup 2017-09-04 15:29:55 Hwiggy Until someone in #freenode told me otherwise 😂 2017-09-04 15:30:26 MiniDigger my client just displays "2 joins, 8 nick changes, 1 quit" 2017-09-04 15:30:44 Hwiggy I got ghosted on the quit lol 2017-09-04 16:00:29 -- Hwiggy est maintenant connu sous le nom Hwiggy2point0 2017-09-04 16:00:42 -- Hwiggy2point0 est maintenant connu sous le nom Hwiggy 2017-09-04 16:17:45 <-- Andrio (Andrio@questers-rest.andriocelos.ml) a quitté (Quit: ZNC - http://znc.in) 2017-09-04 16:18:01 --> Andrio (Andrio@questers-rest.andriocelos.ml) a rejoint #mcdevs 2017-09-04 16:29:03 <-- Hwiggy (~Hwiggy@cpe-74-74-87-170.stny.res.rr.com) a quitté (Remote host closed the connection) 2017-09-04 16:29:21 --> Hwiggy (~Hwiggy@cpe-74-74-87-170.stny.res.rr.com) a rejoint #mcdevs 2017-09-04 16:46:10 <-- AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a quitté (Ping timeout: 240 seconds) 2017-09-04 17:29:54 <-- Black_Hole (~BlackHole@p2003007E4F635D002D5ACE16F51AB982.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-04 17:34:05 --> Black-Hole (~BlackHole@p2003007E4F635D0075FAA5627717346E.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-04 17:42:52 --> AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a rejoint #mcdevs 2017-09-04 17:47:52 <-- Krenair (~alex@wikimedia/Krenair) a quitté (Ping timeout: 260 seconds) 2017-09-04 17:55:44 --> Krenair (~alex@wikimedia/Krenair) a rejoint #mcdevs 2017-09-04 19:13:15 <-- mbaxter (~mbax@mcblockit/staff/mbaxter) a quitté (Quit: muahahahahahaha) 2017-09-04 19:36:26 --> mbaxter (~mbax@kitten.institute) a rejoint #mcdevs 2017-09-04 19:36:26 <-- mbaxter (~mbax@kitten.institute) a quitté (Changing host) 2017-09-04 19:36:26 --> mbaxter (~mbax@mcblockit/staff/mbaxter) a rejoint #mcdevs 2017-09-04 20:28:59 --> dexter0_ (~dexter0@2601:647:4502:8c00:58aa:b71c:654d:e459) a rejoint #mcdevs 2017-09-04 20:31:02 --> MasterGberry_ (sid92636@gateway/web/irccloud.com/x-utzqxordgmxwaujx) a rejoint #mcdevs 2017-09-04 20:32:28 --> Tuxel_ (~tux@84.200.81.170) a rejoint #mcdevs 2017-09-04 20:32:29 --> yawkat` (~yawkat@cats.coffee) a rejoint #mcdevs 2017-09-04 20:32:33 --> ghac|away (~ghac@2001:41d0:d:1cb7::) a rejoint #mcdevs 2017-09-04 20:32:37 --> I9hdkill_ (~quassel@2001:41d0:d:1cb7::) a rejoint #mcdevs 2017-09-04 20:33:24 --> gentauro42 (~gentauro@xd520f243.cust.hiper.dk) a rejoint #mcdevs 2017-09-04 20:34:04 --> C4K3_ (~C4K3@0127801301.0.fullrate.ninja) a rejoint #mcdevs 2017-09-04 20:36:53 --> Grum_ (~grum@irc.grum.nl) a rejoint #mcdevs 2017-09-04 20:36:53 -- Mode #mcdevs [+v Grum_] par ChanServ 2017-09-04 20:37:04 --> AndrewPH_ (Butts@omega.classicube.net) a rejoint #mcdevs 2017-09-04 20:37:29 --> Thinkofdname_ (~Think@163.172.178.215) a rejoint #mcdevs 2017-09-04 20:38:05 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (*.net *.split) 2017-09-04 20:38:05 <-- gentauro (~gentauro@xd520f243.cust.hiper.dk) a quitté (*.net *.split) 2017-09-04 20:38:05 <-- dexter0 (~dexter0@2601:647:4502:8c00:2db5:a3b6:1c52:d8ac) a quitté (*.net *.split) 2017-09-04 20:38:05 <-- C4K3 (~C4K3@0127801301.0.fullrate.ninja) a quitté (*.net *.split) 2017-09-04 20:38:05 <-- Thinkofname (~Think@163.172.178.215) a quitté (*.net *.split) 2017-09-04 20:38:06 <-- Tuxel (~tux@84.200.81.170) a quitté (*.net *.split) 2017-09-04 20:38:06 <-- Grum (~grum@irc.grum.nl) a quitté (*.net *.split) 2017-09-04 20:38:06 <-- yawkat (~yawkat@cats.coffee) a quitté (*.net *.split) 2017-09-04 20:38:06 <-- I9hdkill (~quassel@2001:41d0:d:1cb7::) a quitté (*.net *.split) 2017-09-04 20:38:06 <-- AndrewPH (Butts@omega.classicube.net) a quitté (*.net *.split) 2017-09-04 20:38:06 <-- ghac (~ghac@2001:41d0:d:1cb7::) a quitté (*.net *.split) 2017-09-04 20:38:06 <-- MasterGberry (sid92636@gateway/web/irccloud.com/x-ytmwttnswqghkdwa) a quitté (*.net *.split) 2017-09-04 20:38:06 -- Thinkofdname_ est maintenant connu sous le nom Thinkofname 2017-09-04 20:38:07 -- Grum_ est maintenant connu sous le nom Grum 2017-09-04 20:38:08 -- Mode #mcdevs [+v Thinkofname] par ChanServ 2017-09-04 20:38:09 -- dexter0_ est maintenant connu sous le nom dexter0 2017-09-04 20:38:18 -- MasterGberry_ est maintenant connu sous le nom MasterGberry 2017-09-04 20:38:57 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-04 20:40:32 <-- SpaceManiac (~SpaceMani@c-98-208-52-207.hsd1.ca.comcast.net) a quitté (Ping timeout: 260 seconds) 2017-09-04 20:42:34 <-- killme (~killmePI@185.9.253.124) a quitté (Write error: Broken pipe) 2017-09-04 20:42:34 <-- Dykam (~Dykam@37.139.10.7) a quitté (Write error: Broken pipe) 2017-09-04 20:43:08 --> SpaceManiac (~SpaceMani@c-98-208-52-207.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-09-04 20:43:08 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2017-09-04 20:43:24 --> Dykam (~Dykam@37.139.10.7) a rejoint #mcdevs 2017-09-04 20:43:26 --> killme (~killmePI@185.9.253.124) a rejoint #mcdevs 2017-09-04 20:43:30 -- yawkat` est maintenant connu sous le nom yawkat 2017-09-04 20:44:37 <-- unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a quitté (Ping timeout: 240 seconds) 2017-09-04 20:44:51 --> unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a rejoint #mcdevs 2017-09-04 20:46:53 <-- AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a quitté (Ping timeout: 248 seconds) 2017-09-04 20:47:25 --> AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a rejoint #mcdevs 2017-09-04 21:26:47 Not-b032 [Charge] Wallbraker pushed 2 commits to master [+1/-0/±4] https://github.com/VoltLang/Charge/compare/8f05a0ab3ecc...29554e5ab928 2017-09-04 21:26:49 Not-b032 [Charge] Wallbraker 1561421 - tui: Change layout of menu 2017-09-04 21:26:50 Not-b032 [Charge] Wallbraker 29554e5 - power: Refactor App and Menu 2017-09-04 22:28:18 --> aphelion (aphelion@2600:3c00::f03c:91ff:fe61:9eab) a rejoint #mcdevs 2017-09-04 22:29:11 <-- protryon (~protryon@2601:647:ca00:ab50:fbd5:2659:fad1:9d5c) a quitté (Quit: WeeChat 1.7-rc2) 2017-09-04 22:29:22 <-- aphel (aphelion@2600:3c00::f03c:91ff:fe61:9eab) a quitté (Ping timeout: 246 seconds) 2017-09-04 22:29:42 --> protryon (~protryon@2601:647:ca00:ab50:fbd5:2659:fad1:9d5c) a rejoint #mcdevs 2017-09-04 22:41:14 <-- aphelion (aphelion@2600:3c00::f03c:91ff:fe61:9eab) a quitté (Ping timeout: 246 seconds) 2017-09-04 22:49:37 --> aphelion (aphelion@2600:3c00::f03c:91ff:fe61:9eab) a rejoint #mcdevs 2017-09-04 23:09:16 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 255 seconds) 2017-09-04 23:59:47 --> ashka_ (~ashka_@server2.shellgratuit.com) a rejoint #mcdevs 2017-09-05 01:58:38 <-- protryon (~protryon@2601:647:ca00:ab50:fbd5:2659:fad1:9d5c) a quitté (Ping timeout: 240 seconds) 2017-09-05 02:04:08 --> protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-09-05 03:09:23 --> dexter0_ (~dexter0@2601:647:4502:8c00:5889:4660:cb2c:27e1) a rejoint #mcdevs 2017-09-05 03:12:31 <-- dexter0 (~dexter0@2601:647:4502:8c00:58aa:b71c:654d:e459) a quitté (Ping timeout: 246 seconds) 2017-09-05 03:12:31 -- dexter0_ est maintenant connu sous le nom dexter0 2017-09-05 03:30:12 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-09-05 03:35:26 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-09-05 03:47:12 --> cra5um (~cra5um@ip220.ip-178-32-53.eu) a rejoint #mcdevs 2017-09-05 05:37:05 <-- cra5um (~cra5um@ip220.ip-178-32-53.eu) a quitté (Ping timeout: 240 seconds) 2017-09-05 07:50:57 <-- protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a quitté (Quit: WeeChat 1.7-rc2) 2017-09-05 08:20:12 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-09-05 10:26:28 <-- unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a quitté (Quit: Your warranty is now void.) 2017-09-05 10:26:53 --> unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a rejoint #mcdevs 2017-09-05 10:27:12 <-- unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a quitté (Client Quit) 2017-09-05 10:27:34 --> unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a rejoint #mcdevs 2017-09-05 10:28:50 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-05 10:48:36 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 240 seconds) 2017-09-05 11:52:06 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-05 12:09:35 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 240 seconds) 2017-09-05 12:21:37 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-05 13:55:07 Not-b032 [Charge] Wallbraker pushed 15 commits to master [+3/-0/±15] https://github.com/VoltLang/Charge/compare/29554e5ab928...a8e291772303 2017-09-05 13:55:08 Not-b032 [Charge] Wallbraker 9df9306 - sys: Make it possible to create files from memory 2017-09-05 13:55:10 Not-b032 [Charge] Wallbraker 749dc1d - sys: Create sys package 2017-09-05 13:55:11 Not-b032 [Charge] Wallbraker 18aca9e - sys: Make Resource track name seperate 2017-09-05 13:55:13 Not-b032 [Charge] ... and 12 more commits. 2017-09-05 13:57:37 Not-b032 [Charge] Wallbraker pushed 1 commit to master [+0/-0/±1] https://github.com/VoltLang/Charge/compare/a8e291772303...74e32c49e2dd 2017-09-05 13:57:38 Not-b032 [Charge] Wallbraker 74e32c4 - power: Fix module name 2017-09-05 14:06:14 Not-b032 [mineflayer] roblabla pushed 5 commits to master [+5/-1/±75] https://github.com/PrismarineJS/mineflayer/compare/be8bca3e81d8...7284dd436aac 2017-09-05 14:06:16 Not-b032 [mineflayer] iRath96 fbe556d - Merge pull request #1 from PrismarineJS/master Update 2017-09-05 14:06:17 Not-b032 [mineflayer] iRath96 07f38d7 - Support end dimension 2017-09-05 14:06:19 Not-b032 [mineflayer] rom1504 9469355 - fix internal test blockAt : set dimension 2017-09-05 14:06:20 Not-b032 [mineflayer] ... and 2 more commits. 2017-09-05 15:02:41 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 15:03:42 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 15:06:30 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 15:07:44 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 15:10:41 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 15:11:59 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 15:18:16 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 15:19:35 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 15:22:06 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 15:22:45 Xandaros A VarInt could in theory encode 35 bits (5*7) - do I need to handle this or is it safe to assume it won't ever be longer than 32? 2017-09-05 15:23:15 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 15:26:01 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 15:27:15 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 15:33:40 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 15:34:53 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 15:37:16 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 15:38:33 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 15:44:56 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 15:46:13 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 15:47:45 <-- mundus2018 (~mundus201@unaffiliated/mundus2018) a quitté (Excess Flood) 2017-09-05 15:48:04 --> mundus2018 (~mundus201@unaffiliated/mundus2018) a rejoint #mcdevs 2017-09-05 15:48:43 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 15:50:03 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 15:52:36 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 15:53:48 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 16:33:26 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 16:34:43 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 18:02:13 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 18:03:24 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 18:29:50 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 246 seconds) 2017-09-05 18:34:08 <-- octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a quitté (Quit: ZNC 1.6.5 - http://znc.in) 2017-09-05 18:36:52 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 18:38:09 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 18:45:32 <-- bramhaag (~bramhaag@some.random.host.cause.default.is.boring.minidigger.me) a quitté (Remote host closed the connection) 2017-09-05 18:51:14 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 18:51:41 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-09-05 18:52:22 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 18:56:02 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-05 18:57:02 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-05 19:01:58 rom1504 http://wiki.vg/Protocol#VarInt_and_VarLong 2017-09-05 19:10:02 --> bramhaag (~bramhaag@some.random.host.cause.default.is.boring.minidigger.me) a rejoint #mcdevs 2017-09-05 19:11:50 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-05 19:13:05 timmyRS It's interesting how the "Pseudocode to read and write VarInts and VarLongs" is actually Java. 2017-09-05 19:19:11 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 246 seconds) 2017-09-05 19:22:30 <-- bramhaag (~bramhaag@some.random.host.cause.default.is.boring.minidigger.me) a quitté (Quit: The Lounge - https://thelounge.github.io) 2017-09-05 19:22:51 --> bramhaag (~bramhaag@some.random.host.cause.default.is.boring.minidigger.me) a rejoint #mcdevs 2017-09-05 19:43:42 Not-b032 [Charge] Wallbraker pushed 3 commits to master [+0/-0/±4] https://github.com/VoltLang/Charge/compare/74e32c49e2dd...ab5a590c8d45 2017-09-05 19:43:44 Not-b032 [Charge] Wallbraker a28bbbc - sys: Update MemHeader to modern Volt code and implement leak printing 2017-09-05 19:43:45 Not-b032 [Charge] Wallbraker e2c5db8 - tui: Make sure to close Builder 2017-09-05 19:43:47 Not-b032 [Charge] Wallbraker ab5a590 - gfx: Make sure to close Builder 2017-09-05 19:44:32 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-05 20:34:08 +ammar2 that's because java is the least verbose language in the world 2017-09-05 20:34:13 +ammar2 so it looks most like psuedocode 2017-09-05 21:23:49 -- Tuxel_ est maintenant connu sous le nom Tuxel 2017-09-05 21:34:59 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 252 seconds) 2017-09-05 23:26:05 -- C4K3_ est maintenant connu sous le nom C4K3 2017-09-06 00:01:05 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-09-06 01:34:27 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-09-06 01:44:24 <-- Hwiggy (~Hwiggy@cpe-74-74-87-170.stny.res.rr.com) a quitté (Remote host closed the connection) 2017-09-06 01:44:41 --> Hwiggy (~Hwiggy@cpe-74-74-87-170.stny.res.rr.com) a rejoint #mcdevs 2017-09-06 03:59:31 <-- AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a quitté (Read error: Connection reset by peer) 2017-09-06 04:13:08 --> AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a rejoint #mcdevs 2017-09-06 04:43:26 --> OkAlt (~OkAlt@S0106f0f2498160d3.lb.shawcable.net) a rejoint #mcdevs 2017-09-06 08:18:58 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2017-09-06 08:20:53 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-09-06 08:53:50 -- AndrewPH_ est maintenant connu sous le nom AndrewPH 2017-09-06 08:53:51 -- Mode #mcdevs [+v AndrewPH] par ChanServ 2017-09-06 08:55:37 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-09-06 09:21:35 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2017-09-06 09:21:48 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-09-06 10:27:31 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-06 10:28:49 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-06 10:40:25 --> octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a rejoint #mcdevs 2017-09-06 12:27:34 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-06 12:28:47 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-06 13:00:05 <-- redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2017-09-06 13:02:15 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-09-06 14:21:51 Not-b032 [Charge] Wallbraker pushed 3 commits to master [+0/-0/±24] https://github.com/VoltLang/Charge/compare/184fccd7bf51...1e59c447d05e 2017-09-06 14:21:52 Not-b032 [Charge] Wallbraker 2a0baa5 - core: Make CoreWin32 more like SDL 2017-09-06 14:21:54 Not-b032 [Charge] Wallbraker 19c2864 - power: Fix leaks 2017-09-06 14:21:55 Not-b032 [Charge] Wallbraker 1e59c44 - charge: Unify on using reference, destroy and close functions 2017-09-06 15:23:39 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-06 15:24:46 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-06 15:29:12 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-06 15:30:26 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-06 15:34:47 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-06 15:36:01 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-06 15:40:15 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-06 15:41:32 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-06 15:42:47 Xandaros I'm assuming that's a "yes, you can assume that", then? I noticed the pseudocode makes this assumption, but it could have been simplified for clarity 2017-09-06 15:43:43 Xandaros (though, granted, the difference is just the type) 2017-09-06 15:45:49 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-06 15:46:52 Xandaros Actually, using all 35 bits would be more complicated, but I realise now that the output for negative values would be different if it used all 35. Since my implementation matches the sample data on the wiki, I can probably assume it is correct 2017-09-06 15:47:02 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-06 15:49:48 Hafydd It says that -1 is encoded as 0xff 0xff 0xff 0xff 0x0f, which implies that the most significant 3 bits are not used. 2017-09-06 15:50:30 Hafydd And it says, "[...] Minecraft's are the int32 variety." 2017-09-06 15:53:05 rom1504 "java is the least verbose language in the world" what 2017-09-06 15:53:18 rom1504 do you mean "most" instead of "least" ? 2017-09-06 15:54:12 Hafydd VB.NET is more verbose than Java, which is more verbose than Perl, so I can't see how either interpretation is correct. 2017-09-06 15:54:39 rom1504 well java is definitely one of the most verbose language 2017-09-06 15:54:57 rom1504 unlike something like haskell for example 2017-09-06 15:55:01 rom1504 or perl yeah 2017-09-06 15:55:20 rom1504 but pseudocode should be pretty verbose 2017-09-06 15:55:21 Hafydd Are you talking about the language itself, or the identifiers in the standard library and that people typically write? 2017-09-06 15:55:30 Hafydd The langauge itself isn't particularly verbose. 2017-09-06 15:55:51 rom1504 the way people typically write java 2017-09-06 15:56:20 rom1504 for loops, lot of classes to do anything, big class names for exception, etc 2017-09-06 15:56:30 rom1504 little functional style 2017-09-06 15:56:36 Hafydd What is verbose about for loops? 2017-09-06 15:58:06 rom1504 hmm I'm assuming you didn't do any functional language 2017-09-06 15:58:11 rom1504 let me find you an example 2017-09-06 15:59:08 Hafydd I am familiar with alternatives to for loops, but if for loops make Java verbose, then they also make C and most other imperative languages verbose. 2017-09-06 16:00:12 rom1504 https://github.com/jgm/pandoc/blob/master/src/Text/Pandoc/Readers/MediaWiki.hs#L231 2017-09-06 16:00:41 rom1504 yes 2017-09-06 16:00:59 rom1504 imperative languages are more verbose than functional ones 2017-09-06 16:01:16 rom1504 and oriented object languages are more verbose than just imperatives ones 2017-09-06 16:01:19 rom1504 java has it all 2017-09-06 16:01:37 rom1504 also java is a "use classes for everything" language unlike for example c++ 2017-09-06 16:01:43 rom1504 so that makes it even more verbose 2017-09-06 16:01:50 rom1504 want a pair ? create your own class 2017-09-06 16:01:51 rom1504 etc 2017-09-06 16:02:11 rom1504 not saying it's necessarily bad 2017-09-06 16:02:36 rom1504 for example perl is not verbose enough for the kind of thing it is doing, which make it hard to read 2017-09-06 16:03:04 Hafydd I suppose that Java does encourage quite a verbose style of programming (although not quite on the same level as VB.NET, or, in some aspects, Objective C). 2017-09-06 16:03:25 rom1504 but about for loops : if you program functionaly you don't write loops yourself, you use high level functions, so that usually make the code a lot less verbose 2017-09-06 16:03:45 rom1504 yeah I don't know VB.NET and objective c, I'll believe you on that 2017-09-06 16:22:35 <-- samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a quitté (Ping timeout: 240 seconds) 2017-09-06 16:30:23 --> samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a rejoint #mcdevs 2017-09-06 16:36:03 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-06 16:37:14 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-06 16:46:57 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-06 16:48:11 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-06 17:00:51 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-06 17:02:06 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-06 17:11:54 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-06 17:13:11 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-06 17:26:37 +ammar2 rom1504: yeah, it was a joke 2017-09-06 17:38:05 Not-b032 [Charge] Wallbraker pushed 8 commits to master [+1/-0/±106] https://github.com/VoltLang/Charge/compare/1e59c447d05e...3d858ec5aae8 2017-09-06 17:38:06 Not-b032 [Charge] Wallbraker 621a323 - gfx: Export GfxDefaultTarget 2017-09-06 17:38:08 Not-b032 [Charge] Wallbraker 207074f - game: Tidy and make imports more uniform 2017-09-06 17:38:09 Not-b032 [Charge] Wallbraker 99578d2 - gfx: Make charge.gfx be more Volt like 2017-09-06 17:38:11 Not-b032 [Charge] ... and 5 more commits. 2017-09-06 17:40:58 Not-b032 [Charge] Wallbraker pushed 1 commit to master [+0/-0/±1] https://github.com/VoltLang/Charge/compare/3d858ec5aae8...3d166ff6bece 2017-09-06 17:40:59 Not-b032 [Charge] Wallbraker 3d166ff - core: Fix compile after search replace error 2017-09-06 18:25:29 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-09-06 18:32:36 Not-b032 [Charge] Wallbraker pushed 2 commits to master [+0/-0/±18] https://github.com/VoltLang/Charge/compare/3d166ff6bece...99b381fe4a59 2017-09-06 18:32:38 Not-b032 [Charge] Wallbraker 6cb465c - core: Make charge.core more Volt like 2017-09-06 18:32:39 Not-b032 [Charge] Wallbraker 99b381f - charge: Update license years 2017-09-06 18:58:49 Not-b032 [Charge] Wallbraker pushed 1 commit to master [+0/-0/±2] https://github.com/VoltLang/Charge/compare/99b381fe4a59...f947daa8f34d 2017-09-06 18:58:51 Not-b032 [Charge] Wallbraker f947daa - voxel: Fix textures build and import modules in package 2017-09-06 19:14:10 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-06 19:59:51 Not-b032 [Charge] Wallbraker pushed 2 commits to master [+1/-0/±3] https://github.com/VoltLang/Charge/compare/f947daa8f34d...b42e96ab2293 2017-09-06 19:59:52 Not-b032 [Charge] Wallbraker 825778a - sys: Add TimeTracker class 2017-09-06 19:59:54 Not-b032 [Charge] Wallbraker b42e96a - game: Use TimeTracker to measure where we spend time 2017-09-06 20:00:41 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-06 20:01:46 <-- octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a quitté (Quit: ZNC 1.6.5 - http://znc.in) 2017-09-06 20:01:57 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-06 21:11:34 <-- bramhaag (~bramhaag@some.random.host.cause.default.is.boring.minidigger.me) a quitté (Remote host closed the connection) 2017-09-06 21:14:07 --> bramhaag (~bramhaag@some.random.host.cause.default.is.boring.minidigger.me) a rejoint #mcdevs 2017-09-06 21:17:18 <-- AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a quitté (Ping timeout: 252 seconds) 2017-09-06 21:24:31 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 240 seconds) 2017-09-06 23:26:05 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2017-09-06 23:26:25 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-09-07 02:33:31 <-- Jan1902 (uid248963@gateway/web/irccloud.com/x-ambrjgmzhsesdqhg) a quitté (Quit: Connection closed for inactivity) 2017-09-07 03:16:08 --> AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a rejoint #mcdevs 2017-09-07 04:15:13 <-- KnownUnown (KnownUnown@die.in.firrre.com) a quitté (Remote host closed the connection) 2017-09-07 05:45:42 --> KnownUnown (KnownUnown@die.in.firrre.com) a rejoint #mcdevs 2017-09-07 06:01:01 <-- bildramer (~bildramer@2a02:582:5857:7300:cea:cccb:6bc3:50ed) a quitté (Quit: alway rember happy day) 2017-09-07 06:20:07 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-09-07 06:20:39 --> OkAlt_ (~OkAlt@S0106f0f2498160d3.lb.shawcable.net) a rejoint #mcdevs 2017-09-07 06:20:45 <-- redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 248 seconds) 2017-09-07 06:20:46 <-- darngeek (~darngeek@bouncer.pocketmine.net) a quitté (Ping timeout: 248 seconds) 2017-09-07 06:20:46 <-- MrARM (~MrARM@unaffiliated/mrarm) a quitté (Ping timeout: 248 seconds) 2017-09-07 06:20:46 <-- vemacs (~vemacs@unaffiliated/vemacs) a quitté (Ping timeout: 248 seconds) 2017-09-07 06:20:46 <-- Zaneo (~Zaneo@45.55.2.85) a quitté (Ping timeout: 248 seconds) 2017-09-07 06:21:38 --> MrARM (~MrARM@unaffiliated/mrarm) a rejoint #mcdevs 2017-09-07 06:21:50 <-- OkAlt (~OkAlt@S0106f0f2498160d3.lb.shawcable.net) a quitté (Ping timeout: 248 seconds) 2017-09-07 06:22:08 --> darngeek (~darngeek@bouncer.pocketmine.net) a rejoint #mcdevs 2017-09-07 06:22:22 <-- r04r (r04r@unaffiliated/r04r) a quitté (Ping timeout: 248 seconds) 2017-09-07 06:22:23 --> vemacs (~vemacs@jet.fuel.cant.melt.da.nkmem.es) a rejoint #mcdevs 2017-09-07 06:22:23 <-- vemacs (~vemacs@jet.fuel.cant.melt.da.nkmem.es) a quitté (Changing host) 2017-09-07 06:22:23 --> vemacs (~vemacs@unaffiliated/vemacs) a rejoint #mcdevs 2017-09-07 06:25:44 --> Zaneo (~Zaneo@45.55.2.85) a rejoint #mcdevs 2017-09-07 06:25:44 -- Mode #mcdevs [+v Zaneo] par ChanServ 2017-09-07 06:26:36 --> r04r (r04r@unaffiliated/r04r) a rejoint #mcdevs 2017-09-07 06:27:51 <-- WizardCM (~WizardCM@dsl-58-6-81-236.sa.westnet.com.au) a quitté (Ping timeout: 252 seconds) 2017-09-07 06:30:20 --> WizardCM (~WizardCM@dsl-58-6-81-236.sa.westnet.com.au) a rejoint #mcdevs 2017-09-07 06:53:42 <-- gentauro42 (~gentauro@xd520f243.cust.hiper.dk) a quitté (Ping timeout: 252 seconds) 2017-09-07 06:55:20 --> gentauro (~gentauro@xd520f243.cust.hiper.dk) a rejoint #mcdevs 2017-09-07 07:38:16 --> samfty (~quassel@dsl-58-6-81-236.sa.westnet.com.au) a rejoint #mcdevs 2017-09-07 07:53:54 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-07 08:48:51 Tachyon_ so mcp generates project files for eclipse, but not for idea :( ? 2017-09-07 08:51:39 MiniDigger intellij can import them 2017-09-07 08:52:25 Tachyon_ oh 2017-09-07 08:52:29 Tachyon_ I didn;t thinked about that 2017-09-07 08:52:57 Tachyon_ or though :-? 2017-09-07 08:56:32 <-- fl4sh_ (~fl4sh@s3.jsje.de) a quitté (Quit: Too fl4shed to continue) 2017-09-07 08:58:27 --> fl4sh_ (~fl4sh@s3.jsje.de) a rejoint #mcdevs 2017-09-07 09:00:48 <-- fl4sh_ (~fl4sh@s3.jsje.de) a quitté (Client Quit) 2017-09-07 09:02:43 --> fl4sh_ (~fl4sh@s3.jsje.de) a rejoint #mcdevs 2017-09-07 09:08:32 <-- Techcable (znc@irc.techcable.net) a quitté (Remote host closed the connection) 2017-09-07 09:10:52 --> Techcable (znc@irc.techcable.net) a rejoint #mcdevs 2017-09-07 09:11:56 <-- Techcable (znc@irc.techcable.net) a quitté (Client Quit) 2017-09-07 09:12:56 --> Techcable (znc@irc.techcable.net) a rejoint #mcdevs 2017-09-07 09:13:11 <-- Techcable (znc@irc.techcable.net) a quitté (Remote host closed the connection) 2017-09-07 09:13:33 --> Techcable (znc@irc.techcable.net) a rejoint #mcdevs 2017-09-07 09:14:13 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-09-07 09:17:21 <-- Techcable (znc@irc.techcable.net) a quitté (Client Quit) 2017-09-07 09:18:44 --> Techcable (znc@irc.techcable.net) a rejoint #mcdevs 2017-09-07 09:22:37 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 248 seconds) 2017-09-07 11:28:07 --> octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a rejoint #mcdevs 2017-09-07 12:13:14 <-- octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a quitté (Quit: ZNC 1.6.5 - http://znc.in) 2017-09-07 12:14:55 --> octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a rejoint #mcdevs 2017-09-07 12:42:22 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2017-09-07 12:42:28 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-09-07 16:46:55 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-07 18:01:22 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-09-07 18:19:55 --> bildramer (~bildramer@p200300ED83C030003DD278B969E0C175.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-07 19:23:11 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 248 seconds) 2017-09-07 19:56:49 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-07 20:12:16 --> millerti (~millerti@149.125.252.238) a rejoint #mcdevs 2017-09-07 20:12:25 millerti Hi, everyone. 2017-09-07 20:12:53 millerti I have a question about MCP, and from other channels, I was directed here. 2017-09-07 20:13:33 millerti Clearly we only have MCP due to the kindness of Mojang to let it happen, and I want to respect that. Obvious (and according to the stated rules), we are not to share decompiled code, although we obviously post bits of it to Mojira when necessary. But would it be inappropriate if someone happened to see some of the code in a video? I've been thinking about making a video series on debugging in general, and I thought a good intro would be to go 2017-09-07 20:13:33 millerti through some of the work I did on item and block duping. 2017-09-07 20:16:30 MiniDigger well, mcp is way more than just decompiled code, I highly doubt that anyone will care. but IANAL *shrug* 2017-09-07 20:19:18 millerti Well, I'm trying to be ethical, not legal, so to speak. Even if I could prove that I wasn't violating any copyrights, I want to avoid stepping on anyone's toes. Sure, anyone can download MCP, and it's easy to use, but that's kinda not the point. 2017-09-07 20:21:02 MiniDigger well, you are clearly not the first person who does mcp tutorials, if they had a problem with that, they would have told us in the past 2017-09-07 20:24:33 millerti OK, fair point. 2017-09-07 20:24:58 millerti I haven't really looked into MCP tutorials on youtube, though. I should see what they've shown. 2017-09-07 20:26:35 <-- Akkarin (~Akkarin@bnc.dotstart.tv) a quitté (Ping timeout: 240 seconds) 2017-09-07 20:32:24 --> Akkarin (~Akkarin@bnc.dotstart.tv) a rejoint #mcdevs 2017-09-07 20:39:16 <-- Akkarin (~Akkarin@bnc.dotstart.tv) a quitté (Ping timeout: 264 seconds) 2017-09-07 20:41:40 --> Akkarin (~Akkarin@bnc.dotstart.tv) a rejoint #mcdevs 2017-09-07 20:44:44 +ammar2 I don't think having it be shown in a video is problematic at all 2017-09-07 20:45:29 +ammar2 I think you're really only not supposed to upload the whole decompile and MCP transformed code somewhere because then its too easy to obtain 2017-09-07 20:46:14 +ammar2 and having it be super easy to obtain means that now mojang is in a sticky situation where if they allow it to live, they're basically condemning their own copyright 2017-09-07 20:46:43 millerti Gotcha. I just wanted to make sure I was on the right side of caution. 2017-09-07 21:11:10 --> TheNet (~TheNet@38.105.193.98) a rejoint #mcdevs 2017-09-07 21:24:27 <-- Akkarin (~Akkarin@bnc.dotstart.tv) a quitté (Ping timeout: 260 seconds) 2017-09-07 21:27:12 --> Akkarin (~Akkarin@bnc.dotstart.tv) a rejoint #mcdevs 2017-09-07 22:55:25 <-- millerti (~millerti@149.125.252.238) a quitté (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-09-07 23:09:27 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 260 seconds) 2017-09-07 23:45:48 --> millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a rejoint #mcdevs 2017-09-08 00:38:31 Not-b032 [Charge] Wallbraker pushed 1 commit to master [+0/-0/±1] https://github.com/VoltLang/Charge/compare/b42e96ab2293...21ef8a2dda33 2017-09-08 00:38:33 Not-b032 [Charge] Wallbraker 21ef8a2 - sys: Fix module name 2017-09-08 02:02:13 <-- TheNet (~TheNet@38.105.193.98) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2017-09-08 03:44:36 <-- millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a quitté (Read error: Connection reset by peer) 2017-09-08 07:03:15 <-- Aikar (~quassel@wikia/Aikar) a quitté (Read error: Connection reset by peer) 2017-09-08 07:22:13 --> ry60003333 (~ry6000333@c-73-70-94-112.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-09-08 07:32:03 --> Aikar (~quassel@2604:4500::5102) a rejoint #mcdevs 2017-09-08 07:32:03 <-- Aikar (~quassel@2604:4500::5102) a quitté (Changing host) 2017-09-08 07:32:03 --> Aikar (~quassel@wikia/Aikar) a rejoint #mcdevs 2017-09-08 09:37:52 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-08 09:39:54 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-09-08 10:00:19 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 246 seconds) 2017-09-08 12:13:35 <-- Guest45154 (~vemacs@192.3.17.176) a quitté (Ping timeout: 240 seconds) 2017-09-08 12:14:02 --> vemacs|ded (~vemacs@192.3.17.176) a rejoint #mcdevs 2017-09-08 12:20:45 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-08 12:28:57 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 246 seconds) 2017-09-08 13:12:03 <-- octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a quitté (Ping timeout: 240 seconds) 2017-09-08 13:12:18 --> octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a rejoint #mcdevs 2017-09-08 13:34:45 <-- bildramer (~bildramer@p200300ED83C030003DD278B969E0C175.dip0.t-ipconnect.de) a quitté (Quit: alway rember happy day) 2017-09-08 14:21:39 <-- redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a quitté (Quit: redstonehelper_) 2017-09-08 15:14:55 Not-b032 [Charge] Wallbraker pushed 1 commit to master [+0/-0/±12] https://github.com/VoltLang/Charge/compare/21ef8a2dda33...a12cccf29971 2017-09-08 15:14:56 Not-b032 [Charge] Wallbraker a12cccf - charge: Remove *core* symbol work around 2017-09-08 17:03:56 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-09-08 17:46:28 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-08 17:57:47 --> TheNet (~TheNet@38.105.193.98) a rejoint #mcdevs 2017-09-08 18:11:19 Tachyon_ hello. I am trying to activate debug informations. I have this logger config: http://termbin.com/qw98 with this command: http://termbin.com/rqgm , but I this exceptions: http://termbin.com/sql5 . a little help please 2017-09-08 18:15:32 pokechu22 That's unusual. And that doesn't happen when you don't have the logger config? 2017-09-08 18:19:40 pokechu22 That looks like malformed builtin advancement data but I don't get why that would break. Unfortunately I need to head out right now so I can't investigate completely, but I'll be back in a few hours... 2017-09-08 18:20:27 Tachyon_ pokechu22: it doesn't 2017-09-08 18:21:14 --> GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a rejoint #mcdevs 2017-09-08 18:21:25 pokechu22 On a random guess try "java -Dlog4j.configurationFile=log4j2.xml -jar spigot-1.12.1.jar" (that shouldn't make a difference, but who knows, could be a working directory issue) 2017-09-08 18:22:16 Tachyon_ pokechu22: no difference 2017-09-08 18:48:16 <-- TheNet (~TheNet@38.105.193.98) a quitté (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-09-08 18:49:35 Tachyon_ pokechu22: glowstone accept the command, but it does nothing :( 2017-09-08 18:51:26 <-- I9hdkill_ (~quassel@2001:41d0:d:1cb7::) a quitté (Quit: I9hdkill_) 2017-09-08 18:52:04 --> I9hdkill (~quassel@2001:41d0:d:1cb7::) a rejoint #mcdevs 2017-09-08 18:59:10 --> bildramer (~bildramer@p200300ED83C030006C69726584A06DDE.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-08 19:38:29 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-08 19:39:19 --> TheNet (~TheNet@38.105.193.98) a rejoint #mcdevs 2017-09-08 19:39:46 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-08 19:44:23 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-08 19:45:41 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-08 19:48:12 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-08 19:49:21 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-08 19:58:05 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-08 19:59:21 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-08 20:00:59 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-08 20:02:11 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-08 20:06:49 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-08 20:08:03 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-08 20:09:42 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-08 20:10:58 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-08 20:55:27 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 248 seconds) 2017-09-08 20:56:12 <-- bildramer (~bildramer@p200300ED83C030006C69726584A06DDE.dip0.t-ipconnect.de) a quitté (Ping timeout: 252 seconds) 2017-09-08 21:07:43 --> bildramer (~bildramer@p200300ED83C03000B578E7469AA2D688.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-08 21:26:06 <-- octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a quitté (Quit: ZNC 1.6.5 - http://znc.in) 2017-09-08 22:22:43 pokechu22 That crash doesn't make any sense. It's on a line that doesn't contain any code (just a catch block). Line 157 is only on instruction 315; line 158 begins on 317. And instruction 315 is just `astore 12` which stores in local variable slot #12 - that can't throw exceptions as far as I understand... And neither spigot nor craftbukkit touch AdvancementDataWorld 2017-09-08 22:22:44 pokechu22 (ns/net.minecraft.advancements.AdvancementManager). 2017-09-08 22:23:06 pokechu22 Glowstone wouldn't have vanilla's debug logging since it's written from scratch. There might be a different way to enable it though. 2017-09-08 22:54:48 pokechu22 Everything works fine with craftbukkit; I've compiled a fresh build of spigot though and I can reproduce the problem. Very weird... 2017-09-08 22:55:22 pokechu22 (normally I use spigot's craftbukkit for testing and development because I don't want the gameplay differences associated with performance tweaks) 2017-09-08 23:00:39 pokechu22 Alright, evidently spigot _does_ patch AdvancementDataWorld. They just do it in a different way... 2017-09-08 23:06:01 pokechu22 Looks like spigot uses some kind of weird reflection thing to initialize its config. Don't get why that would break with log4j though... 2017-09-08 23:13:13 <-- ashka_ (~ashka_@server2.shellgratuit.com) a quitté 2017-09-08 23:13:25 --> ashka_ (~ashka_@server2.shellgratuit.com) a rejoint #mcdevs 2017-09-08 23:15:32 <-- tktech (~tktech@ec2-52-70-105-60.compute-1.amazonaws.com) a quitté (Ping timeout: 260 seconds) 2017-09-08 23:18:00 pokechu22 Happens on setting the logger level to debug (without changing anything from the builtin config). That doesn't make sense... 2017-09-08 23:23:42 pokechu22 ... ok, spigot has its own way of turning on debug logging, it seems. But it doesn't write to the console, only logs. And of course, NETWORK_PACKETS is still disabled. 2017-09-08 23:50:57 --> tktech (~tktech@ec2-52-70-105-60.compute-1.amazonaws.com) a rejoint #mcdevs 2017-09-09 00:04:46 pokechu22 Ugh, ok... Apparently spigot's debug logging toggle breaks something (but I haven't figured out what, and it's still broken even after commenting out the relevant code). That causes the rest of spigot's config not to be loaded. That in turn causes crashes later, which for some reason are logged (while the actual problem isn't logged). This happens if the root logger's level is set to debug or trace. 2017-09-09 00:05:10 pokechu22 To bypass the problem, set debug to true in spigot.yml, and use this config: https://gist.github.com/Pokechu22/a02c1a608ded1bc68daad72d827f7038 2017-09-09 00:06:40 pokechu22 I don't want to touch the relevant code, but md_5, if you want to look into the problem, it's fairly easy to reproduce 2017-09-09 00:22:42 <-- Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-09-09 00:23:57 --> Dadido3 (~quassel@p5B00A009.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-09 01:23:15 <-- TheNet (~TheNet@38.105.193.98) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2017-09-09 02:02:31 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-09-09 02:57:17 --> millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a rejoint #mcdevs 2017-09-09 03:52:22 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-09-09 03:53:35 <-- GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a quitté (Quit: Leaving) 2017-09-09 05:01:35 <-- KHobbits (khf@2600:3c03::21:1210) a quitté (Remote host closed the connection) 2017-09-09 05:19:27 --> KHobbits (khf@2600:3c03::21:1210) a rejoint #mcdevs 2017-09-09 05:24:39 <-- millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a quitté (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-09-09 06:34:16 --> millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a rejoint #mcdevs 2017-09-09 06:54:03 <-- millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a quitté (Ping timeout: 252 seconds) 2017-09-09 07:20:04 --> protryon (~protryon@2601:647:ca00:ab50:9e4f:d41:2d27:7030) a rejoint #mcdevs 2017-09-09 07:52:53 <-- ry60003333 (~ry6000333@c-73-70-94-112.hsd1.ca.comcast.net) a quitté (Quit: ry60003333) 2017-09-09 10:12:31 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-09-09 12:46:53 --> octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a rejoint #mcdevs 2017-09-09 13:51:00 --> GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a rejoint #mcdevs 2017-09-09 14:44:46 <-- jamierocks (~jamierock@mana.bot.jamiemansfield.me) a quitté (Ping timeout: 246 seconds) 2017-09-09 14:44:46 -- jamieroc- est maintenant connu sous le nom jamierocks 2017-09-09 14:47:01 --> jamierocks_ (~jamierock@mana.bot.jamiemansfield.me) a rejoint #mcdevs 2017-09-09 15:11:36 <-- jamierocks (jamierocks@81.4.107.71) a quitté (Disconnected by services) 2017-09-09 15:11:48 -- jamierocks_ est maintenant connu sous le nom jamierocks 2017-09-09 15:13:10 --> jamieroc- (jamierocks@81.4.107.71) a rejoint #mcdevs 2017-09-09 15:50:10 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-09 15:58:22 <-- ashka_ (~ashka_@server2.shellgratuit.com) a quitté (Remote host closed the connection) 2017-09-09 16:03:04 <-- ashka (~postmaste@pdpc/supporter/active/ashka) a quitté (Ping timeout: 246 seconds) 2017-09-09 16:18:04 --> ashka_ (~ashka_@163.172.17.31) a rejoint #mcdevs 2017-09-09 16:27:09 <-- ashka_ (~ashka_@163.172.17.31) a quitté 2017-09-09 16:28:01 --> ashka_ (~ashka_@server2.shellgratuit.com) a rejoint #mcdevs 2017-09-09 16:59:53 Hwiggy "/give Hwiggy skull 1 3 {SkullOwner:"Hwiggy"}" Causes a skull with a Steve skin to appear in my inventory until it is placed, where the texture updates and breaking it causes it to be proper. Does anyone know why the skull does not have my skin when it is spawned using commands? 2017-09-09 17:13:02 <-- C4K3 (~C4K3@0127801301.0.fullrate.ninja) a quitté (Quit: leaving) 2017-09-09 17:16:37 --> C4K3 (~C4K3@0127801301.0.fullrate.ninja) a rejoint #mcdevs 2017-09-09 18:19:01 --> ashka (~postmaste@server2.shellgratuit.com) a rejoint #mcdevs 2017-09-09 18:19:01 <-- ashka (~postmaste@server2.shellgratuit.com) a quitté (Changing host) 2017-09-09 18:19:01 --> ashka (~postmaste@pdpc/supporter/active/ashka) a rejoint #mcdevs 2017-09-09 18:34:07 <-- GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a quitté (Read error: Connection reset by peer) 2017-09-09 18:40:17 --> GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a rejoint #mcdevs 2017-09-09 18:40:27 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-09-09 18:41:15 <-- GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a quitté (Remote host closed the connection) 2017-09-09 18:41:43 --> GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a rejoint #mcdevs 2017-09-09 18:41:54 <-- GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a quitté (Client Quit) 2017-09-09 19:21:18 --> itsme_ (~textual@x5d858bc2.dyn.telefonica.de) a rejoint #mcdevs 2017-09-09 19:27:06 <-- itsme_ (~textual@x5d858bc2.dyn.telefonica.de) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2017-09-09 20:51:20 --> momothereal (~root@189.ip-144-217-160.net) a rejoint #mcdevs 2017-09-09 21:41:26 <-- jamierocks (~jamierock@mana.bot.jamiemansfield.me) a quitté (Excess Flood) 2017-09-09 21:41:27 -- jamieroc- est maintenant connu sous le nom jamierocks 2017-09-09 21:41:39 --> jamierocks_ (~jamierock@mana.bot.jamiemansfield.me) a rejoint #mcdevs 2017-09-09 22:09:35 --> Jan__ (~quassel@ip5f5be0fe.dynamic.kabel-deutschland.de) a rejoint #mcdevs 2017-09-09 22:11:42 Jan__ Hello, Im having a little problem with my packet length calculation for a custom server. Anyone who might be able to help me ? 2017-09-09 22:12:29 pokechu22 Sure 2017-09-09 22:14:08 Jan__ Ah, long time no see :P 2017-09-09 22:16:49 Jan__ Well im still experiencing the error sound without a reason, and also the error in the client that the packet was bigger than expected 2017-09-09 22:17:11 Jan__ might be because im straight up converting my strings but the protocoll wants a string(16) 2017-09-09 22:45:44 <-- momothereal (~root@189.ip-144-217-160.net) a quitté (Quit: Lost terminal) 2017-09-09 22:52:40 --> momothereal (~root@189.ip-144-217-160.net) a rejoint #mcdevs 2017-09-09 23:18:22 <-- octobyte (~octobyte@81-128-218-100.bt.dtm.cm) a quitté (Quit: ZNC 1.6.5 - http://znc.in) 2017-09-10 00:07:58 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 240 seconds) 2017-09-10 00:20:48 electronicboy Hwiggy texture lookups are handled async, the client just doesn't get updated, if you was to dc and reconnect you'd see the texture on the skull 2017-09-10 01:36:20 <-- Jan__ (~quassel@ip5f5be0fe.dynamic.kabel-deutschland.de) a quitté (Remote host closed the connection) 2017-09-10 02:03:10 <-- Yamakaja (~yamakaja@vps.pub.yamakaja.me) a quitté (Quit: Bai bai) 2017-09-10 02:03:32 --> Yamakaja (~yamakaja@vps.pub.yamakaja.me) a rejoint #mcdevs 2017-09-10 06:05:05 <-- bildramer (~bildramer@p200300ED83C03000B578E7469AA2D688.dip0.t-ipconnect.de) a quitté (Ping timeout: 255 seconds) 2017-09-10 06:06:04 --> bildramer (~bildramer@p2E514F41.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-10 06:08:22 <-- momothereal (~root@189.ip-144-217-160.net) a quitté (Quit: Lost terminal) 2017-09-10 06:46:15 --> momothereal (~root@189.ip-144-217-160.net) a rejoint #mcdevs 2017-09-10 06:46:48 momothereal What is the actual use of the Teleport Confirm packet (serverbound)? What is the server supposed to do with it 2017-09-10 06:49:24 pokechu22 It's intended to prevent movement desync. The server should reject all movement until it receives the teleport confirm. 2017-09-10 06:50:51 pokechu22 Say you teleport the player 100 blocks. If they were already moving, you'll receive movement packets from the old movement before the player received the teleport, and then from the new location - the server should disgard the old movement (after all, it's too far away). The teleport confirm lets you do that. 2017-09-10 06:51:05 pokechu22 Or rather, it lets you know when the client's received the teleport. 2017-09-10 06:56:43 momothereal Okay, so this is for confirmation when the player is forcebly moved by the server (teleportation) only? 2017-09-10 06:59:27 timmyRS Yes 2017-09-10 07:17:38 <-- rtjure (~rtjure@84.40.71.42) a quitté (Ping timeout: 240 seconds) 2017-09-10 07:23:04 --> rtjure (~rtjure@84.40.71.42) a rejoint #mcdevs 2017-09-10 08:00:49 timmyRS Seems there is an "issue" of filtering skins as demonstrated here in german: https://www.youtube.com/watch?v=BGC5oUcK5Z0&feature=youtu.be 2017-09-10 08:01:26 timmyRS The person appended an HTML-Application (.hta) to his skin file and it seems to have been uploaded without filtering 2017-09-10 08:01:57 timmyRS His abuse is as he wants to go to some people and use social engineering to get them to execute this skin file, as it is part of their .minecraft/assets folder after all 2017-09-10 08:19:29 <-- momothereal (~root@189.ip-144-217-160.net) a quitté (Quit: Lost terminal) 2017-09-10 08:33:34 <-- rtjure (~rtjure@84.40.71.42) a quitté (Ping timeout: 248 seconds) 2017-09-10 08:39:28 --> rtjure (~rtjure@84.40.71.42) a rejoint #mcdevs 2017-09-10 09:12:33 pokechu22 timmyRS: Make a private WEB report 2017-09-10 09:13:40 timmyRS I don't think the exploit is RCE-critial and it has already been published in the video... 2017-09-10 09:15:24 pokechu22 WEB still is the right place to report it (and having it on the tracker makes it easier to get it fixed) 2017-09-10 09:20:34 MiniDigger I like how the guy says in the video that if Mojang will not respond to him he will stop reporting bugs, yet he didn't even open an issue in the proper place 2017-09-10 09:21:17 pokechu22 Let me just verify that, actually 2017-09-10 09:21:42 timmyRS it is written in german, but I can verify that's what he says. 2017-09-10 09:24:38 timmyRS I created MC-120601 (as private, of course) explaining the issue 2017-09-10 09:27:56 pokechu22 Yea, I don't see any other reports matching that 2017-09-10 09:28:22 timmyRS I'm surprised, as I think this issue might have been around since the very beginning of skin caching 2017-09-10 09:29:09 timmyRS And as far as I know the uploader already knew as 1.8 came out. 2017-09-10 09:32:06 timmyRS Sorry for calling it MC-... I was in the menu but I must've forgotten to select it... 2017-09-10 09:32:18 pokechu22 Not a problem, easy to move issues 2017-09-10 09:32:46 timmyRS But critical might be a bit of an overstatement 2017-09-10 09:33:36 pokechu22 That is true... one of the weird things about WEB is that it can specify priorities (trivial, minor, major, critical, blocker). Major's probably better. 2017-09-10 09:38:07 pokechu22 Perhaps this could be used as an exuse to recompress/optimize skins when they're uploaded (which IIRC is not done currently) 2017-09-10 09:38:12 pokechu22 *excuse 2017-09-10 09:39:48 timmyRS Yeah I think a bit of compression doesn't take too long and would be a beneficial to everyone 2017-09-10 10:54:27 <-- Skillmo (~Skillmo@149.202.144.172) a quitté (Quit: ZNC - http://znc.in) 2017-09-10 11:40:04 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-09-10 12:28:00 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-10 12:48:07 --> Jan (~quassel@ip5f5be0fe.dynamic.kabel-deutschland.de) a rejoint #mcdevs 2017-09-10 12:48:31 -- Jan est maintenant connu sous le nom Guest57267 2017-09-10 12:48:54 <-- Guest57267 (~quassel@ip5f5be0fe.dynamic.kabel-deutschland.de) a quitté #mcdevs 2017-09-10 12:48:55 --> Guest57267 (~quassel@ip5f5be0fe.dynamic.kabel-deutschland.de) a rejoint #mcdevs 2017-09-10 12:49:16 -- Guest57267 est maintenant connu sous le nom Jan1902 2017-09-10 13:14:54 --> GeorgH93 (~GeorgH93@h081217042019.dyn.cm.kabsi.at) a rejoint #mcdevs 2017-09-10 13:30:30 <-- Jan1902 (~quassel@ip5f5be0fe.dynamic.kabel-deutschland.de) a quitté (Ping timeout: 252 seconds) 2017-09-10 14:06:11 --> Jan1902 (~quassel@ip5f5be0fe.dynamic.kabel-deutschland.de) a rejoint #mcdevs 2017-09-10 14:08:49 timmyRS Um so WEB-873 was marked as duplicate of a newer issue... 2017-09-10 14:21:19 <-- Jan1902 (~quassel@ip5f5be0fe.dynamic.kabel-deutschland.de) a quitté (Remote host closed the connection) 2017-09-10 14:22:54 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 248 seconds) 2017-09-10 14:37:40 <-- bildramer (~bildramer@p2E514F41.dip0.t-ipconnect.de) a quitté (Quit: alway rember happy day) 2017-09-10 15:08:51 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-10 15:11:18 <-- McLive (~McLive@2a05:bec0:20:1::9) a quitté (Ping timeout: 240 seconds) 2017-09-10 15:59:06 --> McLive (~McLive@2a05:bec0:20:1::9) a rejoint #mcdevs 2017-09-10 16:47:12 --> Jan1902 (~quassel@ip5f5be0fe.dynamic.kabel-deutschland.de) a rejoint #mcdevs 2017-09-10 18:14:24 <-- ShaRose (ShaRose@i.am.sharo.se) a quitté (Quit: I appear to have left for some reason.) 2017-09-10 18:17:40 --> ShaRose (ShaRose@i.am.sharo.se) a rejoint #mcdevs 2017-09-10 18:21:40 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-09-10 18:28:46 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 248 seconds) 2017-09-10 19:03:10 --> Tachyon_ (~Tachyon_@95.76.184.120) a rejoint #mcdevs 2017-09-10 19:14:25 Not-b032 [mineflayer] roblabla pushed 6 commits to master [+0/-0/±8] https://github.com/PrismarineJS/mineflayer/compare/7284dd436aac...8a3e0daa7fdb 2017-09-10 19:14:27 Not-b032 [mineflayer] ArcticZeroo 6d85320 - add bot.protocolVersion in Bot#connect 2017-09-10 19:14:28 Not-b032 [mineflayer] ArcticZeroo 8ddd696 - Add dynamic CHAT_LENGTH_LIMIT 2017-09-10 19:14:30 Not-b032 [mineflayer] ArcticZeroo 31607cd - add chatLengthLimit option to api doc 2017-09-10 19:14:31 Not-b032 [mineflayer] ... and 3 more commits. 2017-09-10 19:45:06 <-- samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a quitté (Quit: ZNC - http://znc.in) 2017-09-10 19:48:22 --> samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a rejoint #mcdevs 2017-09-10 19:57:33 Tachyon_ so, I have to do something special to generate eclipse project files in mcp ? I ran decompile, but I can see that the eclipse folder is empty 2017-09-10 20:02:15 --> bildramer (~bildramer@p200300ED83C03000AD482414E4376432.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-09-10 20:16:19 --> winger_sendon (~winger@123.176.13.238) a rejoint #mcdevs 2017-09-10 20:17:17 winger_sendon Hey guys, Just wondering, why's there 13 bits for global palette if only 8 bits are used for encoding block id atm? 2017-09-10 20:17:53 winger_sendon 8+4 = 12, right? 2017-09-10 20:19:47 pokechu22 I've wondered that too in the past. Unfortunately I have no clue... it doesn't make sense really. 2017-09-10 20:20:20 Tachyon_ to fit exactly in longs maybe ? 2017-09-10 20:20:22 pokechu22 Tachyon_: The eclipse folder isn't generated - it's included within the MCP zip. If it's not present, something deleted it 2017-09-10 20:20:34 pokechu22 12 is a nice round number... 13 isn't. 2017-09-10 20:21:07 rom1504 to improve luck 2017-09-10 20:21:35 Tachyon_ to be more interesting ? 2017-09-10 20:21:36 winger_sendon lol... alright, thanks 2017-09-10 20:22:14 Tachyon_ or maybe it is.. but they are all hidden because they start with . 2017-09-10 20:24:55 +ammar2 future expansion? 2017-09-10 20:24:59 Tachyon_ my fault because I didn't tried to open the directory in the ide 2017-09-10 20:25:36 pokechu22 It calculates the log base 2 of the number of state IDs, which is apparently 5365... 2017-09-10 20:26:17 Tachyon_ 12.3894 2017-09-10 20:32:36 pokechu22 Thing is, the highest state ID I see is 4083. Though there is always the flattening... lots more states (e.g. with fire), but it doesn't make sense that it's counting IDs that aren't actually used right now 2017-09-10 20:35:34 pokechu22 Grum: ^ 2017-09-10 21:03:29 rom1504 I propose to fix it by changing the value from 13 to 42 2017-09-10 21:38:09 --> winger_sendon_ (~winger@123.176.15.146) a rejoint #mcdevs 2017-09-10 21:40:26 <-- winger_sendon (~winger@123.176.13.238) a quitté (Ping timeout: 246 seconds) 2017-09-10 21:42:34 <-- winger_sendon_ (~winger@123.176.15.146) a quitté (Client Quit) 2017-09-10 21:43:55 <-- Jan1902 (~quassel@ip5f5be0fe.dynamic.kabel-deutschland.de) a quitté (Remote host closed the connection) 2017-09-10 21:45:02 <-- Tachyon_ (~Tachyon_@95.76.184.120) a quitté (Ping timeout: 248 seconds) 2017-09-11 03:03:44 <-- LaxWasHere (~Lax@2607:5300:60:48d7::) a quitté (Ping timeout: 255 seconds) 2017-09-11 03:06:04 --> LaxWasHere (~Lax@2607:5300:60:48d7::) a rejoint #mcdevs 2017-09-11 03:06:45 --> fw5lthhmly26r7bm (~Admin@nc-65-164-199-233.dhcp.embarqhsd.net) a rejoint #mcdevs 2017-09-11 03:07:17 fw5lthhmly26r7bm do people even chat on here? 2017-09-11 03:07:29 <-- minecrell (~minecrell@irc.minecrell.net) a quitté (Remote host closed the connection) 2017-09-11 03:07:54 --> minecrell (~minecrell@irc.minecrell.net) a rejoint #mcdevs