2016-04-12 15:09:53 rom1504 we managed to make that login sequence works 2016-04-12 15:09:59 rom1504 except the client is ignoring our chunks 2016-04-12 15:10:16 rom1504 but I think it's due to our raknet implementation not having queues yet 2016-04-12 15:10:43 rom1504 (I mean the client spawn into the void currently) 2016-04-12 15:11:21 yawkat yea the raknet part might be the most annoying to implement :/ 2016-04-12 15:11:52 --> Listener_ (5b2ccfae@gateway/web/freenode/ip.91.44.207.174) a rejoint #mcdevs 2016-04-12 15:12:11 rom1504 the client login sequence is just mcpe_login after raknet 2016-04-12 15:12:25 rom1504 well 2016-04-12 15:12:37 rom1504 your description is enough to understand what the login sequence should be 2016-04-12 15:12:48 --> JustASlacker (~icke@213.83.43.18) a rejoint #mcdevs 2016-04-12 15:13:02 rom1504 (and we have a working client login sequence) 2016-04-12 15:13:28 yawkat is it on github? 2016-04-12 15:15:45 yawkat i have some tools that parse a pe packet stream, could look for issues 2016-04-12 15:17:14 rom1504 yes it's there yawkat https://github.com/mhsjlw/pocket-minecraft-protocol/blob/master/examples/server.js 2016-04-12 15:18:37 rom1504 the chunk is currently hardcoded to a chunk an other server sent us, but that shouldn't be a problem afaik 2016-04-12 15:18:48 rom1504 well except the world will be ugly but that's fine 2016-04-12 15:19:14 rom1504 and I tried to tell the client that the radius is 1 2016-04-12 15:19:22 rom1504 not sure if that can work or not 2016-04-12 15:19:53 yawkat how do you run it? 2016-04-12 15:20:26 rom1504 git clone it, then npm install in the main dir, then node server.js 2016-04-12 15:20:44 rom1504 for example node server.js 127.0.0.1 19132 2016-04-12 15:20:47 yawkat okay 2016-04-12 15:21:33 rom1504 (or maybe 0.0.0.0 to be able to connect with an other device) 2016-04-12 15:22:09 yawkat your ConnectedPongPacket looks broken 2016-04-12 15:23:29 yawkat rom1504: yea this is wrong i think https://github.com/mhsjlw/node-raknet/blob/08d886215e4b45c94ccaf59a4dec7240521fce87/data/protocol.json#L540 2016-04-12 15:23:30 rom1504 hmm ? 2016-04-12 15:23:58 yawkat should be two longs 2016-04-12 15:24:07 yawkat at least i think so, i dont know if it's an issue 2016-04-12 15:24:21 rom1504 ah 2016-04-12 15:24:28 <-- Listener_ (5b2ccfae@gateway/web/freenode/ip.91.44.207.174) a quitté (Quit: Page closed) 2016-04-12 15:24:45 rom1504 https://github.com/PocketMine/RakLib/blob/master/protocol/PONG_DataPacket.php 2016-04-12 15:24:59 yawkat (it's probably not causing your chunks to not appear) 2016-04-12 15:25:05 yawkat MCPE is really funny at reading 2016-04-12 15:25:15 yawkat i believe it reads packets that are too short as 0s 2016-04-12 15:25:19 yawkat like, the remaining bytes 2016-04-12 15:25:27 rom1504 I guess 2016-04-12 15:25:30 yawkat so it might just work but it's technically wrong 2016-04-12 15:25:36 rom1504 yeah ok 2016-04-12 15:25:50 hansihe great work! 2016-04-12 15:26:20 yawkat and im seeing no chunk packets 2016-04-12 15:27:13 rom1504 yawkat: well it's in a batch packet 2016-04-12 15:27:48 rom1504 which might be transmitted wrong 2016-04-12 15:28:17 rom1504 but what is weird is our client can connect to our server and parse the chunk packet fine 2016-04-12 15:28:29 rom1504 so it's consistent somehow 2016-04-12 15:29:15 yawkat My analyzer honors order so that might be the issue 2016-04-12 15:29:22 yawkat I'll look at it a bit further 2016-04-12 15:29:26 rom1504 order ? 2016-04-12 15:29:39 yawkat Order channels and such 2016-04-12 15:29:45 rom1504 ah 2016-04-12 15:30:56 rom1504 I think it's likely that the problem comes from our raknet implementation. I mean I know I ignored part of what should be done for raknet 2016-04-12 15:31:40 rom1504 it's also possible the batch packet isn't being sent correctly, but that seems less likely since it's not very complicated 2016-04-12 15:32:07 yawkat yea im not getting the batch at all so i dont think thats it 2016-04-12 15:33:56 rom1504 yawkat: you are sending mcpe_request_chunk_radius, right ? 2016-04-12 15:34:06 yawkat the client is sending that 2016-04-12 15:34:14 rom1504 ah yes you're using the vanilla client ok 2016-04-12 15:34:25 yawkat yea your order index is screwy 2016-04-12 15:34:29 yawkat youre starting at 31 2016-04-12 15:34:31 rom1504 got the network dump with wireshark or something ? 2016-04-12 15:34:31 yawkat not at 0 2016-04-12 15:34:36 yawkat yep 2016-04-12 15:34:50 yawkat i connect, get the pcapng and run it through my processing pipeline 2016-04-12 15:34:57 rom1504 hmm really 31 oO 2016-04-12 15:35:12 yawkat yea https://s.yawk.at/4O2Y 2016-04-12 15:35:20 yawkat i think those are the chunk frames 2016-04-12 15:35:28 yawkat orderIndex=31 2016-04-12 15:35:48 yawkat maybe it's counting incoming packets towards the order channels counter? 2016-04-12 15:35:56 yawkat because the input packet is quite large 2016-04-12 15:37:06 rom1504 hmm I just copied pocketmine without understanding for that part https://github.com/mhsjlw/node-raknet/blob/master/src/client.js#L151 2016-04-12 15:37:21 yawkat rom1504: just count up from 0 2016-04-12 15:37:44 rom1504 https://github.com/PocketMine/RakLib/blob/master/server/Session.php#L280 2016-04-12 15:37:50 rom1504 I do count from 0 2016-04-12 15:37:53 rom1504 well should 2016-04-12 15:39:18 rom1504 oh I know 2016-04-12 15:40:29 --> coolsa (~coolsa@unaffiliated/coolsa) a rejoint #mcdevs 2016-04-12 15:40:36 rom1504 hmm yawkat , orderIndex is there only for reliability 1,3 or 4, correct ? 2016-04-12 15:40:45 yawkat yes 2016-04-12 15:41:04 yawkat well and 7 but ive never seen that in reality 2016-04-12 15:43:08 rom1504 ah yes you made a nice table there http://wiki.vg/Pocket_Edition_Protocol_Documentation#Frame_Set_Packet 2016-04-12 15:44:22 rom1504 I'm going to check my encapsulated packet def 2016-04-12 15:44:29 rom1504 it might be slightly wrong 2016-04-12 15:44:36 rom1504 that would explain this result 2016-04-12 15:44:58 <-- JustASlacker (~icke@213.83.43.18) a quitté (Ping timeout: 246 seconds) 2016-04-12 15:49:45 rom1504 hmm you have "Reliable frame index" and "Sequenced frame index" 2016-04-12 15:49:49 rom1504 I can only see one 2016-04-12 15:51:42 rom1504 "Sequenced frame index" I can't see this yawkat 2016-04-12 15:51:54 rom1504 it's not there https://github.com/PocketMine/RakLib/blob/master/protocol/EncapsulatedPacket.php#L84 2016-04-12 15:52:07 yawkat you dont need sequenced when you arent in a sequenced transmission mode 2016-04-12 15:52:25 yawkat basically, sequenced is a special case of ordered where old packets are discarded (e.g. for movement) 2016-04-12 15:52:35 yawkat i dont know if pe actually uses it 2016-04-12 15:54:08 rom1504 ah 2016-04-12 15:56:41 rom1504 ok then our encapsulated packet impl is correct 2016-04-12 15:57:03 rom1504 I guess we're actually sending the wrong orderIndex value hmm 2016-04-12 15:58:21 rom1504 yawkat: when should the orderIndex be reset ? 2016-04-12 15:58:28 yawkat never 2016-04-12 15:59:33 rom1504 ok 2016-04-12 15:59:43 rom1504 are we using the correct orderChannel ? 2016-04-12 16:00:34 yawkat yes 2016-04-12 16:00:55 rom1504 is that really the first reliability == 3 packet ? 2016-04-12 16:01:08 yawkat let me check 2016-04-12 16:01:16 rom1504 I'd try things, but I can't on this computer 2016-04-12 16:01:34 yawkat yes looks like it, the others are 0x40 2016-04-12 16:02:57 yawkat your channel index is actually *smaller* than the order index 2016-04-12 16:03:01 yawkat which is all kinds of wrong 2016-04-12 16:03:33 --> Black-Hole (~BlackHole@p2003007E4F0F0B002D5ACE16F51AB982.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-12 16:04:29 yawkat rom1504: you arent respecting reliability for non-fragmented packets 2016-04-12 16:04:34 yawkat https://github.com/mhsjlw/node-raknet/blob/master/src/client.js#L186 2016-04-12 16:05:26 rom1504 oh indeed 2016-04-12 16:06:21 yawkat you also need to ensure all fragmented packets are reliable 2016-04-12 16:06:28 yawkat that's a raknet requirement 2016-04-12 16:08:15 yawkat rom1504: yea it works now 2016-04-12 16:08:25 yawkat it's only one chunk and looks weird but it works 2016-04-12 16:08:37 rom1504 oh nice :) 2016-04-12 16:08:50 rom1504 it actually display the chunk in the client ? 2016-04-12 16:09:06 yawkat yea 2016-04-12 16:12:47 rom1504 that's what you changed, right https://github.com/mhsjlw/node-raknet/commit/0e9c0485e6f18ac1335afbd4a5b0a3bedbed4c3a ? 2016-04-12 16:13:46 yawkat yea 2016-04-12 16:14:02 rom1504 okay thanks :) 2016-04-12 16:15:39 rom1504 yawkat: the queues are to deal with deduplication and packet loss right ? 2016-04-12 16:15:47 yawkat yep 2016-04-12 16:16:33 rom1504 ok that's why it kinds of work without them 2016-04-12 16:19:58 rom1504 thanks again, now we can start actually implementing and testing stuff for a server 2016-04-12 16:20:49 rom1504 yawkat what kind of leveldb implementation did you use ? we made a binding for mojang c++ one but it's kind of flaky 2016-04-12 16:21:03 yawkat i do not save chunks 2016-04-12 16:21:14 rom1504 ah ok 2016-04-12 16:21:33 rom1504 they changed the leveldb implementation to replace snappy compression by zlib compression 2016-04-12 16:21:50 rom1504 that means all existing leveldb bindings are not working with mcpe worlds 2016-04-12 16:27:44 --> trevor (~trevor@gradient/cofounder/trevor) a rejoint #mcdevs 2016-04-12 16:39:51 Not-ea7e [wiki] Edit by Pokechu22 to SMP Map Format -> http://tinyurl.com/pjptyh9 2016-04-12 16:45:04 <-- Amaranth (~travis@ubuntu/member/Amaranth) a quitté (Ping timeout: 264 seconds) 2016-04-12 17:13:02 --> PEMapModder (~PEMapModd@014199243132.ctinets.com) a rejoint #mcdevs 2016-04-12 17:15:48 -- Guest41784 est maintenant connu sous le nom PEMapModder_ 2016-04-12 17:22:56 <-- trevor (~trevor@gradient/cofounder/trevor) a quitté (Quit: Sleep) 2016-04-12 17:27:19 Not-ea7e [wiki] Edit by Pokechu22 to SMP Map Format -> http://tinyurl.com/z8o9m93 2016-04-12 17:40:04 <-- Akaibu (uid118096@gateway/web/irccloud.com/x-rkyuykxpewyppqia) a quitté (Quit: Connection closed for inactivity) 2016-04-12 18:00:10 --> trevor (~trevor@gradient/cofounder/trevor) a rejoint #mcdevs 2016-04-12 18:07:17 --> Amaranth (~travis@ubuntu/member/Amaranth) a rejoint #mcdevs 2016-04-12 18:07:18 -- Mode #mcdevs [+v Amaranth] par ChanServ 2016-04-12 18:23:32 <-- DemonWav (~DemonWav@unaffiliated/demonwav) a quitté (Max SendQ exceeded) 2016-04-12 18:24:13 --> DemonWav (~DemonWav@unaffiliated/demonwav) a rejoint #mcdevs 2016-04-12 18:24:52 <-- Amaranth (~travis@ubuntu/member/Amaranth) a quitté (Read error: Connection reset by peer) 2016-04-12 18:33:18 <-- trevor (~trevor@gradient/cofounder/trevor) a quitté (Quit: Sleep) 2016-04-12 18:34:04 --> trevor (~trevor@gradient/cofounder/trevor) a rejoint #mcdevs 2016-04-12 18:50:17 --> JustASlacker (~icke@213.83.43.18) a rejoint #mcdevs 2016-04-12 18:50:41 --> Amaranth (~travis@ubuntu/member/Amaranth) a rejoint #mcdevs 2016-04-12 18:50:41 -- Mode #mcdevs [+v Amaranth] par ChanServ 2016-04-12 19:33:07 Not-ea7e [wiki] Edit by Pokechu22 to SMP Map Format -> http://tinyurl.com/grn2r4q 2016-04-12 19:33:17 <-- m0r13 (~m0r13@2a01:4f8:201:8174:73:0:b00b:135) a quitté (Ping timeout: 260 seconds) 2016-04-12 19:43:31 --> Freax13 (~Frea13@5.147.109.20) a rejoint #mcdevs 2016-04-12 19:45:50 Not-ea7e [wiki] Edit by Pokechu22 to SMP Map Format -> http://tinyurl.com/h9l2fp4 2016-04-12 19:48:00 <-- JustASlacker (~icke@213.83.43.18) a quitté (Ping timeout: 248 seconds) 2016-04-12 19:53:15 Not-ea7e [wiki] Edit by Pokechu22 to SMP Map Format -> http://tinyurl.com/zn34pqq 2016-04-12 20:00:44 Not-ea7e [wiki] Edit by Pokechu22 to SMP Map Format -> http://tinyurl.com/zrhk3au 2016-04-12 20:02:52 Not-ea7e [wiki] Edit by Pokechu22 to SMP Map Format -> http://tinyurl.com/zy9apuw 2016-04-12 20:05:11 --> JustASlacker (~icke@213.83.43.18) a rejoint #mcdevs 2016-04-12 20:06:46 <-- Freax13 (~Frea13@5.147.109.20) a quitté (Quit: Verlassend) 2016-04-12 20:23:26 tktech For the few in here that have used jawa before (and those that haven't) how hard is this to follow? http://www.tkte.ch/2016/04/11/jawa.html 2016-04-12 20:23:50 tktech Trying to ease into tutorials / force myself to "blog" more. 2016-04-12 20:25:38 hansihe Seems fairly readable to me 2016-04-12 20:29:18 Not-ea7e [wiki] Edit by Gjum to SMP Map Format -> http://tinyurl.com/z87vts4 2016-04-12 20:33:39 hansihe to be constructive, I think starting with a really simple script and then expanding on that by introducing new concepts would be more followable 2016-04-12 20:34:07 hansihe Not sure how easy that would be in this case though 2016-04-12 20:34:08 rom1504 I'm finding the line after for i, constant in enumerate(query, 1): a bit hard to understand 2016-04-12 20:34:18 rom1504 might be because I don't know enough python though 2016-04-12 20:35:32 rom1504 the creation and modification examples are clearer 2016-04-12 20:37:01 Gjum it's just normal python formatting, but I agree, it's a bit complex and you might want to create a variable for s inside the loop 2016-04-12 20:38:54 rom1504 ohh 2016-04-12 20:38:58 rom1504 it's just the print formatting 2016-04-12 20:39:05 rom1504 I thought this was doing some parsing 2016-04-12 20:39:27 rom1504 yeah ok then I get it 2016-04-12 20:46:24 tktech hansihe, I kind of tried to do that but the "simple" version ended up being that Hello World! example at the top. 2016-04-12 20:46:36 tktech There's a minimum # of steps you need to build a runnable class 2016-04-12 20:47:21 tktech I'm trying to get rid of some of those steps, there's a branch now that make assemble() smarter and it can calculate max_locals and max_stack for you. 2016-04-12 20:48:29 tktech rom1504, Didn't even think about that, python's string formatting is just "obvious" when you use it all the time. 2016-04-12 20:56:30 tktech [10:25:42] why do so many nbt libraries include the name in the tag and not just have it as a property of a compound tag? 2016-04-12 20:56:30 tktech [10:26:42] maybe the nbt docs kinda state it is that way but it doesnt make a lot of sense to me, choosing that structure over just having compounds keep the names and there being a RootTag structure that is basically Pair 2016-04-12 20:57:11 tktech yawkat, What do you mean? 2016-04-12 20:57:35 yawkat https://github.com/Steveice10/OpenNBT/blob/master/src/main/java/org/spacehq/opennbt/tag/builtin/Tag.java#L15 2016-04-12 20:57:44 yawkat almost every nbt lib ive seen does this 2016-04-12 20:58:02 yawkat make the tag name part of the tag, when it actually makes more sense the other way 2016-04-12 20:58:31 tktech Because they aren't always in a compound. 2016-04-12 20:59:20 tktech When they are, that's simply an implementation detail and can be hidden away. 2016-04-12 20:59:43 tktech https://github.com/TkTech/PyNBT 2016-04-12 20:59:47 yawkat tktech: i am saying they arent always in a compound 2016-04-12 21:00:04 yawkat see, you have the name part of basetag as well 2016-04-12 21:00:18 yawkat why, when lists have no name for their tags? 2016-04-12 21:00:53 tktech Why would I special case that for no noticable gain in performance? 2016-04-12 21:01:07 yawkat special case? 2016-04-12 21:01:13 yawkat im talking about api 2016-04-12 21:02:14 tktech No, that would be a special case. 2016-04-12 21:02:33 tktech 99% of the time a tag is a member of a TAG_Compound. 2016-04-12 21:02:44 tktech Why would I willingly deassociate it from its name? 2016-04-12 21:03:05 yawkat because it has no relation to its name 2016-04-12 21:03:09 tktech That just makes introspection and usable repr()s more complex 2016-04-12 21:03:25 yawkat this one does it right https://github.com/cybertiger/Bukkit-LibNBT/blob/master/libnbt-standalone/src/main/java/org/cyberiantiger/minecraft/nbt/Tag.java 2016-04-12 21:03:47 yawkat compound is a Map[String->Tag] 2016-04-12 21:04:12 yawkat there is no redundancy in compound, no visibility of a sometimes-it's-there name on a tag level 2016-04-12 21:04:46 tktech Right, inspecting a tag in that scenario requires that you continue to track its parent. 2016-04-12 21:05:18 yawkat the tag name is a relation-to-parent-but-not-quite 2016-04-12 21:05:22 Gjum can two tags in a compound have the same name? 2016-04-12 21:05:31 yawkat i dont think so 2016-04-12 21:05:39 yawkat it's a linkedhashmap in mc iirc 2016-04-12 21:05:58 Gjum because that would break when using a map/dict/... 2016-04-12 21:06:08 tktech Gjum, they cannot. If parsing, the last-defined overwrites. 2016-04-12 21:06:15 yawkat most compound implementations use a map 2016-04-12 21:07:06 Gjum maps make the most sense ofc, but the binary representation would theoretically allow duplicates 2016-04-12 21:07:56 tktech It does, yes, but like I said the last-by-order would just overwrite any previous definitions. 2016-04-12 21:10:09 tktech Heh, that libnbt-standalone takes 2000+ lines to do what was 335 in python. 2016-04-12 21:10:50 hansihe https://github.com/McEx/McProtocol/blob/master/lib/nbt.ex 2016-04-12 21:10:51 hansihe :) 2016-04-12 21:11:02 yawkat tktech: because static typing 2016-04-12 21:11:50 tktech hansihe, damn vodoo. 2016-04-12 21:11:58 hansihe haha 2016-04-12 21:12:56 rom1504 https://github.com/PrismarineJS/prismarine-nbt/blob/master/nbt.json less lines :p 2016-04-12 21:13:26 rom1504 alright that's not exactly true, there's some js around 2016-04-12 21:14:25 Gjum let's call the "around"-js part of the toolchain 2016-04-12 21:16:53 tktech Hm, the majority of my line count comes from supporting strong types and transparent support for native python types. 2016-04-12 21:17:14 tktech TAG_List are just normal list() objects, TAG_Compounds are just normal dict() objects. 2016-04-12 21:17:52 yawkat static != strong 2016-04-12 21:18:12 tktech If I removed the types entirely and left you with just a TAG object it would be about ~150. 2016-04-12 21:18:49 tktech yawkat, no idea why you said that? 2016-04-12 21:19:01 yawkat oh, thought you responded to me. 2016-04-12 21:20:17 hansihe mine is fairly inconvenient to use, a integer is {:int, "name", 12} 2016-04-12 21:21:39 hansihe i see what you mean yawcat with removing the name from the tag, but then the data structure would be more complicated 2016-04-12 21:23:44 yawkat if $lang has types equivalent to all the nbt types, which isn't that many, couldnt you just deserialize to a structure of those types then 2016-04-12 21:23:54 hansihe i could 2016-04-12 21:24:03 hansihe but int and long are the same thing in elixir 2016-04-12 21:24:15 hansihe /erlang 2016-04-12 21:24:16 yawkat ah, thats a problem. 2016-04-12 21:24:57 +Thinkofname Tag::Int(12) here for the nbt used in steven, I didn't make the name part of the tag 2016-04-12 21:25:24 +Thinkofname That did require however a special NamedTag(String, Tag) because compounds are named in the protocol 2016-04-12 21:25:42 yawkat yea the outermost tag needs a wrapper 2016-04-12 21:28:55 --> Cxom2 (~Trinoxtio@2601:248:4200:4876:c975:b763:2752:fee3) a rejoint #mcdevs 2016-04-12 21:31:56 tktech Same in Python. I have to type the numerics otherwise they'd all end up as long and double and I'd have no way to reproduce it. 2016-04-12 21:32:41 tktech Er, *Decimal. 2016-04-12 21:32:43 <-- Cxom_ (~Trinoxtio@2601:248:4200:4876:c975:b763:2752:fee3) a quitté (Ping timeout: 268 seconds) 2016-04-12 21:34:51 yawkat im sure itll all be varints soon anyway 2016-04-12 21:36:27 hansihe does java nbt libraries just return a tag and make the user cast it? 2016-04-12 21:36:38 hansihe or are there read methods? 2016-04-12 21:42:44 yawkat usually getString etc 2016-04-12 21:42:50 yawkat thats most of the boilerplate 2016-04-12 22:07:44 rom1504 in js true == 1 == 1.0, so well, kind of have to put the types labels there 2016-04-12 22:08:50 rom1504 (well true can be distinguished actually, but integers are floats) 2016-04-12 22:14:50 --> unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a rejoint #mcdevs 2016-04-12 22:17:47 <-- trevor (~trevor@gradient/cofounder/trevor) a quitté (Ping timeout: 260 seconds) 2016-04-12 22:29:52 +XorBoole rom1504 I thought == was a constant function in js 2016-04-12 22:53:40 --> barneygale (~barneygal@90.197.153.24) a rejoint #mcdevs 2016-04-12 22:53:40 rom1504 :p 2016-04-12 23:19:32 --> Akaibu (uid118096@gateway/web/irccloud.com/x-yfxhtgudbtlmneuf) a rejoint #mcdevs 2016-04-12 23:54:38 --> pokechu22 (322347d5@gateway/web/freenode/ip.50.35.71.213) a rejoint #mcdevs 2016-04-13 00:36:56 --> m0r13 (~m0r13@mail.yellow-ray.de) a rejoint #mcdevs 2016-04-13 01:02:00 <-- ShaRose (ShaRose@i.am.sharo.se) a quitté (Quit: I appear to have left for some reason.) 2016-04-13 01:05:09 --> ShaRose (ShaRose@i.am.sharo.se) a rejoint #mcdevs 2016-04-13 01:35:55 <-- laxask (~lax@unaffiliated/laxask) a quitté (Quit: leaving) 2016-04-13 01:36:24 --> laxask (~lax@unaffiliated/laxask) a rejoint #mcdevs 2016-04-13 01:49:15 <-- Zaneo (~Zaneo@45.55.2.85) a quitté #mcdevs ("Leaving") 2016-04-13 02:07:18 --> Zaneo (~Zaneo@45.55.2.85) a rejoint #mcdevs 2016-04-13 02:07:18 -- Mode #mcdevs [+v Zaneo] par ChanServ 2016-04-13 02:27:01 <-- enchi (enchilado@defocus/yummy/enchilado) a quitté (Ping timeout: 244 seconds) 2016-04-13 02:41:20 --> enchi (enchilado@defocus/yummy/enchilado) a rejoint #mcdevs 2016-04-13 02:42:00 <-- barneygale (~barneygal@90.197.153.24) a quitté (Ping timeout: 244 seconds) 2016-04-13 02:43:29 -- r04r est maintenant connu sous le nom zz_r04r 2016-04-13 03:17:22 rom1504 yawkat: would you know why the client sends me a lot of client disconnect ? 2016-04-13 03:17:34 rom1504 instead of just one 2016-04-13 03:18:31 rom1504 hmm nevermind 2016-04-13 03:25:12 --> sgtbigma1 (~sgtbigman@c-98-220-3-177.hsd1.in.comcast.net) a rejoint #mcdevs 2016-04-13 03:37:38 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2016-04-13 03:40:45 <-- mfj|3 (~kvirc@202.55.151.66) a quitté (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2016-04-13 04:12:34 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 246 seconds) 2016-04-13 04:44:57 <-- pokechu22 (322347d5@gateway/web/freenode/ip.50.35.71.213) a quitté (Ping timeout: 250 seconds) 2016-04-13 04:57:31 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2016-04-13 05:27:44 --> matthewprenger (~matthew@2607:5300:60:1d6::1) a rejoint #mcdevs 2016-04-13 05:32:06 <-- matthewprenger (~matthew@2607:5300:60:1d6::1) a quitté (Quit: Goodbye) 2016-04-13 05:32:24 --> matthewprenger (~matthew@2607:5300:60:1d6::1) a rejoint #mcdevs 2016-04-13 05:37:09 +XorBoole Amaranth please PM me when you are not busy (preferably tommorrowish) 2016-04-13 05:55:42 <-- enchi (enchilado@defocus/yummy/enchilado) a quitté (Ping timeout: 260 seconds) 2016-04-13 06:04:08 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2016-04-13 06:07:01 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 268 seconds) 2016-04-13 06:07:01 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2016-04-13 06:07:23 --> mfj (~kvirc@202.55.151.66) a rejoint #mcdevs 2016-04-13 06:14:23 <-- sgtbigma1 (~sgtbigman@c-98-220-3-177.hsd1.in.comcast.net) a quitté (Quit: leaving) 2016-04-13 06:19:11 --> enchi (enchilado@defocus/yummy/enchilado) a rejoint #mcdevs 2016-04-13 06:47:26 <-- AlJaMa (~quassel@unaffiliated/aljama) a quitté (Remote host closed the connection) 2016-04-13 06:48:11 --> AlJaMa (~quassel@unaffiliated/aljama) a rejoint #mcdevs 2016-04-13 06:49:24 --> AlJaMa_ (~quassel@unaffiliated/aljama) a rejoint #mcdevs 2016-04-13 06:49:29 <-- AlJaMa (~quassel@unaffiliated/aljama) a quitté (Remote host closed the connection) 2016-04-13 06:50:54 -- AlJaMa_ est maintenant connu sous le nom AlJaMa 2016-04-13 07:10:22 <-- JustASlacker (~icke@213.83.43.18) a quitté (Ping timeout: 246 seconds) 2016-04-13 07:22:10 --> Robobozo (60e38e45@gateway/web/freenode/ip.96.227.142.69) a rejoint #mcdevs 2016-04-13 07:33:11 <-- Robobozo (60e38e45@gateway/web/freenode/ip.96.227.142.69) a quitté #mcdevs 2016-04-13 07:45:58 <-- coolsa (~coolsa@unaffiliated/coolsa) a quitté (Ping timeout: 276 seconds) 2016-04-13 07:50:42 --> coolsa (~coolsa@unaffiliated/coolsa) a rejoint #mcdevs 2016-04-13 08:17:13 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 246 seconds) 2016-04-13 08:25:46 <-- coolsa (~coolsa@unaffiliated/coolsa) a quitté (Ping timeout: 268 seconds) 2016-04-13 08:46:19 <-- AlJaMa (~quassel@unaffiliated/aljama) a quitté (Read error: Connection reset by peer) 2016-04-13 08:48:06 --> AlJaMa (~quassel@unaffiliated/aljama) a rejoint #mcdevs 2016-04-13 09:40:23 --> barneygale (~barneygal@90.197.153.24) a rejoint #mcdevs 2016-04-13 09:41:49 -- zz_r04r est maintenant connu sous le nom r04r 2016-04-13 10:17:52 <-- barneygale (~barneygal@90.197.153.24) a quitté (Ping timeout: 248 seconds) 2016-04-13 10:20:17 -- PEMapModder est maintenant connu sous le nom PocketMine 2016-04-13 10:20:25 -- PocketMine est maintenant connu sous le nom PEMapModder 2016-04-13 10:47:49 <-- PEMapModder (~PEMapModd@014199243132.ctinets.com) a quitté (Quit: Leaving) 2016-04-13 11:21:37 <-- Amaranth (~travis@ubuntu/member/Amaranth) a quitté (Read error: Connection reset by peer) 2016-04-13 11:39:56 --> M-ou-se_ (~m-ou.se@m-ou.se) a rejoint #mcdevs 2016-04-13 11:41:04 --> TobiX_ (tobias@zoidberg.org) a rejoint #mcdevs 2016-04-13 11:43:08 --> ughman_ (~chek@cpe-45-46-35-253.maine.res.rr.com) a rejoint #mcdevs 2016-04-13 11:43:23 --> laxask_ (~lax@unaffiliated/laxask) a rejoint #mcdevs 2016-04-13 11:45:07 --> Dykam_ (~Dykam@2a03:b0c0:0:1010::da:5001) a rejoint #mcdevs 2016-04-13 11:47:37 --> balrog_ (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2016-04-13 11:48:00 --> ShaRose_ (ShaRose@i.am.sharo.se) a rejoint #mcdevs 2016-04-13 11:48:05 <-- laxask (~lax@unaffiliated/laxask) a quitté (*.net *.split) 2016-04-13 11:48:05 <-- ShaRose (ShaRose@i.am.sharo.se) a quitté (*.net *.split) 2016-04-13 11:48:05 <-- benbaptist (~benbaptis@c-50-178-138-73.hsd1.in.comcast.net) a quitté (*.net *.split) 2016-04-13 11:48:06 <-- ughman (~chek@cpe-45-46-35-253.maine.res.rr.com) a quitté (*.net *.split) 2016-04-13 11:48:06 <-- balrog (~balrog@unaffiliated/balrog) a quitté (*.net *.split) 2016-04-13 11:48:06 <-- TobiX (tobias@zoidberg.org) a quitté (*.net *.split) 2016-04-13 11:48:06 <-- edk (edk@spy/edk0) a quitté (*.net *.split) 2016-04-13 11:48:06 <-- M-ou-se (~m-ou.se@m-ou.se) a quitté (*.net *.split) 2016-04-13 11:48:06 <-- Dykam (~Dykam@2a03:b0c0:0:1010::da:5001) a quitté (*.net *.split) 2016-04-13 11:48:06 <-- gamingrobot (sid10990@gateway/web/irccloud.com/x-ourbhpdvyyttrxih) a quitté (*.net *.split) 2016-04-13 11:48:06 <-- SupaHam (~SupaHam@2a03:b0c0:1:d0::29c:3001) a quitté (*.net *.split) 2016-04-13 11:48:06 <-- bigpresh (~bigpresh@freenode/sponsor/bigpresh) a quitté (*.net *.split) 2016-04-13 11:49:00 -- ShaRose_ est maintenant connu sous le nom ShaRose 2016-04-13 11:49:41 -- balrog_ est maintenant connu sous le nom balrog 2016-04-13 11:51:37 --> edk (edk@spy/edk0) a rejoint #mcdevs 2016-04-13 11:57:58 --> benbaptist (~benbaptis@c-50-178-138-73.hsd1.in.comcast.net) a rejoint #mcdevs 2016-04-13 11:59:31 --> Amaranth (~travis@ubuntu/member/Amaranth) a rejoint #mcdevs 2016-04-13 11:59:31 -- Mode #mcdevs [+v Amaranth] par ChanServ 2016-04-13 12:00:04 <-- Akaibu (uid118096@gateway/web/irccloud.com/x-yfxhtgudbtlmneuf) a quitté (Quit: Connection closed for inactivity) 2016-04-13 12:10:43 <-- AlphaBlend (~whizkid30@71.118.183.40) a quitté (Read error: Connection reset by peer) 2016-04-13 12:12:14 --> AlphaBlend (~whizkid30@71.118.183.40) a rejoint #mcdevs 2016-04-13 12:17:42 --> bigpresh (~bigpresh@freenode/sponsor/bigpresh) a rejoint #mcdevs 2016-04-13 12:26:17 <-- AlphaBlend (~whizkid30@71.118.183.40) a quitté 2016-04-13 12:26:46 --> AlphaBlend (~whizkid30@71.118.183.40) a rejoint #mcdevs 2016-04-13 12:30:53 -- M-ou-se_ est maintenant connu sous le nom M-ou-se 2016-04-13 12:35:31 <-- Voltasalt (~Voltasalt@ske.pw) a quitté (Ping timeout: 268 seconds) 2016-04-13 12:36:35 --> Voltasalt (~Voltasalt@ske.pw) a rejoint #mcdevs 2016-04-13 12:42:13 Not-237d [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±1] https://git.io/vVhgF 2016-04-13 12:42:14 Not-237d [mineflayer] greenkeeperio-bot 57b28ed - Update minecraft-wrap to version 1.0.1 🚀 (#418) carets are better than tildes 2016-04-13 12:42:15 Not-237d [mineflayer] rom1504 deleted branch greenkeeper-minecraft-wrap-1.0.1 2016-04-13 12:54:26 rom1504 so we got a test auto-updating mcpe server running at rom1504.fr:19132 . You can view one chunk there, it's pretty amazing 2016-04-13 12:54:38 rom1504 :D 2016-04-13 12:55:05 rom1504 sadly it's only auto-updating, not auto-coded 2016-04-13 12:57:41 hansihe it's modern art 2016-04-13 13:19:53 barneygale_ yawkat, for what its worth, I agree with you about the tag naming thing 2016-04-13 13:20:35 barneygale_ my (really shitty, decode-only) nbt lib's Tag base class doesn't have a name attribute https://github.com/barneygale/quarry/blob/develop/quarry/utils/nbt.py 2016-04-13 13:22:03 yawkat :) 2016-04-13 13:24:34 barneygale_ oh actually it looks like it supports encoding too 2016-04-13 13:24:37 barneygale_ i forgot about that ;D 2016-04-13 13:33:39 <-- sgtbigman (~sgtbigman@159.203.142.8) a quitté (Quit: ZNC 1.6.2 - http://znc.in) 2016-04-13 13:34:20 --> jargan (jast@zoidberg.org) a rejoint #mcdevs 2016-04-13 13:35:29 <-- balrog (~balrog@unaffiliated/balrog) a quitté (Ping timeout: 264 seconds) 2016-04-13 13:36:05 <-- ashka (~postmaste@pdpc/supporter/active/ashka) a quitté (Ping timeout: 264 seconds) 2016-04-13 13:36:05 <-- clonejo (~clonejo@shakik.de) a quitté (Ping timeout: 264 seconds) 2016-04-13 13:36:22 --> clonejo (~clonejo@shakik.de) a rejoint #mcdevs 2016-04-13 13:36:42 <-- programmerq (~jefferya@unaffiliated/programmerq) a quitté (Ping timeout: 264 seconds) 2016-04-13 13:37:17 <-- Aikar (~Aikar@wikia/Aikar) a quitté (Ping timeout: 264 seconds) 2016-04-13 13:37:18 <-- jast (jast@zoidberg.org) a quitté (Ping timeout: 264 seconds) 2016-04-13 13:37:18 <-- gabizou (~gabizou@irc.spongepowered.org) a quitté (Ping timeout: 264 seconds) 2016-04-13 13:41:56 --> Aikar (~Aikar@wikia/Aikar) a rejoint #mcdevs 2016-04-13 13:42:14 --> ashka (~postmaste@pdpc/supporter/active/ashka) a rejoint #mcdevs 2016-04-13 13:42:30 --> balrog (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2016-04-13 13:42:30 --> gabizou (~gabizou@irc.spongepowered.org) a rejoint #mcdevs 2016-04-13 13:46:04 -- jargan est maintenant connu sous le nom jast 2016-04-13 13:50:47 --> programmerq (~jefferya@unaffiliated/programmerq) a rejoint #mcdevs 2016-04-13 13:58:47 yawkat what do you people use for reversing PE? i used ida on the android binary til now, is there something nicer? 2016-04-13 14:18:00 rom1504 I use reading pocketmine code. It isn't nice 2016-04-13 14:20:28 yawkat ill take assembly over php any day :D 2016-04-13 14:20:31 yawkat (not really) 2016-04-13 14:20:49 dx maybe try radare2 2016-04-13 14:21:05 dx but ida is probably the best 2016-04-13 14:22:38 --> Akaibu (uid118096@gateway/web/irccloud.com/x-xvawmcpcdyxfyazx) a rejoint #mcdevs 2016-04-13 15:22:33 <-- _123DMWM (~123DMWM@c-73-238-243-94.hsd1.ma.comcast.net) a quitté (Ping timeout: 244 seconds) 2016-04-13 15:22:56 --> _123DMWM (~123DMWM@c-73-238-243-94.hsd1.ma.comcast.net) a rejoint #mcdevs 2016-04-13 15:35:59 <-- enchi (enchilado@defocus/yummy/enchilado) a quitté (Ping timeout: 244 seconds) 2016-04-13 15:36:05 --> darngeek (~darngeek@bouncer.pocketmine.net) a rejoint #mcdevs 2016-04-13 15:38:26 --> AlJaMa_ (~quassel@unaffiliated/aljama) a rejoint #mcdevs 2016-04-13 15:39:59 --> unascribed_ (~aesen@everybody.do.the.net.split.unascribed.com) a rejoint #mcdevs 2016-04-13 15:41:18 --> n3rd (n3rd@Hoth.Shadow-Dev.org) a rejoint #mcdevs 2016-04-13 15:42:43 --> enchi (enchilado@defocus/yummy/enchilado) a rejoint #mcdevs 2016-04-13 15:42:45 --> KeithGS- (~keith@znc.keithbmiller.com) a rejoint #mcdevs 2016-04-13 15:43:53 <-- AlJaMa (~quassel@unaffiliated/aljama) a quitté (*.net *.split) 2016-04-13 15:43:53 <-- unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a quitté (*.net *.split) 2016-04-13 15:43:53 <-- ryan-c (~ryan@srv1.turboslow.net) a quitté (*.net *.split) 2016-04-13 15:43:54 <-- KeithGS (~keith@znc.keithbmiller.com) a quitté (*.net *.split) 2016-04-13 15:43:54 <-- Shnaw (n3rd@Hoth.Shadow-Dev.org) a quitté (*.net *.split) 2016-04-13 15:43:54 <-- dranghek (~darngeek@bouncer.pocketmine.net) a quitté (*.net *.split) 2016-04-13 15:44:19 --> coolsa (~coolsa@unaffiliated/coolsa) a rejoint #mcdevs 2016-04-13 15:45:29 --> ryan`c (~ryan@srv1.turboslow.net) a rejoint #mcdevs 2016-04-13 15:48:20 -- ryan`c est maintenant connu sous le nom ryan-c 2016-04-13 15:58:51 +Amaranth yawkat: I feel like since they're using raknet you could probably easily insert hooks to dump the packet format out of it 2016-04-13 15:58:56 +Amaranth I wonder if that's what MiNET does 2016-04-13 15:59:08 yawkat the packet format is easy 2016-04-13 15:59:41 yawkat i hook into the method calls in the packet write methods, run them through an interpreter and get signatures out of it 2016-04-13 15:59:52 yawkat the hard part is getting field names and such for it 2016-04-13 16:00:17 rom1504 Bah, just look at example data from the client 2016-04-13 16:00:35 rom1504 Also do we even have any unknown field yet ? 2016-04-13 16:00:47 yawkat sure. 2016-04-13 16:00:56 rom1504 Like what ? 2016-04-13 16:00:58 +Amaranth We don't have that information on the PC side either, people just figure it out via decompiling and watching network traffic 2016-04-13 16:01:08 +Amaranth And help from Mojang from time to time 2016-04-13 16:01:43 yawkat Amaranth: decompiling arm is much harder 2016-04-13 16:01:52 +Amaranth I'm aware 2016-04-13 16:02:09 +Amaranth A lot of it gets figured out without decompiling though too 2016-04-13 16:02:32 yawkat we *do* have debug symbols in the binary but i dont know a good way of using them - i have little RE experience 2016-04-13 16:02:44 +Amaranth Wait wait wait, you have debug symbols? 2016-04-13 16:02:44 yawkat well, little RE experience outside java ^^ 2016-04-13 16:02:47 yawkat Amaranth: yes 2016-04-13 16:02:52 yawkat method names, everything 2016-04-13 16:03:06 yawkat it is still painful though 2016-04-13 16:03:08 +Amaranth IDA should be turning that shit back in to C/C++ code that's better than the decompiled Java we work with then 2016-04-13 16:03:28 yawkat unfortunately i dont have the decompiler, only their disassembler 2016-04-13 16:03:50 yawkat which is why i was asking - it should be much easier but it's not for some reason 2016-04-13 16:04:27 yawkat rom1504: https://github.com/NiclasOlofsson/MiNET/blob/master/src/MiNET/MiNET/Net/MCPE%20Protocol.xml#L174 2016-04-13 16:04:39 yawkat and that is wrong even, it's actually 3 bytes 2016-04-13 16:04:50 yawkat and i believe minet has the most complete field mappings out there 2016-04-13 16:05:15 +Amaranth Does PE have PlayerAbilities? 2016-04-13 16:05:30 yawkat like fly etc? 2016-04-13 16:05:32 +Amaranth That's the spot I'd expect PlayerAbilities 2016-04-13 16:05:33 yawkat i dont think so 2016-04-13 16:05:34 +Amaranth Yeah 2016-04-13 16:06:17 yawkat well i could of course just put data there and see what happens but its just one case 2016-04-13 16:06:37 yawkat what id love is to extract debug symbols for the actual packet classes 2016-04-13 16:06:46 yawkat maybe we can get field names or something out of them 2016-04-13 16:07:07 yawkat linking that to the packet write methods... wed have full, automatic packet mappings 2016-04-13 16:09:05 <-- coolsa (~coolsa@unaffiliated/coolsa) a quitté (Ping timeout: 244 seconds) 2016-04-13 16:13:53 --> trevor (~trevor@gradient/cofounder/trevor) a rejoint #mcdevs 2016-04-13 16:16:09 rom1504 yawkat: our protocol.json was initially extracted from minet .xml and then we made correction based on pocketmine code 2016-04-13 16:16:21 rom1504 + some correction based on the doc you put online recently 2016-04-13 16:16:41 yawkat i believe pocketmine does that packet wrong too 2016-04-13 16:16:44 rom1504 also it's directly used in an implementation, so I'm sure it works 2016-04-13 16:16:48 rom1504 let's see 2016-04-13 16:16:50 yawkat sure 2016-04-13 16:17:03 yawkat PE treats missing bytes as 0 (or something) 2016-04-13 16:17:28 yawkat it doesnt error when you miss a few bytes footer, but my decoder started spitting out warnings when trying to decode a PE-PE stream 2016-04-13 16:17:29 rom1504 https://github.com/mhsjlw/pocket-minecraft-protocol/blob/master/data/protocol.json#L894 ah yeah right 2016-04-13 16:17:35 rom1504 pocketmine ignores it indeed 2016-04-13 16:18:28 rom1504 yawkat: oh 3 bytes really ? 2016-04-13 16:18:54 yawkat yes i think so 2016-04-13 16:19:27 yawkat dont have ida open right now but my code uses 3 bytes and it's neither too long or too short when decoding anymore 2016-04-13 16:19:40 rom1504 ok 2016-04-13 16:19:57 rom1504 I should add some warning when it's too long 2016-04-13 16:20:07 rom1504 I'm ignoring trailing bytes atm 2016-04-13 16:20:17 yawkat well start game is clientbound so it doesnt help here 2016-04-13 16:20:32 yawkat that place is why i assume that the protocol docs minet uses are *not* generated 2016-04-13 16:20:41 yawkat also the fact that it's missing a few packets 2016-04-13 16:21:28 rom1504 "well start game is clientbound so it doesnt help here" it does for me 2016-04-13 16:21:38 yawkat oh you have a client right 2016-04-13 16:21:38 rom1504 our protocol implementation is both ways 2016-04-13 16:21:47 rom1504 so we have an easy client way 2016-04-13 16:21:51 rom1504 *yeah 2016-04-13 16:22:36 rom1504 (my brain seems to think way and yeah are pronounced the same :d) 2016-04-13 16:22:50 --> coolsa (~coolsa@unaffiliated/coolsa) a rejoint #mcdevs 2016-04-13 16:23:08 +Amaranth That's yea/yay 2016-04-13 16:23:21 rom1504 yawkat: isn't their .md generated from the .xml ? 2016-04-13 16:23:30 yawkat yes 2016-04-13 16:23:55 rom1504 anyway 2016-04-13 16:24:05 rom1504 yeah it would be nice to have some decompiled code sure 2016-04-13 16:24:24 rom1504 you got to pay for ida right ? there's no open source decompiler ? 2016-04-13 16:24:30 yawkat indeed 2016-04-13 16:24:46 yawkat the decompiler is 2k, the disassembler is 500-1k depending on version 2016-04-13 16:24:51 yawkat i use the demo 2016-04-13 16:25:08 yawkat unfortunately it has expired so i now need to find out where it stored that :D 2016-04-13 16:31:32 <-- coolsa (~coolsa@unaffiliated/coolsa) a quitté (Ping timeout: 260 seconds) 2016-04-13 16:31:57 rom1504 yawkat: disassemble the disassembler to find where the expiration key is stored 2016-04-13 16:32:08 rom1504 :p 2016-04-13 16:32:10 yawkat downloading the new version fixed it :) 2016-04-13 16:39:03 <-- benbaptist (~benbaptis@c-50-178-138-73.hsd1.in.comcast.net) a quitté (Ping timeout: 244 seconds) 2016-04-13 16:40:30 --> gurun (~gurun@h-123-168.a137.corp.bahnhof.se) a rejoint #mcdevs 2016-04-13 16:43:33 --> coolsa (~coolsa@unaffiliated/coolsa) a rejoint #mcdevs 2016-04-13 16:44:24 --> benbaptist (~benbaptis@c-50-178-138-73.hsd1.in.comcast.net) a rejoint #mcdevs 2016-04-13 16:48:21 yawkat yea it's much more painful reading this without decompiling 2016-04-13 16:48:31 yawkat keeping track of registers and such 2016-04-13 16:48:57 yawkat tried to figure out how "Take Item Entity" works and i think i did it but id rather not do it for every damn packet 2016-04-13 16:49:53 <-- coolsa (~coolsa@unaffiliated/coolsa) a quitté (Ping timeout: 244 seconds) 2016-04-13 16:51:25 --> coolsa (~coolsa@unaffiliated/coolsa) a rejoint #mcdevs 2016-04-13 16:51:27 Not-237d [steven] Scetch pushed 1 commit to master [+0/-0/±1] https://git.io/vVj8O 2016-04-13 16:51:29 Not-237d [steven] Scetch dab2c3f - Default block material to solid. 2016-04-13 17:08:05 <-- gurun (~gurun@h-123-168.a137.corp.bahnhof.se) a quitté (Ping timeout: 268 seconds) 2016-04-13 17:18:19 Aikar someones hacked thinks repo 2016-04-13 17:18:23 Aikar who dis guy 2016-04-13 17:21:53 rom1504 he's pretending to contribute so nobody notice his evil plans 2016-04-13 17:22:19 <-- _123DMWM (~123DMWM@c-73-238-243-94.hsd1.ma.comcast.net) a quitté (Ping timeout: 248 seconds) 2016-04-13 17:22:58 --> _123DMWM (~123DMWM@c-73-238-243-94.hsd1.ma.comcast.net) a rejoint #mcdevs 2016-04-13 17:25:15 +Thinkofname Aikar: gave Scetch push access ages ago :) 2016-04-13 17:26:33 GingerGeek yawkat, does you have android? 2016-04-13 17:26:50 yawkat yea 2016-04-13 17:27:07 GingerGeek you seen the realms alpha announcement? 2016-04-13 17:27:12 yawkat no 2016-04-13 17:27:16 GingerGeek o 2016-04-13 17:27:17 GingerGeek well 2016-04-13 17:27:28 GingerGeek authentication is going to be a thing very soon for multiplayer 2016-04-13 17:27:39 GingerGeek unsure whether it will be for realm only or all multiplayer servers 2016-04-13 17:27:42 GingerGeek hoping all 2016-04-13 17:27:52 GingerGeek http://mojang.com/2016/04/minecraft-realms-is-coming-to-pocket-and-win-10/ 2016-04-13 17:28:00 yawkat neat 2016-04-13 17:28:17 rom1504 ah nice 2016-04-13 17:28:26 +XorBoole shiny 2016-04-13 17:28:28 GingerGeek Have fun cracking the protocol for authentication <3 2016-04-13 17:28:44 +XorBoole > cracking 2016-04-13 17:28:49 GingerGeek working out 2016-04-13 17:28:53 +XorBoole > implying Thinkofname hasn't already read the PE team's minds 2016-04-13 17:28:55 GingerGeek reverse engineering 2016-04-13 17:28:58 GingerGeek pls 2016-04-13 17:29:36 GingerGeek did thinkofname do shiny documentation 2016-04-13 17:29:39 GingerGeek actually idk 2016-04-13 17:29:41 GingerGeek he probably did 2016-04-13 17:29:46 GingerGeek but yawkat's was shinier! 2016-04-13 17:29:52 +XorBoole Thinkofname secretly works for mojang. 2016-04-13 17:29:58 +XorBoole he says block entity instead of tile entity! 2016-04-13 17:30:10 GingerGeek inb4 spigot owned by mojang 2016-04-13 17:30:14 yawkat lol 2016-04-13 17:30:23 +XorBoole GingerGeek no mojang is a subsidiary of SpigotMC 2016-04-13 17:30:29 +XorBoole '''obviouslly''' 2016-04-13 17:30:44 rom1504 and microsoft is a subsidiary of mojang 2016-04-13 17:30:46 rom1504 makes sense 2016-04-13 17:30:52 GingerGeek No spigot owns microsoft 2016-04-13 17:31:05 GingerGeek md_5 is Bill Gate's american cousin 2016-04-13 17:31:16 GingerGeek pls that will ping 2016-04-13 17:31:17 GingerGeek sorry 2016-04-13 17:31:23 rom1504 ah, they should sell microsoft to focus on mojang then 2016-04-13 17:31:28 +XorBoole GingerGeek md is australian you dip 2016-04-13 17:31:30 GingerGeek yes 2016-04-13 17:31:32 +XorBoole you're going to die now 2016-04-13 17:31:32 GingerGeek PLS 2016-04-13 17:31:36 GingerGeek I MEANT AUSTRALIAN 2016-04-13 17:31:40 GingerGeek I SAID AUSTRALIAN IN MY HEAD 2016-04-13 17:32:09 +XorBoole shhh is k 2016-04-13 17:32:13 +XorBoole only dreams now 2016-04-13 17:32:17 +XorBoole goodnight sweet prince 2016-04-13 17:32:59 GingerGeek When i had a dream where i was a minecraft character, that was my prompt to switch to being a network dev 2016-04-13 17:34:01 +XorBoole I had a dream once, when I feel asleep reading a math paper 2016-04-13 17:34:06 +XorBoole it was a horrible, horrible nightmare 2016-04-13 17:34:18 <-- _123DMWM (~123DMWM@c-73-238-243-94.hsd1.ma.comcast.net) a quitté (Ping timeout: 244 seconds) 2016-04-13 17:34:18 +XorBoole I think that should be a premonition for something but I decided to ignore it 2016-04-13 17:35:25 --> _123DMWM (~123DMWM@c-73-238-243-94.hsd1.ma.comcast.net) a rejoint #mcdevs 2016-04-13 17:35:36 GingerGeek how's mit 2016-04-13 17:36:11 +XorBoole yes 2016-04-13 17:36:17 GingerGeek nice 2016-04-13 17:37:39 --> gurun (~gurun@c83-249-65-92.bredband.comhem.se) a rejoint #mcdevs 2016-04-13 17:39:21 --> n3rd_ (n3rd@Hoth.Shadow-Dev.org) a rejoint #mcdevs 2016-04-13 17:42:07 <-- Aikar (~Aikar@wikia/Aikar) a quitté (Ping timeout: 250 seconds) 2016-04-13 17:42:55 --> yawkat` (~yawkat@cats.coffee) a rejoint #mcdevs 2016-04-13 17:44:29 <-- n3rd (n3rd@Hoth.Shadow-Dev.org) a quitté (*.net *.split) 2016-04-13 17:44:29 <-- programmerq (~jefferya@unaffiliated/programmerq) a quitté (*.net *.split) 2016-04-13 17:44:29 <-- balrog (~balrog@unaffiliated/balrog) a quitté (*.net *.split) 2016-04-13 17:44:29 <-- matthewprenger (~matthew@2607:5300:60:1d6::1) a quitté (*.net *.split) 2016-04-13 17:44:29 <-- yawkat (~yawkat@cats.coffee) a quitté (*.net *.split) 2016-04-13 17:44:29 <-- kashike (kashike@unaffiliated/kashike) a quitté (*.net *.split) 2016-04-13 17:44:29 <-- KHobbits (khf@2600:3c03::21:1210) a quitté (*.net *.split) 2016-04-13 17:44:30 <-- l4mRh4X0r (l4mRh4X0r@l4mrh4x0r.student.ipv6.utwente.nl) a quitté (*.net *.split) 2016-04-13 17:44:43 -- yawkat` est maintenant connu sous le nom yawkat 2016-04-13 17:47:19 --> Aikar (~Aikar@wikia/Aikar) a rejoint #mcdevs 2016-04-13 17:47:27 --> KHobbits (~khf@baka.khobbits.co.uk) a rejoint #mcdevs 2016-04-13 17:50:55 --> balrog (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2016-04-13 17:51:10 --> kashike (kashike@unaffiliated/kashike) a rejoint #mcdevs 2016-04-13 17:52:45 --> matthewprenger (~matthew@dedi.matthewprenger.com) a rejoint #mcdevs 2016-04-13 17:53:32 <-- balrog (~balrog@unaffiliated/balrog) a quitté (Excess Flood) 2016-04-13 17:54:23 --> programmerq (~jefferya@unaffiliated/programmerq) a rejoint #mcdevs 2016-04-13 17:54:57 --> balrog (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2016-04-13 18:06:35 Not-ea7e [wiki] Edit by Pokechu22 to Protocol -> http://tinyurl.com/j5hhpxa 2016-04-13 18:12:17 --> l4mRh4X0r (l4mRh4X0r@l4mrh4x0r.student.ipv6.utwente.nl) a rejoint #mcdevs 2016-04-13 18:30:04 <-- Akaibu (uid118096@gateway/web/irccloud.com/x-xvawmcpcdyxfyazx) a quitté (Quit: Connection closed for inactivity) 2016-04-13 18:31:20 <-- ughman_ (~chek@cpe-45-46-35-253.maine.res.rr.com) a quitté (Ping timeout: 252 seconds) 2016-04-13 18:38:38 --> Akaibu (uid118096@gateway/web/irccloud.com/x-bzfqxuaswjdclnnu) a rejoint #mcdevs 2016-04-13 19:20:03 -- TobiX_ est maintenant connu sous le nom TobiX 2016-04-13 20:05:10 <-- _123DMWM (~123DMWM@c-73-238-243-94.hsd1.ma.comcast.net) a quitté (Ping timeout: 244 seconds) 2016-04-13 20:06:16 --> _123DMWM (~123DMWM@c-73-238-243-94.hsd1.ma.comcast.net) a rejoint #mcdevs 2016-04-13 20:08:54 <-- KeithGS- (~keith@znc.keithbmiller.com) a quitté (Quit: Quit) 2016-04-13 20:09:01 --> KeithGS (~keith@znc6.keithbmiller.com) a rejoint #mcdevs 2016-04-13 20:09:18 <-- zml (~zml@minions.aoeu.xyz) a quitté (Ping timeout: 244 seconds) 2016-04-13 20:21:46 <-- gurun (~gurun@c83-249-65-92.bredband.comhem.se) a quitté (Ping timeout: 240 seconds) 2016-04-13 20:35:09 --> JustASlacker (~icke@213.83.43.18) a rejoint #mcdevs 2016-04-13 20:35:09 --> gurun (~gurun@c83-249-65-92.bredband.comhem.se) a rejoint #mcdevs 2016-04-13 20:37:51 <-- Meeeh (~Meeeh@diorite.org) a quitté (Ping timeout: 252 seconds) 2016-04-13 20:38:23 <-- ashka (~postmaste@pdpc/supporter/active/ashka) a quitté (Ping timeout: 252 seconds) 2016-04-13 20:38:27 --> Meeeh (~Meeeh@diorite.org) a rejoint #mcdevs 2016-04-13 20:38:56 <-- matthewprenger (~matthew@dedi.matthewprenger.com) a quitté (Ping timeout: 252 seconds) 2016-04-13 20:38:57 <-- fortytwo (~thomas@who.let.this.bloody.dropbear.in) a quitté (Ping timeout: 252 seconds) 2016-04-13 20:39:22 Not-ea7e [wiki] Edit by Yawkat to Protocol -> http://tinyurl.com/hqkmcws 2016-04-13 20:39:29 <-- balrog (~balrog@unaffiliated/balrog) a quitté (Ping timeout: 252 seconds) 2016-04-13 20:39:29 <-- benbaptist (~benbaptis@c-50-178-138-73.hsd1.in.comcast.net) a quitté (Ping timeout: 252 seconds) 2016-04-13 20:39:29 <-- unascribed_ (~aesen@everybody.do.the.net.split.unascribed.com) a quitté (Ping timeout: 252 seconds) 2016-04-13 20:39:30 <-- gabizou (~gabizou@irc.spongepowered.org) a quitté (Ping timeout: 252 seconds) 2016-04-13 20:39:30 <-- Brandon15811_ (~Brandon15@195-154-86-162.rev.poneytelecom.eu) a quitté (Ping timeout: 252 seconds) 2016-04-13 20:39:31 <-- Not-237d (~notifico@198.199.82.216) a quitté (Ping timeout: 252 seconds) 2016-04-13 20:39:47 --> benbaptist (~benbaptis@c-50-178-138-73.hsd1.in.comcast.net) a rejoint #mcdevs 2016-04-13 20:40:02 <-- n3rd_ (n3rd@Hoth.Shadow-Dev.org) a quitté (Ping timeout: 252 seconds) 2016-04-13 20:40:03 <-- Techcable (Techcable@techcable.net) a quitté (Ping timeout: 252 seconds) 2016-04-13 20:41:35 --> n3rd (n3rd@Hoth.Shadow-Dev.org) a rejoint #mcdevs 2016-04-13 20:42:02 <-- MasterGberry (sid92636@gateway/web/irccloud.com/x-kqtudjwvskgzqvxf) a quitté (Remote host closed the connection) 2016-04-13 20:42:02 <-- inksatosh (uid157387@gateway/web/irccloud.com/x-wnnwvhnzvwwxzuax) a quitté (Remote host closed the connection) 2016-04-13 20:42:04 <-- Fenhl (sid30770@gateway/web/irccloud.com/x-qxzxayodcglefuox) a quitté (Remote host closed the connection) 2016-04-13 20:44:40 --> Techcable (Techcable@techcable.net) a rejoint #mcdevs 2016-04-13 20:44:52 --> ashka (~postmaste@pdpc/supporter/active/ashka) a rejoint #mcdevs 2016-04-13 20:45:17 --> fortytwo (~thomas@who.let.this.bloody.dropbear.in) a rejoint #mcdevs 2016-04-13 20:45:43 --> unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a rejoint #mcdevs 2016-04-13 20:46:17 --> Brandon15811_ (~Brandon15@195-154-86-162.rev.poneytelecom.eu) a rejoint #mcdevs 2016-04-13 20:47:07 --> balrog (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2016-04-13 20:48:26 --> gabizou (~gabizou@irc.spongepowered.org) a rejoint #mcdevs 2016-04-13 20:52:22 --> matthewprenger (~matthew@2607:5300:60:1d6::1) a rejoint #mcdevs 2016-04-13 20:56:50 --> Fenhl (sid30770@gateway/web/irccloud.com/x-omvtxrgpgfmtrxgg) a rejoint #mcdevs 2016-04-13 20:56:50 -- Mode #mcdevs [+v Fenhl] par ChanServ 2016-04-13 21:12:02 --> MasterGberry (sid92636@gateway/web/irccloud.com/x-rtzqigkmkqdxevag) a rejoint #mcdevs 2016-04-13 21:19:23 --> inksatosh (uid157387@gateway/web/irccloud.com/x-xuhgacewcfzfcwhj) a rejoint #mcdevs 2016-04-13 21:33:21 --> barneygale (~barneygal@90.197.153.24) a rejoint #mcdevs 2016-04-13 21:45:17 --> AlJaMa (~quassel@unaffiliated/aljama) a rejoint #mcdevs 2016-04-13 21:48:37 <-- gurun (~gurun@c83-249-65-92.bredband.comhem.se) a quitté (*.net *.split) 2016-04-13 21:48:37 <-- KHobbits (~khf@baka.khobbits.co.uk) a quitté (*.net *.split) 2016-04-13 21:48:37 <-- enchi (enchilado@defocus/yummy/enchilado) a quitté (*.net *.split) 2016-04-13 21:48:37 <-- AlJaMa_ (~quassel@unaffiliated/aljama) a quitté (*.net *.split) 2016-04-13 21:48:37 <-- clonejo (~clonejo@shakik.de) a quitté (*.net *.split) 2016-04-13 21:48:37 <-- edk (edk@spy/edk0) a quitté (*.net *.split) 2016-04-13 21:48:37 <-- m0r13 (~m0r13@mail.yellow-ray.de) a quitté (*.net *.split) 2016-04-13 21:48:37 <-- Dadido3 (~quassel@p5B00AF94.dip0.t-ipconnect.de) a quitté (*.net *.split) 2016-04-13 21:48:37 <-- kev009 (~kev009@tempe0.bbox.io) a quitté (*.net *.split) 2016-04-13 21:48:37 <-- Guyag (~Guyag@162.221.176.50) a quitté (*.net *.split) 2016-04-13 21:48:38 <-- Grum (~grum@irc.grum.nl) a quitté (*.net *.split) 2016-04-13 21:48:38 <-- tktech (~tktech@ec2-52-70-105-60.compute-1.amazonaws.com) a quitté (*.net *.split) 2016-04-13 21:48:38 <-- umby24 (umby@d3s.co) a quitté (*.net *.split) 2016-04-13 21:53:55 --> enchi_ (enchilado@defocus/yummy/enchilado) a rejoint #mcdevs 2016-04-13 21:56:30 --> KHobbits_ (~khf@baka.khobbits.co.uk) a rejoint #mcdevs 2016-04-13 21:58:19 <-- bildramer (~bildramer@p5DC8ADCC.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2016-04-13 21:59:02 --> bildramer (~bildramer@p5DC8ADCC.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-13 22:00:33 --> edk_ (edk@spy/edk0) a rejoint #mcdevs 2016-04-13 22:03:38 --> KHobbits (~khf@baka.khobbits.co.uk) a rejoint #mcdevs 2016-04-13 22:03:38 --> enchi (enchilado@defocus/yummy/enchilado) a rejoint #mcdevs 2016-04-13 22:03:38 --> clonejo (~clonejo@shakik.de) a rejoint #mcdevs 2016-04-13 22:03:38 --> edk (edk@spy/edk0) a rejoint #mcdevs 2016-04-13 22:03:38 --> m0r13 (~m0r13@mail.yellow-ray.de) a rejoint #mcdevs 2016-04-13 22:03:38 --> Dadido3 (~quassel@p5B00AF94.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-13 22:03:38 --> kev009 (~kev009@tempe0.bbox.io) a rejoint #mcdevs 2016-04-13 22:03:38 --> Guyag (~Guyag@162.221.176.50) a rejoint #mcdevs 2016-04-13 22:03:38 --> Grum (~grum@irc.grum.nl) a rejoint #mcdevs 2016-04-13 22:03:38 --> tktech (~tktech@ec2-52-70-105-60.compute-1.amazonaws.com) a rejoint #mcdevs 2016-04-13 22:03:38 --> umby24 (umby@d3s.co) a rejoint #mcdevs 2016-04-13 22:03:38 -- Mode #mcdevs [+vv kev009 Grum] par wolfe.freenode.net 2016-04-13 22:04:46 <-- KHobbits (~khf@baka.khobbits.co.uk) a quitté (*.net *.split) 2016-04-13 22:04:46 <-- enchi (enchilado@defocus/yummy/enchilado) a quitté (*.net *.split) 2016-04-13 22:04:46 <-- clonejo (~clonejo@shakik.de) a quitté (*.net *.split) 2016-04-13 22:04:46 <-- edk (edk@spy/edk0) a quitté (*.net *.split) 2016-04-13 22:04:46 <-- m0r13 (~m0r13@mail.yellow-ray.de) a quitté (*.net *.split) 2016-04-13 22:04:46 <-- Dadido3 (~quassel@p5B00AF94.dip0.t-ipconnect.de) a quitté (*.net *.split) 2016-04-13 22:04:46 <-- kev009 (~kev009@tempe0.bbox.io) a quitté (*.net *.split) 2016-04-13 22:04:46 <-- Guyag (~Guyag@162.221.176.50) a quitté (*.net *.split) 2016-04-13 22:04:47 <-- Grum (~grum@irc.grum.nl) a quitté (*.net *.split) 2016-04-13 22:04:47 <-- tktech (~tktech@ec2-52-70-105-60.compute-1.amazonaws.com) a quitté (*.net *.split) 2016-04-13 22:04:47 <-- umby24 (umby@d3s.co) a quitté (*.net *.split) 2016-04-13 22:04:47 -- edk_ est maintenant connu sous le nom edk 2016-04-13 22:04:59 -- KHobbits_ est maintenant connu sous le nom KHobbits 2016-04-13 22:12:09 --> m0r13 (~m0r13@148.251.55.244) a rejoint #mcdevs 2016-04-13 22:12:09 --> clonejo (~clonejo@shakik.de) a rejoint #mcdevs 2016-04-13 22:12:09 --> Dadido3 (~quassel@p5B00AF94.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-13 22:12:09 --> kev009 (~kev009@tempe0.bbox.io) a rejoint #mcdevs 2016-04-13 22:12:09 --> Guyag (~Guyag@162.221.176.50) a rejoint #mcdevs 2016-04-13 22:12:09 --> Grum (~grum@irc.grum.nl) a rejoint #mcdevs 2016-04-13 22:12:09 --> tktech (~tktech@ec2-52-70-105-60.compute-1.amazonaws.com) a rejoint #mcdevs 2016-04-13 22:12:09 --> umby24 (umby@d3s.co) a rejoint #mcdevs 2016-04-13 22:12:09 -- Mode #mcdevs [+vv kev009 Grum] par wolfe.freenode.net 2016-04-13 22:13:17 <-- Dadido3 (~quassel@p5B00AF94.dip0.t-ipconnect.de) a quitté (Ping timeout: 240 seconds) 2016-04-13 22:14:17 <-- m0r13 (~m0r13@148.251.55.244) a quitté (Ping timeout: 240 seconds) 2016-04-13 22:15:17 <-- clonejo (~clonejo@shakik.de) a quitté (Ping timeout: 240 seconds) 2016-04-13 22:15:17 <-- umby24 (umby@d3s.co) a quitté (Ping timeout: 240 seconds) 2016-04-13 22:15:23 --> kev009_ (~kev009@tempe0.bbox.io) a rejoint #mcdevs 2016-04-13 22:15:23 -- Mode #mcdevs [+v kev009_] par ChanServ 2016-04-13 22:15:47 <-- kev009 (~kev009@tempe0.bbox.io) a quitté (Ping timeout: 240 seconds) 2016-04-13 22:16:17 <-- Grum (~grum@irc.grum.nl) a quitté (Ping timeout: 240 seconds) 2016-04-13 22:16:17 <-- tktech (~tktech@ec2-52-70-105-60.compute-1.amazonaws.com) a quitté (Ping timeout: 240 seconds) 2016-04-13 22:18:26 --> Dadido3 (~quassel@p5B00AF94.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-13 22:21:43 --> Grum (~grum@irc.grum.nl) a rejoint #mcdevs 2016-04-13 22:21:43 -- Mode #mcdevs [+v Grum] par ChanServ 2016-04-13 22:22:40 --> umby24 (umby@d3s.co) a rejoint #mcdevs 2016-04-13 22:23:07 --> tktech (~tktech@ec2-52-70-105-60.compute-1.amazonaws.com) a rejoint #mcdevs 2016-04-13 22:25:08 <-- bildramer (~bildramer@p5DC8ADCC.dip0.t-ipconnect.de) a quitté (Remote host closed the connection) 2016-04-13 22:25:52 --> bildramer (~bildramer@p5DC8ADCC.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-13 22:26:03 --> gurun (~gurun@c83-249-65-92.bredband.comhem.se) a rejoint #mcdevs 2016-04-13 22:28:59 --> clonejo (~clonejo@shakik.de) a rejoint #mcdevs 2016-04-13 22:31:01 <-- aet2505 (~aet2505@45.55.237.47) a quitté (Quit: Bye) 2016-04-13 22:39:54 --> fragmer_ (~fragmer@45.55.2.85) a rejoint #mcdevs 2016-04-13 22:40:29 --> CharlesVien (~Charles@46.101.12.90) a rejoint #mcdevs 2016-04-13 22:40:40 --> dranghek (~darngeek@bouncer.pocketmine.net) a rejoint #mcdevs 2016-04-13 22:41:33 --> VoidWhisperer_ (~VoidWhisp@vwserver.student.rit.edu) a rejoint #mcdevs 2016-04-13 22:41:40 --> edk_ (edk@spy/edk0) a rejoint #mcdevs 2016-04-13 22:42:24 --> unascribed_ (~aesen@everybody.do.the.net.split.unascribed.com) a rejoint #mcdevs 2016-04-13 22:44:29 <-- VoidWhisperer_ (~VoidWhisp@vwserver.student.rit.edu) a quitté (Changing host) 2016-04-13 22:44:29 --> VoidWhisperer_ (~VoidWhisp@unaffiliated/voidwhisperer) a rejoint #mcdevs 2016-04-13 22:45:13 <-- VoidWhisperer (~VoidWhisp@unaffiliated/voidwhisperer) a quitté (Disconnected by services) 2016-04-13 22:45:22 -- VoidWhisperer_ est maintenant connu sous le nom VoidWhisperer 2016-04-13 22:46:42 --> Extreme- (extreme7@unaffiliated/extreme7) a rejoint #mcdevs 2016-04-13 22:46:54 --> Paprikachu_ (~pap@priv.play2win.io) a rejoint #mcdevs 2016-04-13 22:47:19 --> Brandon15811___ (~Brandon15@195-154-86-162.rev.poneytelecom.eu) a rejoint #mcdevs 2016-04-13 22:47:20 <-- edk (edk@spy/edk0) a quitté (*.net *.split) 2016-04-13 22:47:20 <-- unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a quitté (*.net *.split) 2016-04-13 22:47:20 <-- JustASlacker (~icke@213.83.43.18) a quitté (*.net *.split) 2016-04-13 22:47:20 <-- _123DMWM (~123DMWM@c-73-238-243-94.hsd1.ma.comcast.net) a quitté (*.net *.split) 2016-04-13 22:47:20 <-- programmerq (~jefferya@unaffiliated/programmerq) a quitté (*.net *.split) 2016-04-13 22:47:20 <-- darngeek (~darngeek@bouncer.pocketmine.net) a quitté (*.net *.split) 2016-04-13 22:47:21 <-- Brandon15811 (~Brandon15@195-154-86-162.rev.poneytelecom.eu) a quitté (*.net *.split) 2016-04-13 22:47:21 <-- MeltedLux (~MeltedLux@bifrost.melted.pw) a quitté (*.net *.split) 2016-04-13 22:47:21 <-- Paprikachu (~pap@priv.play2win.io) a quitté (*.net *.split) 2016-04-13 22:47:21 <-- Not-ea7e (~notifico@198.199.82.216) a quitté (*.net *.split) 2016-04-13 22:47:21 <-- Extreme (extreme7@unaffiliated/extreme7) a quitté (*.net *.split) 2016-04-13 22:47:21 <-- humerusj (~humerusj@unaffiliated/humerusj) a quitté (*.net *.split) 2016-04-13 22:47:21 <-- Guest57978 (~Charles@46.101.12.90) a quitté (*.net *.split) 2016-04-13 22:47:21 <-- fragmer (~fragmer@45.55.2.85) a quitté (*.net *.split) 2016-04-13 22:47:22 <-- Guyag (~Guyag@162.221.176.50) a quitté (*.net *.split) 2016-04-13 22:47:22 -- edk_ est maintenant connu sous le nom edk 2016-04-13 22:47:38 --> _123DMWM (~123DMWM@c-73-238-243-94.hsd1.ma.comcast.net) a rejoint #mcdevs 2016-04-13 22:47:46 -- Brandon15811___ est maintenant connu sous le nom Brandon15811 2016-04-13 22:49:41 --> humerusj (~humerusj@unaffiliated/humerusj) a rejoint #mcdevs 2016-04-13 22:50:55 --> MeltedLux (~MeltedLux@bifrost.melted.pw) a rejoint #mcdevs 2016-04-13 22:54:23 --> JustASlacker (~icke@213.83.43.18) a rejoint #mcdevs 2016-04-13 22:54:51 --> programmerq (~jefferya@unaffiliated/programmerq) a rejoint #mcdevs 2016-04-13 23:11:06 Akaibu woot, if i'm thinking right, 2b2t will be playable again due to the latest snapshot: http://mojang.com/2016/04/minecraft-snapshot-16w15a/ 2016-04-13 23:37:47 <-- JustASlacker (~icke@213.83.43.18) a quitté (Read error: Connection timed out) 2016-04-13 23:38:09 --> JustASlacker (~icke@213.83.43.18) a rejoint #mcdevs 2016-04-13 23:38:36 barneygale surely the next major release is several months away 2016-04-13 23:38:56 * barneygale reads 3 sentences into article 2016-04-13 23:38:57 barneygale nvm 2016-04-13 23:39:14 redstonehelper that's only for the first snapshot though 2016-04-13 23:40:53 <-- ashka (~postmaste@pdpc/supporter/active/ashka) a quitté (Ping timeout: 264 seconds) 2016-04-13 23:41:29 <-- programmerq (~jefferya@unaffiliated/programmerq) a quitté (Ping timeout: 264 seconds) 2016-04-13 23:41:29 <-- Brandon15811_ (~Brandon15@195-154-86-162.rev.poneytelecom.eu) a quitté (Ping timeout: 264 seconds) 2016-04-13 23:42:05 <-- Paprikachu_ (~pap@priv.play2win.io) a quitté (Ping timeout: 264 seconds) 2016-04-13 23:42:05 <-- gabizou (~gabizou@irc.spongepowered.org) a quitté (Ping timeout: 264 seconds) 2016-04-13 23:46:41 --> gabizou (~gabizou@irc.spongepowered.org) a rejoint #mcdevs 2016-04-13 23:46:56 --> Brandon15811_ (~Brandon15@195-154-86-162.rev.poneytelecom.eu) a rejoint #mcdevs 2016-04-13 23:47:00 --> Paprikachu (~pap@priv.play2win.io) a rejoint #mcdevs 2016-04-13 23:47:06 --> ashka (~postmaste@pdpc/supporter/active/ashka) a rejoint #mcdevs 2016-04-13 23:55:53 --> programmerq (~jefferya@unaffiliated/programmerq) a rejoint #mcdevs 2016-04-14 00:07:33 --> realz__ (~realz@unaffiliated/realazthat) a rejoint #mcdevs 2016-04-14 00:08:01 --> Cxom_ (~Trinoxtio@2601:248:4200:4876:2839:1996:67e4:265a) a rejoint #mcdevs 2016-04-14 00:08:10 --> fmend031 (~fmend031@pinkiepie.cs.fiu.edu) a rejoint #mcdevs 2016-04-14 00:08:43 <-- ylt (ylt@d3s.co) a quitté (Ping timeout: 248 seconds) 2016-04-14 00:10:19 <-- realz (~realz@unaffiliated/realazthat) a quitté (Ping timeout: 248 seconds) 2016-04-14 00:10:51 <-- Cxom2 (~Trinoxtio@2601:248:4200:4876:c975:b763:2752:fee3) a quitté (Ping timeout: 248 seconds) 2016-04-14 00:12:39 --> ylt (ylt@d3s.co) a rejoint #mcdevs 2016-04-14 00:17:34 -- realz__ est maintenant connu sous le nom realz 2016-04-14 00:27:59 --> pokechu22 (322347d5@gateway/web/freenode/ip.50.35.71.213) a rejoint #mcdevs 2016-04-14 00:37:28 <-- trevor (~trevor@gradient/cofounder/trevor) a quitté (Ping timeout: 244 seconds) 2016-04-14 00:43:08 Akaibu ok 2016-04-14 00:43:11 Akaibu what 2016-04-14 00:43:11 Akaibu the 2016-04-14 00:43:13 Akaibu fuck 2016-04-14 00:43:17 Akaibu http://minecraft.gamepedia.com/Thunderstorm 2016-04-14 00:43:32 Akaibu >thunder can be heard from 160k away 2016-04-14 00:43:43 Akaibu why is this a thing 2016-04-14 00:44:12 Akaibu 2b2t was screwed hard many a times due to this, is there a reason why this is allowed? 2016-04-14 00:44:24 Akaibu pokechu22: you have any clue? 2016-04-14 00:44:34 fmend031 So, guys, I'm looking for a way of getting Minecraft or Minecraft EDU working with nView Clone Mode Stereoscopic, on not only one but FIVE screens, (10 outputs, 1 per eye) 2016-04-14 00:45:12 pokechu22 It's spawned with a wierd packet. Though, it won't normally _strike_ that far away. 2016-04-14 00:45:24 Aikar what i the world is 2b2t 2016-04-14 00:45:25 pokechu22 You'd need to have 2 players that far apart to test it. 2016-04-14 00:47:49 Akaibu i know, but with 2b2t being a world with no limits, this bug is being exploited by other players since minecraft 1.0 in many forms, there should be a way to do this without the coord exploits 2016-04-14 00:49:34 pokechu22 ... what? People can't spawn thunder on demand, can they? 2016-04-14 00:49:43 pokechu22 I mean, they _can_ spawn withers on demand, but not thunder. 2016-04-14 00:50:07 <-- gurun (~gurun@c83-249-65-92.bredband.comhem.se) a quitté (Quit: Leaving) 2016-04-14 00:51:08 Akaibu nah, but people on the server make custom clients that can detect this and give the coords, like so: http://puu.sh/6z5UC 2016-04-14 00:52:40 pokechu22 ... and find loaded chunks where people are. Ah, I see you. 2016-04-14 00:53:13 Akaibu yea 2016-04-14 00:53:41 fmend031 Anyone have any ideas on how I can modify the rendering process for minecraft without having to use C++ hooks? 2016-04-14 00:54:03 Akaibu make a new client? 2016-04-14 00:54:17 fmend031 Is... that... possible? 2016-04-14 00:54:24 pokechu22 fmend031: Use MCP and decompile the game. 2016-04-14 00:54:54 pokechu22 It's possible to make a custom client, though not particularly easy, especially if you want to do things for rendering purposes. 2016-04-14 00:55:33 Akaibu we have been fixing this issue many times by disabling thunder, but now that i see exactly why this happens, its bonkers why mojang hasn't fixed this problem, its been around in various forms since at least 1.0, and i see no reason why they would need it to go out that far 2016-04-14 00:55:35 fmend031 Sweet. I'm going to take a look at those. Basically I need to be able to output in stereoscopic to 5 different projectors, (they look like 10 monitors to the system) 2016-04-14 00:55:39 Akaibu do you pokechu22? 2016-04-14 00:56:05 <-- barneygale (~barneygal@90.197.153.24) a quitté (Ping timeout: 244 seconds) 2016-04-14 00:56:16 pokechu22 Honestly no. I mean, if the sound effect was _delayed_, then maybe... 2016-04-14 00:57:13 pokechu22 160k is way too long for anything feasible. 2016-04-14 00:57:53 pokechu22 I don't actually see anything that caps it to 160k, though; I think it's mapwide (if it were limited specifically to 160k that would be wierd, but if it's mapwide then it might make more sense). 2016-04-14 00:59:06 Akaibu thats what the wiki says, might have to go into the code of packets to see if theres anything obvious causing this 2016-04-14 01:00:37 pokechu22 fmend031: It's probably not going to be easy. If it helps, the code that's used for the current red/blue 3D transforms is mainly in EntityRenderer.setupCameraTransform 2016-04-14 01:03:43 pokechu22 Akaibu: Oh, I see what's happening. The volume for the actuall sound is set to 10000, which I assume means 160000 blocks. They probably wanted it to be infinite. The actual _sound_ (and thunder entity) must be sent at _any_ distance... 2016-04-14 01:03:46 fmend031 Thanks pokechu22 , and yeah I figured. It's for a pretty big research instrument at a university so I guess I'll have to figure it out :P 2016-04-14 01:06:28 --> Not-34f0 (~notifico@198.199.82.216) a rejoint #mcdevs 2016-04-14 01:06:28 Not-34f0 [flying-squid] rom1504 pushed 1 commit to master [+0/-0/±1] https://git.io/vwvYo 2016-04-14 01:06:29 Not-34f0 [flying-squid] rom1504 7f231c5 - the option is called max-players, fix #235 2016-04-14 01:45:49 -- enchi_ est maintenant connu sous le nom enchi 2016-04-14 02:34:03 Akaibu pokechu22: but why would they want it to be infinite? 2016-04-14 02:34:37 pokechu22 ¯\_(ツ)_/¯ 2016-04-14 02:35:12 pokechu22 OK, that does not work well in IRC. I don't really know why they'd want it to be infinite, though I do understand them wanting it to be more than the normal view distance. 2016-04-14 02:39:35 --> zml (~zml@minions.aoeu.xyz) a rejoint #mcdevs 2016-04-14 02:49:00 +Thinkofname pokechu22: suggestion about the SMP_Map_Format page, the example's use of borders messes up alignment https://i.imgur.com/FGmsrF9.png maybe use backgrounds instead? 2016-04-14 02:49:27 pokechu22 I tried backgrounds; it was far too hard to read (things were too dark). But I agree about the misalignment. 2016-04-14 02:52:14 pokechu22 Hm... 'outline' works though it's a bit strange too. 2016-04-14 02:54:32 <-- laxask_ (~lax@unaffiliated/laxask) a quitté (Ping timeout: 260 seconds) 2016-04-14 02:58:50 --> Not-d16f (~notifico@198.199.82.216) a rejoint #mcdevs 2016-04-14 02:58:50 Not-d16f [wiki] Edit by Pokechu22 to SMP Map Format -> http://tinyurl.com/jf3hgnw 2016-04-14 03:00:22 -- r04r est maintenant connu sous le nom zz_r04r 2016-04-14 03:01:49 --> laxask (~lax@unaffiliated/laxask) a rejoint #mcdevs 2016-04-14 03:17:54 Gjum is the alignment really important for this example? 2016-04-14 03:18:42 Gjum pokechu22: also, do you have example chunks/world/... that use the global palette? 2016-04-14 03:19:17 pokechu22 No, though it would be not too hard to force it probably. 2016-04-14 03:19:35 pokechu22 Alignment's not critical but it does make it easier to keep track of what bit in the long it is. 2016-04-14 03:20:52 Gjum with 2 lines, there are no patterns to spot yet. anyway, it's just cosmetical, do whatever you feel is best, thanks for a great example :) 2016-04-14 03:21:17 Gjum would you think we need an example for normal palettes too? 2016-04-14 03:22:48 pokechu22 The key reason I did the example was to show how the array was compacted (since it's not too easy to explain), but aditional examples still would be nice. 2016-04-14 03:23:39 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2016-04-14 04:19:17 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 264 seconds) 2016-04-14 04:53:30 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2016-04-14 05:35:04 <-- coolsa (~coolsa@unaffiliated/coolsa) a quitté (Read error: Connection reset by peer) 2016-04-14 05:35:42 --> coolsa (~coolsa@unaffiliated/coolsa) a rejoint #mcdevs 2016-04-14 05:50:09 <-- Akaibu (uid118096@gateway/web/irccloud.com/x-bzfqxuaswjdclnnu) a quitté (Remote host closed the connection) 2016-04-14 05:50:28 --> Akaibu (uid118096@gateway/web/irccloud.com/x-dwizqfytwmzytdau) a rejoint #mcdevs 2016-04-14 06:02:13 --> redstonehelper_ (~redstoneh@p4FCCEB6C.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-14 06:02:13 <-- redstonehelper_ (~redstoneh@p4FCCEB6C.dip0.t-ipconnect.de) a quitté (Changing host) 2016-04-14 06:02:13 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2016-04-14 06:04:58 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 276 seconds) 2016-04-14 06:04:58 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2016-04-14 06:17:38 <-- coolsa (~coolsa@unaffiliated/coolsa) a quitté (Remote host closed the connection) 2016-04-14 06:18:22 -- edk est maintenant connu sous le nom qi 2016-04-14 06:21:02 --> coolsa (~coolsa@unaffiliated/coolsa) a rejoint #mcdevs 2016-04-14 06:30:18 --> kev009__ (~kev009@tempe0.bbox.io) a rejoint #mcdevs 2016-04-14 06:31:08 <-- qi (edk@spy/edk0) a quitté (Read error: Connection reset by peer) 2016-04-14 06:31:15 <-- yorick (~yorick@oftn/oswg-member/yorick) a quitté (Read error: Connection reset by peer) 2016-04-14 06:31:31 <-- kev009_ (~kev009@tempe0.bbox.io) a quitté (Read error: Connection reset by peer) 2016-04-14 06:31:37 <-- unascribed_ (~aesen@everybody.do.the.net.split.unascribed.com) a quitté (Ping timeout: 276 seconds) 2016-04-14 06:31:38 <-- Deaygo (~Deaygo@107.161.31.15) a quitté (Ping timeout: 276 seconds) 2016-04-14 06:31:38 <-- Amaranth (~travis@ubuntu/member/Amaranth) a quitté (Read error: Connection reset by peer) 2016-04-14 06:31:47 --> unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a rejoint #mcdevs 2016-04-14 06:31:49 --> edk (~edk@spy/edk0) a rejoint #mcdevs 2016-04-14 06:32:11 <-- ryan-c (~ryan@srv1.turboslow.net) a quitté (Read error: Connection reset by peer) 2016-04-14 06:32:17 <-- Harry5573 (~Harry5573@46.101.12.90) a quitté (Ping timeout: 276 seconds) 2016-04-14 06:32:23 --> Deaygo (~Deaygo@107.161.31.15) a rejoint #mcdevs 2016-04-14 06:32:44 --> Harry (~Harry@46.101.12.90) a rejoint #mcdevs 2016-04-14 06:32:50 --> yorick (~yorick@oftn/oswg-member/yorick) a rejoint #mcdevs 2016-04-14 06:41:30 --> ryan-c (~ryan@srv1.turboslow.net) a rejoint #mcdevs 2016-04-14 06:43:55 <-- Cxom_ (~Trinoxtio@2601:248:4200:4876:2839:1996:67e4:265a) a quitté (Ping timeout: 248 seconds) 2016-04-14 06:52:27 <-- levifig (~levi@hakr.io) a quitté (Ping timeout: 248 seconds) 2016-04-14 06:54:58 --> levifig (~levi@hakr.io) a rejoint #mcdevs 2016-04-14 07:04:01 <-- pokechu22 (322347d5@gateway/web/freenode/ip.50.35.71.213) a quitté (Ping timeout: 250 seconds) 2016-04-14 07:04:07 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 276 seconds) 2016-04-14 07:43:14 <-- coolsa (~coolsa@unaffiliated/coolsa) a quitté (Ping timeout: 250 seconds) 2016-04-14 07:57:15 --> coolsa (~coolsa@unaffiliated/coolsa) a rejoint #mcdevs 2016-04-14 07:59:37 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 260 seconds) 2016-04-14 08:01:01 --> Akaibu_ (uid118096@gateway/web/irccloud.com/x-brisqemxsffwbyxq) a rejoint #mcdevs 2016-04-14 08:01:58 --> Brandon1- (~Brandon15@195-154-86-162.rev.poneytelecom.eu) a rejoint #mcdevs 2016-04-14 08:02:39 --> benbaptist_ (~benbaptis@c-50-178-138-73.hsd1.in.comcast.net) a rejoint #mcdevs 2016-04-14 08:04:04 --> ammar2- (admin@ec2-52-4-212-228.compute-1.amazonaws.com) a rejoint #mcdevs 2016-04-14 08:04:04 -- Mode #mcdevs [+v ammar2-] par ChanServ 2016-04-14 08:04:28 --> darngeek (~darngeek@bouncer.pocketmine.net) a rejoint #mcdevs 2016-04-14 08:04:30 --> ryan`c (~ryan@srv1.turboslow.net) a rejoint #mcdevs 2016-04-14 08:04:43 --> SinZ_ (~SinZ@CPE-121-219-105-50.lnse2.lon.bigpond.net.au) a rejoint #mcdevs 2016-04-14 08:05:11 --> Dadido3_ (~quassel@p5B00AF94.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-14 08:05:11 --> BlackHole (~BlackHole@p2003007E4F0F0B002D5ACE16F51AB982.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-14 08:05:41 --> Aikar_ (~Aikar@web01.starlis.com) a rejoint #mcdevs 2016-04-14 08:05:41 <-- Aikar_ (~Aikar@web01.starlis.com) a quitté (Changing host) 2016-04-14 08:05:41 --> Aikar_ (~Aikar@wikia/Aikar) a rejoint #mcdevs 2016-04-14 08:05:55 --> n3rd_ (n3rd@Hoth.Shadow-Dev.org) a rejoint #mcdevs 2016-04-14 08:06:01 --> AlJaMa_ (~quassel@unaffiliated/aljama) a rejoint #mcdevs 2016-04-14 08:06:36 --> vemacs- (~vemacs@jet.fuel.cant.melt.da.nkmem.es) a rejoint #mcdevs 2016-04-14 08:07:54 --> hkaga- (~hkaga@2602:ffda:bbb::27bf:741e) a rejoint #mcdevs 2016-04-14 08:08:56 <-- ryan-c (~ryan@srv1.turboslow.net) a quitté (*.net *.split) 2016-04-14 08:08:57 <-- Akaibu (uid118096@gateway/web/irccloud.com/x-dwizqfytwmzytdau) a quitté (*.net *.split) 2016-04-14 08:08:57 <-- realz (~realz@unaffiliated/realazthat) a quitté (*.net *.split) 2016-04-14 08:08:57 <-- Brandon15811_ (~Brandon15@195-154-86-162.rev.poneytelecom.eu) a quitté (*.net *.split) 2016-04-14 08:08:57 <-- Extreme- (extreme7@unaffiliated/extreme7) a quitté (*.net *.split) 2016-04-14 08:08:58 <-- dranghek (~darngeek@bouncer.pocketmine.net) a quitté (*.net *.split) 2016-04-14 08:08:58 <-- Dadido3 (~quassel@p5B00AF94.dip0.t-ipconnect.de) a quitté (*.net *.split) 2016-04-14 08:08:58 <-- AlJaMa (~quassel@unaffiliated/aljama) a quitté (*.net *.split) 2016-04-14 08:08:58 <-- inksatosh (uid157387@gateway/web/irccloud.com/x-xuhgacewcfzfcwhj) a quitté (*.net *.split) 2016-04-14 08:08:58 <-- matthewprenger (~matthew@2607:5300:60:1d6::1) a quitté (*.net *.split) 2016-04-14 08:08:58 <-- n3rd (n3rd@Hoth.Shadow-Dev.org) a quitté (*.net *.split) 2016-04-14 08:08:58 <-- benbaptist (~benbaptis@c-50-178-138-73.hsd1.in.comcast.net) a quitté (*.net *.split) 2016-04-14 08:08:58 <-- l4mRh4X0r (l4mRh4X0r@l4mrh4x0r.student.ipv6.utwente.nl) a quitté (*.net *.split) 2016-04-14 08:08:58 <-- Aikar (~Aikar@wikia/Aikar) a quitté (*.net *.split) 2016-04-14 08:08:59 <-- Black-Hole (~BlackHole@p2003007E4F0F0B002D5ACE16F51AB982.dip0.t-ipconnect.de) a quitté (*.net *.split) 2016-04-14 08:09:00 <-- Sudzzy (~Sudzzy@2607:5300:60:326e::1) a quitté (*.net *.split) 2016-04-14 08:09:00 <-- SinZ (~SinZ@CPE-121-219-105-50.lnse2.lon.bigpond.net.au) a quitté (*.net *.split) 2016-04-14 08:09:00 <-- ammar2 (admin@ec2-52-4-212-228.compute-1.amazonaws.com) a quitté (*.net *.split) 2016-04-14 08:09:01 <-- dx (~dx@unaffiliated/dxdx) a quitté (*.net *.split) 2016-04-14 08:09:01 <-- Jeebiss (sid25046@gateway/web/irccloud.com/x-vfihlkaqbgvgaqmm) a quitté (*.net *.split) 2016-04-14 08:09:01 <-- hkaga (~hkaga@2602:ffda:bbb::27bf:741e) a quitté (*.net *.split) 2016-04-14 08:09:01 <-- angal (angal@elmo.stole-your.pw) a quitté (*.net *.split) 2016-04-14 08:09:01 <-- prplz (prplz@when.i.am.bored.i.buy.silly.domains) a quitté (*.net *.split) 2016-04-14 08:09:01 <-- vemacs_ (~vemacs@jet.fuel.cant.melt.da.nkmem.es) a quitté (*.net *.split) 2016-04-14 08:09:02 <-- Z750 (bnc@2001:41d0:1:68a3::45) a quitté (*.net *.split) 2016-04-14 08:09:02 <-- cnr (~connor@unaffiliated/conehead) a quitté (*.net *.split) 2016-04-14 08:09:02 -- Aikar_ est maintenant connu sous le nom Aikar 2016-04-14 08:09:02 -- SinZ_ est maintenant connu sous le nom SinZ 2016-04-14 08:09:02 -- Mode #mcdevs [+v SinZ] par ChanServ 2016-04-14 08:09:02 -- ryan`c est maintenant connu sous le nom ryan-c 2016-04-14 08:09:02 -- Akaibu_ est maintenant connu sous le nom Akaibu 2016-04-14 08:09:02 -- Brandon1- est maintenant connu sous le nom Brandon15811_ 2016-04-14 08:09:33 -- CharlesVien est maintenant connu sous le nom Charles 2016-04-14 08:09:38 --> realz (~realz@unaffiliated/realazthat) a rejoint #mcdevs 2016-04-14 08:10:03 -- Charles est maintenant connu sous le nom Guest444 2016-04-14 08:11:11 --> Extreme (extreme7@unaffiliated/extreme7) a rejoint #mcdevs 2016-04-14 08:12:16 <-- JustASlacker (~icke@213.83.43.18) a quitté (Ping timeout: 250 seconds) 2016-04-14 08:14:13 --> prplz (prplz@when.i.am.bored.i.buy.silly.domains) a rejoint #mcdevs 2016-04-14 08:47:28 <-- Guest61153 (~jamietech@jamietech.jbouncer.jamiete.ch) a quitté (Max SendQ exceeded) 2016-04-14 08:48:53 --> jamietech (~jamietech@jamietech.jbouncer.jamiete.ch) a rejoint #mcdevs 2016-04-14 08:51:02 --> inksatosh (uid157387@gateway/web/irccloud.com/x-vuabahtzhaufzdkx) a rejoint #mcdevs 2016-04-14 08:56:41 --> cnr (~connor@dragonfruit.coffeeman.me) a rejoint #mcdevs 2016-04-14 08:56:41 <-- cnr (~connor@dragonfruit.coffeeman.me) a quitté (Changing host) 2016-04-14 08:56:41 --> cnr (~connor@unaffiliated/conehead) a rejoint #mcdevs 2016-04-14 09:01:11 --> dx (~dx@unaffiliated/dxdx) a rejoint #mcdevs 2016-04-14 09:01:32 -- jamietech est maintenant connu sous le nom Guest61153 2016-04-14 09:02:02 -- Guest61153 est maintenant connu sous le nom jamietech 2016-04-14 09:02:59 --> Z750 (bnc@2001:41d0:1:68a3::45) a rejoint #mcdevs 2016-04-14 09:03:03 --> Sudzzy (~Sudzzy@2607:5300:60:326e::1) a rejoint #mcdevs 2016-04-14 09:04:05 --> Jeebiss (sid25046@gateway/web/irccloud.com/x-ejejhbxaetmcuwjz) a rejoint #mcdevs 2016-04-14 09:04:22 --> angal (angal@2600:3c01:e001:3980::8) a rejoint #mcdevs 2016-04-14 09:05:26 --> matthewprenger (~matthew@2607:5300:60:1d6::1) a rejoint #mcdevs 2016-04-14 09:13:04 <-- Akaibu (uid118096@gateway/web/irccloud.com/x-brisqemxsffwbyxq) a quitté (Remote host closed the connection) 2016-04-14 09:15:52 <-- coolsa (~coolsa@unaffiliated/coolsa) a quitté (Remote host closed the connection) 2016-04-14 09:18:13 --> redstonehelper (~redstoneh@p4FCCF3F8.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-14 09:18:13 <-- redstonehelper (~redstoneh@p4FCCF3F8.dip0.t-ipconnect.de) a quitté (Changing host) 2016-04-14 09:18:13 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2016-04-14 09:42:41 <-- enchi (enchilado@defocus/yummy/enchilado) a quitté (Ping timeout: 264 seconds) 2016-04-14 09:48:28 <-- fortytwo (~thomas@who.let.this.bloody.dropbear.in) a quitté (Ping timeout: 250 seconds) 2016-04-14 09:50:07 --> fortytwo (~thomas@who.let.this.bloody.dropbear.in) a rejoint #mcdevs 2016-04-14 10:00:37 --> enchi (enchilado@defocus/yummy/enchilado) a rejoint #mcdevs 2016-04-14 10:07:52 -- zz_r04r est maintenant connu sous le nom r04r 2016-04-14 10:11:45 --> Amaranth (~travis@ubuntu/member/Amaranth) a rejoint #mcdevs 2016-04-14 10:11:45 -- Mode #mcdevs [+v Amaranth] par ChanServ 2016-04-14 10:14:27 --> Guyag (~Guyag@162.221.176.50) a rejoint #mcdevs 2016-04-14 10:14:48 --> barneygale (~barneygal@90.197.153.24) a rejoint #mcdevs 2016-04-14 10:23:56 <-- barneygale (~barneygal@90.197.153.24) a quitté (Ping timeout: 252 seconds) 2016-04-14 10:47:04 --> l4mRh4X0r (l4mRh4X0r@l4mrh4x0r.student.ipv6.utwente.nl) a rejoint #mcdevs 2016-04-14 11:24:29 <-- programmerq (~jefferya@unaffiliated/programmerq) a quitté (Read error: Connection reset by peer) 2016-04-14 11:27:59 <-- Jeebiss (sid25046@gateway/web/irccloud.com/x-ejejhbxaetmcuwjz) a quitté (Ping timeout: 244 seconds) 2016-04-14 11:32:09 <-- Harry (~Harry@46.101.12.90) a quitté (Ping timeout: 252 seconds) 2016-04-14 11:32:09 <-- fragmer_ (~fragmer@45.55.2.85) a quitté (Ping timeout: 252 seconds) 2016-04-14 11:32:41 <-- ylt (ylt@d3s.co) a quitté (Ping timeout: 252 seconds) 2016-04-14 11:32:41 <-- umby24 (umby@d3s.co) a quitté (Ping timeout: 252 seconds) 2016-04-14 11:32:48 --> Harry (~Harry@46.101.12.90) a rejoint #mcdevs 2016-04-14 11:33:48 <-- Aikar (~Aikar@wikia/Aikar) a quitté (Ping timeout: 252 seconds) 2016-04-14 11:33:48 <-- unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a quitté (Ping timeout: 252 seconds) 2016-04-14 11:33:57 --> unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a rejoint #mcdevs 2016-04-14 11:34:20 <-- n3rd_ (n3rd@Hoth.Shadow-Dev.org) a quitté (Ping timeout: 252 seconds) 2016-04-14 11:36:06 --> n3rd (n3rd@Hoth.Shadow-Dev.org) a rejoint #mcdevs 2016-04-14 11:37:51 --> umby24 (umby@d3s.co) a rejoint #mcdevs 2016-04-14 11:40:03 --> Aikar (~Aikar@wikia/Aikar) a rejoint #mcdevs 2016-04-14 11:43:39 --> ylt (ylt@d3s.co) a rejoint #mcdevs 2016-04-14 11:49:15 --> Jeebiss (sid25046@gateway/web/irccloud.com/x-cexfhpszwzcmuovf) a rejoint #mcdevs 2016-04-14 11:49:34 --> fragmer (~fragmer@45.55.2.85) a rejoint #mcdevs 2016-04-14 11:49:34 -- Mode #mcdevs [+v fragmer] par ChanServ 2016-04-14 12:22:27 --> Black-Hole (~BlackHole@p5B2CCFAE.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-14 12:24:27 <-- BlackHole (~BlackHole@p2003007E4F0F0B002D5ACE16F51AB982.dip0.t-ipconnect.de) a quitté (Ping timeout: 260 seconds) 2016-04-14 13:22:41 <-- md_5 (~md_5@mcdevs/trusted/md-5) a quitté (Ping timeout: 244 seconds) 2016-04-14 13:25:10 --> md_5 (~md_5@mcdevs/trusted/md-5) a rejoint #mcdevs 2016-04-14 13:25:10 -- Mode #mcdevs [+v md_5] par ChanServ 2016-04-14 13:29:24 <-- AlphaBlend (~whizkid30@71.118.183.40) a quitté (Ping timeout: 244 seconds) 2016-04-14 13:30:15 --> AlphaBlend (~whizkid30@71.118.183.40) a rejoint #mcdevs 2016-04-14 13:40:44 <-- bildramer (~bildramer@p5DC8ADCC.dip0.t-ipconnect.de) a quitté (Ping timeout: 244 seconds) 2016-04-14 13:40:49 --> bildramer1 (~bildramer@p5DC8ADCC.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-14 13:40:52 -- bildramer1 est maintenant connu sous le nom bildramer 2016-04-14 13:58:14 rom1504 "Yes! Minecraft Realms will support cross-platform play between the iOS, Android, Windows Phone, and Windows 10 editions of Minecraft. We’re using Xbox Live logins to make that possible" 2016-04-14 13:58:16 rom1504 oh right 2016-04-14 13:58:46 rom1504 so we'll need to implement xbox live login to make mcpe client/server then oO 2016-04-14 14:00:43 rom1504 hopefully microsoft aren't actively doing things against custom xbox live clients 2016-04-14 14:03:43 --> bildramer1 (~bildramer@p5DC8ADCC.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-14 14:05:26 <-- edk (~edk@spy/edk0) a quitté (Ping timeout: 250 seconds) 2016-04-14 14:05:52 <-- _123DMWM (~123DMWM@c-73-238-243-94.hsd1.ma.comcast.net) a quitté (Ping timeout: 250 seconds) 2016-04-14 14:06:19 --> _123DMWM (~123DMWM@c-73-238-243-94.hsd1.ma.comcast.net) a rejoint #mcdevs 2016-04-14 14:09:20 <-- AlJaMa_ (~quassel@unaffiliated/aljama) a quitté (Ping timeout: 250 seconds) 2016-04-14 14:10:17 --> Grum_ (~grum@irc.grum.nl) a rejoint #mcdevs 2016-04-14 14:10:17 -- Mode #mcdevs [+v Grum_] par ChanServ 2016-04-14 14:10:22 --> AlJaMa (~quassel@unaffiliated/aljama) a rejoint #mcdevs 2016-04-14 14:11:11 <-- bildramer (~bildramer@p5DC8ADCC.dip0.t-ipconnect.de) a quitté (*.net *.split) 2016-04-14 14:11:11 <-- Grum (~grum@irc.grum.nl) a quitté (*.net *.split) 2016-04-14 14:11:13 -- Grum_ est maintenant connu sous le nom Grum 2016-04-14 14:14:32 <-- Meeeh (~Meeeh@diorite.org) a quitté (Ping timeout: 250 seconds) 2016-04-14 14:15:14 --> edk (edk@spy/edk0) a rejoint #mcdevs 2016-04-14 14:17:39 --> Meeeh (~Meeeh@diorite.org) a rejoint #mcdevs 2016-04-14 14:26:14 --> Akaibu (uid118096@gateway/web/irccloud.com/x-iauilrljnfbvprdo) a rejoint #mcdevs 2016-04-14 14:31:52 <-- Dadido3_ (~quassel@p5B00AF94.dip0.t-ipconnect.de) a quitté (Ping timeout: 250 seconds) 2016-04-14 14:34:07 --> Dadido3 (~quassel@p5B00AF94.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-14 14:35:29 <-- hansihe (sid106603@gateway/web/irccloud.com/x-xdkzkusxxaobphre) a quitté (Ping timeout: 264 seconds) 2016-04-14 14:39:36 --> hansihe (sid106603@gateway/web/irccloud.com/x-shrlvebndnmczdow) a rejoint #mcdevs 2016-04-14 15:15:49 --> BlackHole (~BlackHole@p2003007E4F0F0B002D5ACE16F51AB982.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-14 15:16:16 --> Harry_ (~Harry@46.101.12.90) a rejoint #mcdevs 2016-04-14 15:16:18 --> williammck_ (~williammc@pluto.williammck.net) a rejoint #mcdevs 2016-04-14 15:16:29 --> md_5- (~md_5@mcdevs/trusted/md-5) a rejoint #mcdevs 2016-04-14 15:16:29 -- Mode #mcdevs [+v md_5-] par ChanServ 2016-04-14 15:16:40 --> dexter0_ (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a rejoint #mcdevs 2016-04-14 15:17:18 --> umby24_ (umby@d3s.co) a rejoint #mcdevs 2016-04-14 15:17:20 <-- md_5 (~md_5@mcdevs/trusted/md-5) a quitté (Ping timeout: 276 seconds) 2016-04-14 15:17:20 <-- umby24 (umby@d3s.co) a quitté (Ping timeout: 276 seconds) 2016-04-14 15:17:20 <-- Harry (~Harry@46.101.12.90) a quitté (Ping timeout: 276 seconds) 2016-04-14 15:17:20 <-- williammck (~williammc@unaffiliated/williammck) a quitté (Ping timeout: 276 seconds) 2016-04-14 15:17:24 -- Harry_ est maintenant connu sous le nom Harry 2016-04-14 15:17:41 <-- yorick (~yorick@oftn/oswg-member/yorick) a quitté (Read error: Connection reset by peer) 2016-04-14 15:18:07 <-- Dadido3 (~quassel@p5B00AF94.dip0.t-ipconnect.de) a quitté (Ping timeout: 276 seconds) 2016-04-14 15:18:07 <-- Black-Hole (~BlackHole@p5B2CCFAE.dip0.t-ipconnect.de) a quitté (Ping timeout: 276 seconds) 2016-04-14 15:18:08 <-- Aikar (~Aikar@wikia/Aikar) a quitté (Ping timeout: 276 seconds) 2016-04-14 15:18:08 <-- Deaygo (~Deaygo@107.161.31.15) a quitté (Ping timeout: 276 seconds) 2016-04-14 15:18:08 <-- dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a quitté (Ping timeout: 276 seconds) 2016-04-14 15:18:08 <-- PhonicUK (~PhonicUK@pdpc/supporter/student/phonicuk) a quitté (Ping timeout: 276 seconds) 2016-04-14 15:18:14 -- dexter0_ est maintenant connu sous le nom dexter0 2016-04-14 15:18:19 --> Deaygo (~Deaygo@107.161.31.15) a rejoint #mcdevs 2016-04-14 15:18:30 --> yorick (~yorick@oftn/oswg-member/yorick) a rejoint #mcdevs 2016-04-14 15:18:49 --> Aikar (~Aikar@web01.starlis.com) a rejoint #mcdevs 2016-04-14 15:18:53 <-- Aikar (~Aikar@web01.starlis.com) a quitté (Changing host) 2016-04-14 15:18:53 --> Aikar (~Aikar@wikia/Aikar) a rejoint #mcdevs 2016-04-14 15:19:53 --> Dadido3 (~quassel@p5B00AF94.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-04-14 15:21:31 --> PhonicUK (~PhonicUK@pdpc/supporter/student/phonicuk) a rejoint #mcdevs 2016-04-14 15:37:53 <-- AlphaBlend (~whizkid30@71.118.183.40) a quitté (Ping timeout: 264 seconds)