2017-06-15 04:02:34 <-- Gjum (~Gjum@37.120.66.254) a quitté (Ping timeout: 246 seconds) 2017-06-15 04:08:03 --> UUID00 (~UUID00@BSN-143-109-113.dynamic.siol.net) a rejoint #mcdevs 2017-06-15 04:20:19 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-15 04:44:15 <-- timmyRS (~timmyRS@149.202.144.172) a quitté (Quit: Disconnected from Bouncer) 2017-06-15 04:44:49 <-- OkAlt (~OkAlt@S0106bcd16566972b.lb.shawcable.net) a quitté (Read error: Connection reset by peer) 2017-06-15 04:45:22 --> OkAlt (~OkAlt@S0106bcd16566972b.lb.shawcable.net) a rejoint #mcdevs 2017-06-15 04:52:34 --> timmyRS (~timmyRS@b1.nex.li) a rejoint #mcdevs 2017-06-15 04:57:49 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2017-06-15 04:58:11 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2017-06-15 04:58:35 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-15 05:00:23 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-15 05:00:31 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Quit: NathanWolf) 2017-06-15 05:05:11 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-06-15 05:29:45 --> Gjum (~Gjum@37.120.9.218) a rejoint #mcdevs 2017-06-15 06:02:29 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Quit: NathanWolf) 2017-06-15 06:14:42 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-15 06:16:59 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 240 seconds) 2017-06-15 06:16:59 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-06-15 07:16:35 <-- timmyRS (~timmyRS@b1.nex.li) a quitté (Quit: Bouncer) 2017-06-15 07:17:49 --> timmyRS (~timmyRS@b1.nex.li) a rejoint #mcdevs 2017-06-15 07:53:12 <-- gentauro (~gentauro@xd520f246.cust.hiper.dk) a quitté (Ping timeout: 240 seconds) 2017-06-15 07:55:13 --> gentauro (~gentauro@xd520f246.cust.hiper.dk) a rejoint #mcdevs 2017-06-15 09:25:58 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Quit: redstonehelper) 2017-06-15 09:56:59 <-- PolarizedIons (~Polarized@unaffiliated/polarizedions) a quitté (Ping timeout: 240 seconds) 2017-06-15 11:05:06 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-06-15 11:13:30 --> SnowyCoder (97436eb8@gateway/web/freenode/ip.151.67.110.184) a rejoint #mcdevs 2017-06-15 11:13:48 SnowyCoder Hello, is anyone online? 2017-06-15 11:14:15 timmyRS Yes 2017-06-15 11:15:24 SnowyCoder When does MC client load chunks? and when does the server send them? 2017-06-15 11:16:04 timmyRS The sending of the chunks is maintained only by the server as far as I'm concerned. When the client connects (and changes it settings) it informs the server about its render distance. 2017-06-15 11:17:25 timmyRS These may help you further: http://wiki.vg/Protocol#Client_Settings and http://wiki.vg/Protocol#Chunk_Data 2017-06-15 11:17:50 SnowyCoder But what if the server does not send any ChunkUnload packet or if it sends a load packet (ChunkData) that is out of his ViewDistance 2017-06-15 11:19:05 timmyRS I believe the client caches all chunks sent to it and is able to work with out-of-view chunks without error. 2017-06-15 11:20:19 SnowyCoder Ok, thanks 2017-06-15 11:23:21 rom1504 the server can crash the client in many ways 2017-06-15 11:23:44 rom1504 so yeah it can probably fill the client memory with chunks 2017-06-15 11:23:58 SnowyCoder lol 2017-06-15 11:24:26 rom1504 played correctly, this can probably crash the computer too 2017-06-15 11:27:38 timmyRS I managed to crash 1.8 to 1.10 just by setting the current slot to 0x AIR instead of -1 2017-06-15 13:10:12 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-15 13:15:29 SnowyCoder If you were able to rewrite the MC protocol from scratch, where would you put the chunk management? on the server (like in the current protocol) or in the client (client asks for chunks and the server sends them)? 2017-06-15 13:16:19 Tachyon_ server 2017-06-15 13:16:31 SnowyCoder why? 2017-06-15 13:17:16 Tachyon_ what if I don't want to sned a specific chunk 2017-06-15 13:17:36 SnowyCoder You don't answer the request 2017-06-15 13:17:43 Tachyon_ what if the client will ask for I-don't-know-what chunk 2017-06-15 13:18:06 Tachyon_ I still have to check if the chunk he asked for is around him 2017-06-15 13:18:28 SnowyCoder if it isn't the server would simply not answer 2017-06-15 13:18:45 Tachyon_ exactly 2017-06-15 13:18:52 Tachyon_ now I have to check on both server and client 2017-06-15 13:18:55 +Dinnerbone What would the benefit of client authoritative chunks be? 2017-06-15 13:19:01 Tachyon_ the server still does the same work 2017-06-15 13:19:06 Tachyon_ and now so does the client 2017-06-15 13:19:07 +Dinnerbone You'd introduce much bigger latency, less caching potential, and lots of error cases. 2017-06-15 13:20:26 SnowyCoder I know (and I think the chunk management should be in the server too), just asking 2017-06-15 13:20:54 --> loryruta (5d249e38@gateway/web/freenode/ip.93.36.158.56) a rejoint #mcdevs 2017-06-15 13:20:59 loryruta Hi all guys :D 2017-06-15 13:21:07 SnowyCoder If the client could manage the chunks he could be more optimized if the shape isn't always a square 2017-06-15 13:21:39 SnowyCoder like, if a user wants to view chunks in the shape of a circle 2017-06-15 13:22:19 * Tachyon_ kills the user 2017-06-15 13:31:27 <-- Dadido3 (~quassel@p5B00AA5A.dip0.t-ipconnect.de) a quitté (Ping timeout: 246 seconds) 2017-06-15 13:33:48 --> Dadido3 (~quassel@p2003007A8B43B000C92C4BF4398B22B5.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-06-15 13:36:13 --> wingerse_ (~winger@103.31.86.147) a rejoint #mcdevs 2017-06-15 13:41:19 SnowyCoder What does the mc client do with chunks that aren't in view distance? does he simply ignore them? 2017-06-15 13:42:00 Tachyon_ I'm pretty sure it just don't render them 2017-06-15 13:42:15 SnowyCoder so they are still updated? 2017-06-15 13:42:29 Tachyon_ the server will still send updates for those chunks 2017-06-15 13:42:40 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-15 13:44:43 --> HoloIRCUser3 (~holoirc@95.76.184.120) a rejoint #mcdevs 2017-06-15 13:45:06 HoloIRCUser3 so it expects the client to know about them 2017-06-15 13:46:15 HoloIRCUser3 a chunk is unloaded when the server says so 2017-06-15 13:46:38 HoloIRCUser3 the client won't go nuts unloading what chunks it wants 2017-06-15 13:47:24 SnowyCoder Ok, thanks 2017-06-15 13:52:48 HoloIRCUser3 there's one pachet for unloading a chunk 2017-06-15 13:54:58 SnowyCoder And the Client Settings packet is sent at the login and every time the player changes its settings? 2017-06-15 13:59:29 HoloIRCUser3 I remember so 2017-06-15 13:59:45 HoloIRCUser3 but it's optionally as far as I remember 2017-06-15 14:00:01 HoloIRCUser3 what are you writing ? 2017-06-15 14:05:56 SnowyCoder Me and loryruta are writing a minecraft-like game that is based on mods 2017-06-15 14:06:36 SnowyCoder But if the packet containing the render distance is optional there is a default render distance for the server, right= 2017-06-15 14:06:38 SnowyCoder *? 2017-06-15 14:07:37 SnowyCoder p.s. we aren't copying MC, but wince we are kinda noobs we are looking at how others solved problems to take inspiration 2017-06-15 14:07:48 SnowyCoder *since 2017-06-15 14:09:31 +Dinnerbone The vanilla minecraft server does not listen or care about the clients render distance 2017-06-15 14:09:43 HoloIRCUser3 I'm not even sure the server cares about what the clients says in the settings packet 2017-06-15 14:10:07 +Dinnerbone If it did, there would be abuse potential. "I have a small distance, I have a huge distance, I have a small distance, I have a huge distance" - server has to kick out a lot of data. 2017-06-15 14:11:13 +Dinnerbone Going above the servers own chunk distance would allow you to basically crash the server with absurd values, or give you such an unfair gameplay advantage 2017-06-15 14:12:47 SnowyCoder Ok but if the server had a max render distance (and if we could find a solution to the abuse) we could save a lot of chunks to send 2017-06-15 14:13:05 MiniDigger doesn't the server send the minimum of client and server render distance? 2017-06-15 14:13:11 MiniDigger or am I confusing something here? 2017-06-15 14:14:07 +Dinnerbone The vanilla server does not 2017-06-15 14:19:35 +Dinnerbone SnowyCoder: yes theoretically you can save some bandwidth. But it's not worth the tradeoffs, and it'd be a terrible user experience if you're too strict on throttling - or not strict enough 2017-06-15 14:23:55 SnowyCoder Ok, thank you 2017-06-15 14:33:35 wingerse_ I have implemented writing chunks for my server but the client only renders the first chunk section. Ground up continuous is also set to true and I'm setting Primary bit mask correctly and the other chunk sections are also being sent to the client. If I send more then a chunk section, the client doesn't render the blocks but I can see the outline sometimes. What could have gone wrong? 2017-06-15 15:05:16 rom1504 you need to send the chunks around the player first I think 2017-06-15 15:05:27 rom1504 maybe a radius of 3 2017-06-15 15:05:35 rom1504 when the client connects 2017-06-15 15:05:40 rom1504 after that you can send the rest 2017-06-15 15:06:04 rom1504 I'm not sure what's the rule exactly but I remember something like that had to be done so it would work 2017-06-15 15:19:48 wingerse_ yes I read that I had to send 49 chunks and I did that too 2017-06-15 15:29:18 rom1504 how much chunk is in the client cache ? 2017-06-15 15:35:50 wingerse_ how do I see that? 2017-06-15 15:40:57 rom1504 press f8 I think 2017-06-15 15:41:03 rom1504 "multiplayer chunk cache" 2017-06-15 15:42:29 HoloIRCUser3 I don't think the client cares (anymore) 2017-06-15 15:42:38 HoloIRCUser3 as long as the chunks are correct 2017-06-15 15:43:17 HoloIRCUser3 but in my experience the client won't render the border chunks 2017-06-15 15:43:43 wingerse_ MultiplayerChunkCache is 81,81 2017-06-15 15:44:52 wingerse_ I spawn my player at x:0,y:32,z:0 and send chunks -4 x to +4 and -4 z to +4 so it makes 49 2017-06-15 15:45:37 wingerse_ if I make the chunk 32 height with 2 chunk sections, the blocks don't render and the player falls to y=16 2017-06-15 15:48:15 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-15 16:01:58 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-06-15 16:28:51 <-- HoloIRCUser3 (~holoirc@95.76.184.120) a quitté (Quit: HoloIRCUser3) 2017-06-15 16:45:09 --> chrismin13 (5b8a8e84@gateway/web/freenode/ip.91.138.142.132) a rejoint #mcdevs 2017-06-15 16:45:17 chrismin13 Hello! 2017-06-15 16:45:58 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-15 16:48:31 <-- chrismin13 (5b8a8e84@gateway/web/freenode/ip.91.138.142.132) a quitté (Client Quit) 2017-06-15 16:49:19 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Client Quit) 2017-06-15 16:56:38 Tachyon_ hi 2017-06-15 17:00:05 --> DepolarizedIons (~Polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2017-06-15 17:06:34 -- DepolarizedIons est maintenant connu sous le nom PolarizedIons 2017-06-15 17:46:59 --> NathanWolf_ (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-06-15 17:47:29 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Ping timeout: 240 seconds) 2017-06-15 18:02:11 <-- gentauro (~gentauro@xd520f246.cust.hiper.dk) a quitté (Ping timeout: 240 seconds) 2017-06-15 18:04:29 --> gentauro (~gentauro@xd520f246.cust.hiper.dk) a rejoint #mcdevs 2017-06-15 19:31:02 <-- wingerse_ (~winger@103.31.86.147) a quitté (Read error: Connection reset by peer) 2017-06-15 19:56:28 <-- loryruta (5d249e38@gateway/web/freenode/ip.93.36.158.56) a quitté (Quit: Page closed) 2017-06-15 21:03:20 <-- chibill (~chibill@2602:306:ce43:b390:5897:84ff:fee1:de34) a quitté (Quit: ZNC - http://znc.in) 2017-06-15 21:03:52 --> chibill (~chibill@2602:306:ce43:b390:5897:84ff:fee1:de34) a rejoint #mcdevs 2017-06-15 21:06:14 <-- chibill (~chibill@2602:306:ce43:b390:5897:84ff:fee1:de34) a quitté (Client Quit) 2017-06-15 21:10:15 --> chibill (~chibill@2602:306:ce43:b390:5897:84ff:fee1:de34) a rejoint #mcdevs 2017-06-15 21:45:52 <-- samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a quitté (Ping timeout: 260 seconds) 2017-06-15 21:53:21 --> samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a rejoint #mcdevs 2017-06-15 21:55:25 timmyRS Are there any future plans to improve the "Vanilla Anti Cheat", as it only blocks fly cheats? 2017-06-15 21:59:18 pokechu22 Probably not by much 2017-06-15 22:08:13 MiniDigger don't feel like its worth for mojang to join that cat and mouse game 2017-06-15 22:10:02 timmyRS Yeah, but I feel obvious things like Phase are very easy to prevent without there being "bypasses" 2017-06-15 23:14:49 SnowyCoder Just to confirm, Is there something like a PlayerChunkMap for the client? to keep trak at the chunks to render? 2017-06-15 23:16:34 pokechu22 The client maintains a list and a map of all loaded chunks. For rendering, I'm not entirely sure (I've never touched that portion, and there's some things where chunks are rendered once and then re-used) 2017-06-15 23:19:36 SnowyCoder I think that, you should always call something to tell the driver that he needs to reuse that chunk, at least thats what I heard from the graphics dev. on my team 2017-06-15 23:20:38 pokechu22 I think that's what VBOs are (which MC supports) 2017-06-15 23:23:54 SnowyCoder MC client needs to have something that keeps track of VBOs right? 2017-06-15 23:24:17 pokechu22 I have no clue how any of the rendering code works, sorry 2017-06-15 23:38:01 chibill so MC works pretty well. 2017-06-15 23:38:09 chibill on old hardware 2017-06-15 23:39:02 chibill like a AMD Athlon LE-1640 with a GeForce 7600 2017-06-15 23:39:17 chibill and only 200 MB given to Java of the 1GB installed. 2017-06-15 23:39:52 chibill sounds crazy to get 50 FPS on an old XP but hay it did. 2017-06-15 23:40:24 timmyRS I think part of the success of MC and CS:GO is the support for old and/or bad hardware. 2017-06-15 23:41:02 chibill I mean like on that old of stuff still getting 50 fps 2017-06-16 00:03:21 <-- SnowyCoder (97436eb8@gateway/web/freenode/ip.151.67.110.184) a quitté (Ping timeout: 260 seconds) 2017-06-16 00:23:58 <-- EW8GU (admin@ho.by) a quitté (Read error: Connection reset by peer) 2017-06-16 00:25:54 Tachyon_ I can't run mc on my old computer 2017-06-16 00:27:01 timmyRS How old? I don't think there is a DOS version of Minecraft, even tho that would be an interesting project. 2017-06-16 00:29:25 --> EW8GU (admin@ho.by) a rejoint #mcdevs 2017-06-16 00:38:46 Tachyon_ 2007 2017-06-16 00:45:04 chibill tach this is older. 2017-06-16 00:45:08 chibill ;p 2017-06-16 01:26:36 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-16 02:05:13 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Read error: Connection reset by peer) 2017-06-16 02:18:49 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-16 02:36:02 <-- ajvpot (~ajvpot@the.motherfuckin.ddosshield.net) a quitté (Read error: Connection reset by peer) 2017-06-16 02:39:14 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-16 02:52:46 --> ajvpot (~ajvpot@the.motherfuckin.ddosshield.net) a rejoint #mcdevs 2017-06-16 04:03:42 <-- mbaxter (~mbax@mcblockit/staff/mbaxter) a quitté (Quit: muahahahahahaha) 2017-06-16 04:17:15 --> mbaxter (~mbax@mcblockit/staff/mbaxter) a rejoint #mcdevs 2017-06-16 04:52:55 <-- NathanWolf_ (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Quit: NathanWolf_) 2017-06-16 05:00:49 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-06-16 05:27:39 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-06-16 05:29:49 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-16 05:33:57 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Ping timeout: 240 seconds) 2017-06-16 05:36:03 <-- UUID00 (~UUID00@BSN-143-109-113.dynamic.siol.net) a quitté (Ping timeout: 255 seconds) 2017-06-16 06:02:37 <-- KHobbits (khf@2600:3c03::21:1210) a quitté (Remote host closed the connection) 2017-06-16 06:08:58 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Read error: Connection reset by peer) 2017-06-16 06:14:10 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-16 06:18:36 --> KHobbits (khf@2600:3c03::21:1210) a rejoint #mcdevs 2017-06-16 07:58:33 <-- Techcable (znc@irc.techcable.net) a quitté (Quit: ZNC - http://znc.in) 2017-06-16 07:59:47 <-- bildramer (~bildramer@p200300ED83CC7F00DC73D0F8A5175D68.dip0.t-ipconnect.de) a quitté (Ping timeout: 246 seconds) 2017-06-16 08:00:35 --> bildramer (~bildramer@p2E5141D5.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-06-16 08:02:55 --> Techcable (znc@irc.techcable.net) a rejoint #mcdevs 2017-06-16 09:10:27 <-- kev009 (~kev009@tempe0.bbox.io) a quitté (Ping timeout: 240 seconds) 2017-06-16 09:37:13 --> SnowyCoder (~snowy@151.67.110.184) a rejoint #mcdevs 2017-06-16 09:41:19 --> kev009 (~kev009@tempe0.bbox.io) a rejoint #mcdevs 2017-06-16 09:41:21 -- Mode #mcdevs [+v kev009] par ChanServ 2017-06-16 09:45:46 <-- kev009 (~kev009@tempe0.bbox.io) a quitté (Remote host closed the connection) 2017-06-16 09:46:15 --> kev009 (~kev009@tempe0.bbox.io) a rejoint #mcdevs 2017-06-16 09:46:15 -- Mode #mcdevs [+v kev009] par ChanServ 2017-06-16 09:55:36 SnowyCoder Why is EntityPlayerMP in the common packet but EntityPlayerSP in the client packet? 2017-06-16 09:57:23 +md_5 ? 2017-06-16 09:57:32 +md_5 that sounds like a modding question 2017-06-16 09:58:16 SnowyCoder ah sorry, aren't they allowed here? 2017-06-16 09:58:22 SnowyCoder my fault 2017-06-16 10:01:27 +md_5 its allowed but probably better places to get an answer 2017-06-16 10:01:38 +md_5 the answer in this case is "it just is" 2017-06-16 10:05:24 SnowyCoder Is this the right place for questions on MC's network system 2017-06-16 10:09:05 SnowyCoder ah wait, there's really a class named network system? 2017-06-16 10:09:34 SnowyCoder No I was say the way that MC manages serialization 2017-06-16 10:13:04 +md_5 this is generally for complete reimplementations of the network / details of the protocol, not about vanilla classes 2017-06-16 10:14:28 <-- protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a quitté (Ping timeout: 240 seconds) 2017-06-16 10:16:20 --> protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-06-16 11:14:19 <-- gentauro (~gentauro@xd520f246.cust.hiper.dk) a quitté (Ping timeout: 240 seconds) 2017-06-16 11:16:32 --> gentauro (~gentauro@xd520f246.cust.hiper.dk) a rejoint #mcdevs 2017-06-16 11:34:31 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2017-06-16 11:34:54 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-16 11:40:19 --> UUID00 (~UUID00@BSN-143-109-113.dynamic.siol.net) a rejoint #mcdevs 2017-06-16 12:00:28 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-06-16 14:59:52 <-- SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a quitté (Ping timeout: 240 seconds) 2017-06-16 15:11:32 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-16 15:12:37 <-- Gjum (~Gjum@37.120.9.218) a quitté (Ping timeout: 255 seconds) 2017-06-16 15:20:58 <-- gentauro (~gentauro@xd520f246.cust.hiper.dk) a quitté (Ping timeout: 240 seconds) 2017-06-16 15:22:44 --> gentauro (~gentauro@xd520f246.cust.hiper.dk) a rejoint #mcdevs 2017-06-16 15:31:29 chibill well that's was rude..... 2017-06-16 15:41:30 --> wingerse (~winger@124.195.196.189) a rejoint #mcdevs 2017-06-16 15:42:04 wingerse hey guys, which packet does the server send for sneaking? 2017-06-16 15:44:14 MiniDigger entity action 2017-06-16 15:44:39 MiniDigger oh wait, thats the other direction iirc 2017-06-16 15:45:54 MiniDigger I think server sends it as part of the entity status packet 2017-06-16 15:46:16 MiniDigger or metadata, not sure 2017-06-16 15:53:13 wingerse yeah just found out it's in entity metadata. 2017-06-16 15:54:36 wingerse and by the way, how frequently does the official minecraft server handle packets? One packet per player per tick? 2017-06-16 16:01:56 rom1504 Why would network handling be tick synchronised ? 2017-06-16 16:03:39 wingerse The server does stuff in ticks, soo.. i'm not talking about receiving packets 2017-06-16 16:09:32 --> SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-06-16 16:09:32 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2017-06-16 16:13:23 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-16 16:17:15 --> hsaio (~hsaio@99-68-158-101.lightspeed.rcsntx.sbcglobal.net) a rejoint #mcdevs 2017-06-16 16:52:37 pokechu22 If I recall correctly, 1 packet per tick - they're read asnchronously, but then queued for synchronous processing. (But, I also remember the chat packet being processed async, but that may be bukkit-only) 2017-06-16 17:08:24 --> Gjum (~Gjum@37.120.39.166) a rejoint #mcdevs 2017-06-16 17:17:16 --> wingerse_ (~winger@124.195.196.189) a rejoint #mcdevs 2017-06-16 17:18:30 <-- wingerse (~winger@124.195.196.189) a quitté (Ping timeout: 246 seconds) 2017-06-16 17:56:33 <-- wingerse_ (~winger@124.195.196.189) a quitté (Quit: Leaving) 2017-06-16 18:31:50 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-16 18:46:09 timmyRS I might be a bit late to the talk, but my server handles all packets in async. workers and only block changes are queued sync. to deal with block updates and to send Multi Block Change. 2017-06-16 18:47:07 Not-75c6 [Charge] Wallbraker pushed 6 commits to master [+0/-0/±8] https://github.com/VoltLang/Charge/compare/0cf8e04ada12...3d0d97417d2b 2017-06-16 18:47:08 Not-75c6 [Charge] Wallbraker f5f3f07 - voxel: Refactor out toBuffer helper 2017-06-16 18:47:10 Not-75c6 [Charge] Wallbraker 179c351 - voxel: Make it possible to test two different points pipeline 2017-06-16 18:47:11 Not-75c6 [Charge] Wallbraker 38a998c - gfx: Silence correctly compiled shaders printing 2017-06-16 18:47:13 Not-75c6 [Charge] ... and 3 more commits. 2017-06-16 18:50:32 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-16 18:53:15 Not-75c6 [Charge] Wallbraker pushed 1 commit to master [+0/-0/±1] https://github.com/VoltLang/Charge/compare/3d0d97417d2b...48b47f6d9541 2017-06-16 18:53:16 Not-75c6 [Charge] Wallbraker 48b47f6 - gfx: Fix shader code 2017-06-16 18:58:06 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-16 19:27:23 Not-75c6 [Charge] Wallbraker pushed 1 commit to master [+0/-0/±1] https://github.com/VoltLang/Charge/compare/48b47f6d9541...54ccdcecd94c 2017-06-16 19:27:25 Not-75c6 [Charge] Wallbraker 54ccdce - math: Refactor color code 2017-06-16 19:31:40 Not-75c6 [Charge] Wallbraker pushed 1 commit to master [+0/-0/±1] https://github.com/VoltLang/Charge/compare/54ccdcecd94c...d5cfefaa31a0 2017-06-16 19:31:42 Not-75c6 [Charge] Wallbraker d5cfefa - power: Fix compile 2017-06-16 19:54:48 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-16 20:21:11 --> barneygale_ (~barneygal@90.201.107.104) a rejoint #mcdevs 2017-06-16 20:21:19 <-- barneygale (~barneygal@mail.thefoundry.co.uk) a quitté (Disconnected by services) 2017-06-16 20:21:23 -- barneygale_ est maintenant connu sous le nom barneygale 2017-06-16 20:21:44 --> barneygale_ (~barneygal@mail.thefoundry.co.uk) a rejoint #mcdevs 2017-06-16 20:30:52 <-- SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a quitté (Ping timeout: 240 seconds) 2017-06-16 20:45:55 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-16 20:46:07 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Read error: Connection reset by peer) 2017-06-16 21:02:21 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-16 21:28:17 <-- gentauro (~gentauro@xd520f246.cust.hiper.dk) a quitté (Ping timeout: 258 seconds) 2017-06-16 21:28:17 Tachyon_ do bungeecord can support premium servers ? 2017-06-16 21:29:23 --> SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-06-16 21:29:23 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2017-06-16 21:29:58 --> gentauro (~gentauro@xd520f246.cust.hiper.dk) a rejoint #mcdevs 2017-06-16 21:30:21 pokechu22 Bungeecord does something weird with that; I don't know the full story but I believe you need to have authentication off of the individual servers, but on on bungee itself (since bungee doesn't know your login details, it can't login to the downstream servers) 2017-06-16 21:34:18 Tachyon_ I'm actually more interested in what a proxy/bridge would have to do to connect to a server 2017-06-16 21:34:35 Tachyon_ eg client connects to bridge, bridge connects to premium server 2017-06-16 21:35:52 Tachyon_ the bridge can understand the data flux 2017-06-16 21:49:22 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-16 22:26:38 <-- TobiX (tobias@zoidberg.org) a quitté (Ping timeout: 260 seconds) 2017-06-16 22:27:19 --> TobiX (tobias@zoidberg.org) a rejoint #mcdevs 2017-06-16 23:28:00 <-- SnowyCoder (~snowy@151.67.110.184) a quitté (Quit: Conversation terminated!) 2017-06-17 01:21:02 --> Miguel2706 (~quassel@wikipedia/miguel2706) a rejoint #mcdevs 2017-06-17 01:22:06 --> laxask (~lax@h-187-69.A328.priv.bahnhof.se) a rejoint #mcdevs 2017-06-17 01:22:45 --> DemonWav_ (~DemonWav@unaffiliated/demonwav) a rejoint #mcdevs 2017-06-17 01:24:18 --> MrARM_ (~MrARM@unaffiliated/mrarm) a rejoint #mcdevs 2017-06-17 01:25:25 --> PhonicUK2 (~PhonicUK@mcmyadm.in) a rejoint #mcdevs 2017-06-17 01:26:24 --> MiniDigger_ (~MiniDigge@some.random.host.cause.default.is.boring.minidigger.me) a rejoint #mcdevs 2017-06-17 01:26:35 <-- barneygale_ (~barneygal@mail.thefoundry.co.uk) a quitté (*.net *.split) 2017-06-17 01:26:36 <-- laxask_ (~lax@h-187-69.A328.priv.bahnhof.se) a quitté (*.net *.split) 2017-06-17 01:26:36 <-- MiniDigger (~MiniDigge@some.random.host.cause.default.is.boring.minidigger.me) a quitté (*.net *.split) 2017-06-17 01:26:36 <-- KernelFreeze (~quassel@wikipedia/miguel2706) a quitté (*.net *.split) 2017-06-17 01:26:37 <-- PhonicUK (~PhonicUK@pdpc/supporter/student/phonicuk) a quitté (*.net *.split) 2017-06-17 01:26:37 <-- pokechu22 (~pokechu22@50.35.67.138) a quitté (*.net *.split) 2017-06-17 01:26:37 <-- Zaneo (~Zaneo@45.55.2.85) a quitté (*.net *.split) 2017-06-17 01:26:37 <-- clonejo_ (~clonejo@shakik2.shakik.de) a quitté (*.net *.split) 2017-06-17 01:26:37 <-- DemonWav (~DemonWav@unaffiliated/demonwav) a quitté (*.net *.split) 2017-06-17 01:26:37 <-- MrARM (~MrARM@unaffiliated/mrarm) a quitté (*.net *.split) 2017-06-17 01:26:38 <-- willies952002 (~willies95@irc.domnian.com) a quitté (*.net *.split) 2017-06-17 01:26:38 -- MrARM_ est maintenant connu sous le nom MrARM 2017-06-17 01:27:13 --> clonejo_ (~clonejo@shakik2.shakik.de) a rejoint #mcdevs 2017-06-17 01:27:28 --> pokechu22 (~pokechu22@50.35.67.138) a rejoint #mcdevs 2017-06-17 01:29:30 --> Zaneo (~Zaneo@45.55.2.85) a rejoint #mcdevs 2017-06-17 01:29:30 -- Mode #mcdevs [+v Zaneo] par ChanServ 2017-06-17 01:31:25 --> barneygale_ (~barneygal@mail.thefoundry.co.uk) a rejoint #mcdevs 2017-06-17 01:31:25 --> willies952002 (~willies95@irc.domnian.com) a rejoint #mcdevs 2017-06-17 02:07:12 <-- barneygale (~barneygal@90.201.107.104) a quitté (Ping timeout: 240 seconds) 2017-06-17 03:45:18 <-- hsaio (~hsaio@99-68-158-101.lightspeed.rcsntx.sbcglobal.net) a quitté (Quit: Leaving) 2017-06-17 04:48:36 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Quit: NathanWolf) 2017-06-17 04:58:26 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-06-17 05:25:41 <-- UUID00 (~UUID00@BSN-143-109-113.dynamic.siol.net) a quitté (Ping timeout: 246 seconds) 2017-06-17 07:52:34 electronicboy With bungeecord, the bungeecord instance itself handles authentication with the session servers, the players IP and UUID is passed via the handshake packet by modifying the hostname to add that info, which is then read by the spigot server; Due to how sessions work, it wouldn't be possible to transfer people between servers without making them reconnect, hence why servers behind bungee need to be in offline mode 2017-06-17 08:09:49 timmyRS Someone at Mojang should probably fix Game State 7 freezing the game if the value is above 1. 2017-06-17 08:23:59 timmyRS Created an issue: https://bugs.mojang.com/browse/MC-118757 2017-06-17 08:25:36 +md_5 uh 2017-06-17 08:25:49 +md_5 something that doesnt have a way to reproduce in vanilla generally isnt a valid bug 2017-06-17 08:35:17 timmyRS So this means I will be able to freeze and be freezed in every version following 1.12? 2017-06-17 08:35:17 <-- Na (~Na@unaffiliated/na) a quitté (Ping timeout: 246 seconds) 2017-06-17 08:35:17 timmyRS I know I am not supposed to see the evil in everyone, but this can probably easily be fixed. 2017-06-17 08:36:34 --> Na (~Na@unaffiliated/na) a rejoint #mcdevs 2017-06-17 08:55:05 pokechu22 The problem is that there's a bunch of ways that the game can be broken by a malicious server 2017-06-17 09:00:22 timmyRS Sadly. 2017-06-17 09:39:29 <-- protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a quitté (Quit: WeeChat 1.7-rc2) 2017-06-17 09:44:03 +Amaranth Was Tachyon asking for the ability to mitm a random server? 2017-06-17 10:38:14 <-- gentauro (~gentauro@xd520f246.cust.hiper.dk) a quitté (Ping timeout: 246 seconds) 2017-06-17 10:40:03 --> gentauro (~gentauro@xd520f246.cust.hiper.dk) a rejoint #mcdevs 2017-06-17 11:21:48 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-06-17 12:46:57 <-- KnownUnown (KnownUnown@die.in.firrre.com) a quitté (Remote host closed the connection) 2017-06-17 13:15:21 x10A94 Hi. Using node-minecraft-protocol 1.3.0, the thing works for a split second, then disconnects with "Read error for name: 110 is not in the mappings value". The server says it disconnects gracefully, the app says "ECONNREFUSED". Happens in both lobby and main server. Was working fine until we transferred it to the same machine that the server is running on. 2017-06-17 13:17:52 x10A94 Nevermind, that was about my alert service that I didn't change the address for 2017-06-17 14:06:00 --> UUID00 (~UUID00@BSN-176-206-87.dynamic.siol.net) a rejoint #mcdevs 2017-06-17 14:24:11 --> barneygale (~barneygal@90.201.107.104) a rejoint #mcdevs 2017-06-17 14:44:12 <-- gentauro (~gentauro@xd520f246.cust.hiper.dk) a quitté (Ping timeout: 240 seconds) 2017-06-17 14:46:22 --> gentauro (~gentauro@xd520f246.cust.hiper.dk) a rejoint #mcdevs 2017-06-17 15:16:36 <-- Gjum (~Gjum@37.120.39.166) a quitté (Ping timeout: 246 seconds) 2017-06-17 15:24:10 --> Gjum (~Gjum@37.120.39.166) a rejoint #mcdevs 2017-06-17 15:49:07 --> KnownUnown (KnownUnown@die.in.firrre.com) a rejoint #mcdevs 2017-06-17 16:20:16 <-- Pyker (pyker@pyker.net) a quitté (Ping timeout: 258 seconds) 2017-06-17 16:25:12 <-- Gjum (~Gjum@37.120.39.166) a quitté (Ping timeout: 246 seconds) 2017-06-17 16:32:44 --> Pyker (pyker@pyker.net) a rejoint #mcdevs 2017-06-17 17:00:00 --> Gjum (~Gjum@37.120.39.166) a rejoint #mcdevs 2017-06-17 17:33:49 <-- humerusj (~humerusj@unaffiliated/humerusj) a quitté (Ping timeout: 260 seconds) 2017-06-17 17:34:10 <-- XorBoole (~XorBoole@45.55.68.177) a quitté (Ping timeout: 260 seconds) 2017-06-17 17:34:27 <-- darngeek (~darngeek@bouncer.pocketmine.net) a quitté (Ping timeout: 240 seconds) 2017-06-17 17:34:49 <-- shoghicp (~shoghicp@bouncer.pocketmine.net) a quitté (Ping timeout: 255 seconds) 2017-06-17 17:35:06 <-- MrARM (~MrARM@unaffiliated/mrarm) a quitté (Ping timeout: 260 seconds) 2017-06-17 17:35:57 <-- Adam (Adam@unaffiliated/adam-) a quitté (Ping timeout: 240 seconds) 2017-06-17 17:37:03 --> Adam__ (Adam@unaffiliated/adam-) a rejoint #mcdevs 2017-06-17 17:39:09 --> darngeek (~darngeek@bouncer.pocketmine.net) a rejoint #mcdevs 2017-06-17 17:40:10 --> XorBoole (~XorBoole@45.55.68.177) a rejoint #mcdevs 2017-06-17 17:40:40 --> humerusj (~humerusj@unaffiliated/humerusj) a rejoint #mcdevs 2017-06-17 17:42:10 --> MrARM (~MrARM@unaffiliated/mrarm) a rejoint #mcdevs 2017-06-17 17:42:40 --> shoghicp (~shoghicp@bouncer.pocketmine.net) a rejoint #mcdevs 2017-06-17 18:04:33 --> protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-06-17 18:33:31 --> UUID01 (~UUID00@BSN-182-244-6.dynamic.siol.net) a rejoint #mcdevs 2017-06-17 18:37:31 <-- UUID00 (~UUID00@BSN-176-206-87.dynamic.siol.net) a quitté (Ping timeout: 268 seconds) 2017-06-17 19:17:12 <-- Gjum (~Gjum@37.120.39.166) a quitté (Ping timeout: 240 seconds) 2017-06-17 19:27:32 --> Gjum (~Gjum@37.120.39.166) a rejoint #mcdevs 2017-06-17 19:53:03 gurun guys, on PC are entities and players culled together with chunks. Meaning, if a player is x distance from me, server will stop sending positions for that player. And x = view distance 2017-06-17 19:53:26 gurun was that clear? 2017-06-17 20:29:05 pokechu22 They are, but not by chunks 2017-06-17 20:30:47 pokechu22 It's by a certain track distance, which varies by the type of mobs 2017-06-17 20:38:44 gurun so the tracking distance is what controls it. 2017-06-17 20:39:16 gurun usually, that's pretty low tho. Like 50 blocks for a player. Does that mean that beyond that you don't see or receive updates from that player? 2017-06-17 20:39:52 pokechu22 Yes. Worth noting that there's a difference between the distance it renders at, and is tracked at - rendering is spherical, and fairly small; tracking is large, and only on x and z (varies between 64 for most entities, and 512 (I think) for players) 2017-06-17 20:40:08 pokechu22 Though there's also an interaction of some kind with chunk loading/unloading which I don't fully remember the details of 2017-06-17 20:48:48 <-- __0x277F (~Hex@four.out.of.five.doctors.recommend.hex.lc) a quitté (Remote host closed the connection) 2017-06-17 20:49:12 <-- Jeebiss (sid25046@gateway/web/irccloud.com/x-dtwkuggiwwqhgjxk) a quitté (*.net *.split) 2017-06-17 20:49:12 <-- simpleauthority (~simpleaut@02.chicago.il.us.node.dph.digitalpenquin.com) a quitté (*.net *.split) 2017-06-17 20:49:12 <-- balrog (~balrog@unaffiliated/balrog) a quitté (*.net *.split) 2017-06-17 20:49:12 <-- Matsv (~Matsv@i.am.matsv.nl) a quitté (*.net *.split) 2017-06-17 20:49:13 <-- l4mRh4X0r (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a quitté (*.net *.split) 2017-06-17 20:49:13 <-- kashike (kashike@unaffiliated/kashike) a quitté (*.net *.split) 2017-06-17 20:49:22 --> kashike (kashike@unaffiliated/kashike) a rejoint #mcdevs 2017-06-17 20:49:23 --> l4mRh4X0r (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a rejoint #mcdevs 2017-06-17 20:49:29 --> Matsv (~Matsv@i.am.matsv.nl) a rejoint #mcdevs 2017-06-17 20:49:55 --> __0x277F (~Hex@four.out.of.five.doctors.recommend.hex.lc) a rejoint #mcdevs 2017-06-17 20:49:57 --> Jeebiss (sid25046@gateway/web/irccloud.com/x-ajwmdtvvcrtxvvut) a rejoint #mcdevs 2017-06-17 20:50:04 --> balrog (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2017-06-17 20:51:27 <-- williammck (~williammc@unaffiliated/williammck) a quitté (Ping timeout: 240 seconds) 2017-06-17 20:51:42 --> simpleauthority (~simpleaut@02.chicago.il.us.node.dph.digitalpenquin.com) a rejoint #mcdevs 2017-06-17 20:54:14 --> williammck (~williammc@irc.williammck.net) a rejoint #mcdevs 2017-06-17 20:54:14 <-- williammck (~williammc@irc.williammck.net) a quitté (Changing host) 2017-06-17 20:54:14 --> williammck (~williammc@unaffiliated/williammck) a rejoint #mcdevs 2017-06-17 22:18:05 --> itsme (~textual@85.203.22.19) a rejoint #mcdevs 2017-06-17 22:18:36 itsme https://minecraft.net/static/pages/img/minecraft-hero.df1112867f04.jpg 2017-06-17 22:24:26 pokechu22 ? 2017-06-17 22:24:48 itsme just a test 2017-06-17 22:35:04 -- Adam__ est maintenant connu sous le nom Adam 2017-06-17 22:36:13 --> Meronat (uid190493@gateway/web/irccloud.com/x-mkezczncaioufyqe) a rejoint #mcdevs 2017-06-17 23:10:57 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-17 23:22:44 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Read error: Connection reset by peer) 2017-06-17 23:28:01 <-- itsme (~textual@85.203.22.19) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2017-06-17 23:41:48 --> itsme (~textual@85.203.22.19) a rejoint #mcdevs 2017-06-17 23:56:40 <-- itsme (~textual@85.203.22.19) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2017-06-18 01:12:26 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-18 01:13:03 <-- chibill (~chibill@2602:306:ce43:b390:5897:84ff:fee1:de34) a quitté (Quit: ZNC - http://znc.in) 2017-06-18 01:13:39 --> chibill (~chibill@2602:306:ce43:b390:5897:84ff:fee1:de34) a rejoint #mcdevs 2017-06-18 01:28:10 <-- UUID01 (~UUID00@BSN-182-244-6.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2017-06-18 01:35:00 --> UUID00 (~UUID00@BSN-143-99-36.dynamic.siol.net) a rejoint #mcdevs 2017-06-18 04:19:27 <-- barneygale (~barneygal@90.201.107.104) a quitté (Ping timeout: 240 seconds) 2017-06-18 04:57:49 <-- UUID00 (~UUID00@BSN-143-99-36.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2017-06-18 05:02:28 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-06-18 07:07:34 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-18 08:24:31 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2017-06-18 10:09:27 <-- protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a quitté (Quit: WeeChat 1.7-rc2) 2017-06-18 10:13:54 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-18 10:24:50 <-- Guest60313 (~Me4502@owexz.net) a quitté (Changing host) 2017-06-18 10:24:50 --> Guest60313 (~Me4502@unaffiliated/me4502) a rejoint #mcdevs 2017-06-18 10:25:17 -- Guest60313 est maintenant connu sous le nom Me4502 2017-06-18 10:48:06 --> barneygale (~barneygal@90.201.107.104) a rejoint #mcdevs 2017-06-18 11:24:26 <-- barneygale (~barneygal@90.201.107.104) a quitté (Ping timeout: 240 seconds) 2017-06-18 11:24:26 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 240 seconds) 2017-06-18 11:30:28 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-18 11:49:49 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 258 seconds) 2017-06-18 11:55:22 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-18 13:48:15 --> UUID00 (~UUID00@BSN-143-99-36.dynamic.siol.net) a rejoint #mcdevs 2017-06-18 14:02:13 --> JustASlacker (~icke@213.83.43.18) a rejoint #mcdevs 2017-06-18 14:02:31 <-- JustASlacker (~icke@213.83.43.18) a quitté #mcdevs 2017-06-18 14:19:42 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-18 15:25:19 <-- Meronat (uid190493@gateway/web/irccloud.com/x-mkezczncaioufyqe) a quitté (Quit: Connection closed for inactivity) 2017-06-18 15:41:04 <-- johni0702 (johni0702@johni0702.de) a quitté (Ping timeout: 268 seconds) 2017-06-18 15:41:28 --> johni0702 (johni0702@johni0702.de) a rejoint #mcdevs 2017-06-18 16:31:29 --> e (e@freenode/staff/spy.edk) a rejoint #mcdevs 2017-06-18 17:46:03 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-18 18:50:49 <-- UUID00 (~UUID00@BSN-143-99-36.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2017-06-18 18:51:15 --> UUID00 (~UUID00@BSN-143-99-36.dynamic.siol.net) a rejoint #mcdevs 2017-06-18 19:03:49 --> protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-06-18 19:33:57 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 240 seconds) 2017-06-18 19:35:35 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-18 19:36:40 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Client Quit) 2017-06-18 19:40:09 <-- e (e@freenode/staff/spy.edk) a quitté (Quit: edk) 2017-06-18 22:28:12 <-- Dadido3 (~quassel@p2003007A8B43B000C92C4BF4398B22B5.dip0.t-ipconnect.de) a quitté (Ping timeout: 240 seconds) 2017-06-18 22:28:14 --> Dadido3_ (~quassel@p2003007A8B43B0006DEEC563DC8754C6.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-06-18 22:29:18 <-- AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a quitté (Ping timeout: 268 seconds) 2017-06-18 23:39:30 --> barneygale (~barneygal@90.201.107.104) a rejoint #mcdevs 2017-06-18 23:53:19 --> e (e@freenode/staff/spy.edk) a rejoint #mcdevs 2017-06-19 00:21:19 timmyRS Does anyone know what the server has to send in order for the player to start flying with the elytra? I know the client sends Entity Action 8, but what does the server have to respond with? 2017-06-19 00:22:41 pokechu22 Hm... I think it's an entity status, let me check 2017-06-19 00:23:24 pokechu22 Nope, metadata... for the base entity: http://wiki.vg/Entities#Entity 2017-06-19 00:23:27 <-- EW8GU (admin@ho.by) a quitté (Read error: Connection reset by peer) 2017-06-19 00:30:26 timmyRS Thanks very much. Took me a while to understand the Entity Metadata Format. 2017-06-19 00:35:50 --> EW8GU (admin@ho.by) a rejoint #mcdevs 2017-06-19 00:40:29 <-- EW8GU (admin@ho.by) a quitté (Ping timeout: 260 seconds) 2017-06-19 01:41:29 timmyRS I am experimenting with the elytra and being in water in like the elytra mode looks really nice. 2017-06-19 02:43:28 --> EW8GU (admin@ho.by) a rejoint #mcdevs 2017-06-19 03:23:37 --> itsme (~textual@85.203.22.18) a rejoint #mcdevs 2017-06-19 03:30:12 <-- barneygale (~barneygal@90.201.107.104) a quitté (Ping timeout: 240 seconds) 2017-06-19 03:31:20 --> AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a rejoint #mcdevs 2017-06-19 03:41:28 <-- itsme (~textual@85.203.22.18) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2017-06-19 04:34:22 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Quit: NathanWolf) 2017-06-19 04:44:15 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-06-19 04:44:19 <-- UUID00 (~UUID00@BSN-143-99-36.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2017-06-19 06:04:54 <-- ammar2 (admin@i.diddled.with.the.opers.so.they.klined.me) a quitté (Read error: Connection reset by peer) 2017-06-19 10:37:31 -- MiniDigger_ est maintenant connu sous le nom MiniDigger 2017-06-19 10:42:26 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-19 10:52:41 --> barneygale (~barneygal@90.197.163.29) a rejoint #mcdevs 2017-06-19 11:24:56 <-- ashka_ (~ashka_@server2.shellgratuit.com) a quitté (Ping timeout: 246 seconds) 2017-06-19 11:25:30 <-- YukonAppleGeek (~Yukon@sfo01.yukon.io) a quitté (Ping timeout: 240 seconds) 2017-06-19 11:25:52 --> YukonAppleGeek (~Yukon@sfo01.yukon.io) a rejoint #mcdevs 2017-06-19 11:28:25 --> ashka_ (~ashka_@server2.shellgratuit.com) a rejoint #mcdevs 2017-06-19 12:14:50 --> UUID00 (~UUID00@BSN-143-99-36.dynamic.siol.net) a rejoint #mcdevs 2017-06-19 12:28:13 <-- jast (jast@zoidberg.org) a quitté (Remote host closed the connection) 2017-06-19 12:28:20 --> jast (jast@zoidberg.org) a rejoint #mcdevs 2017-06-19 14:25:20 <-- barneygale (~barneygal@90.197.163.29) a quitté (Ping timeout: 260 seconds) 2017-06-19 14:53:20 <-- jast (jast@zoidberg.org) a quitté (Remote host closed the connection) 2017-06-19 15:00:30 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Quit: Leaving) 2017-06-19 15:01:02 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-19 15:38:53 <-- TheUnnamedDude (~TheUnname@2001:41d0:1:68a3::37) a quitté (Quit: SeionBNC) 2017-06-19 15:53:14 Not-75c6 [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±1] https://github.com/PrismarineJS/mineflayer/compare/2046cd5ef354...64daf8725fd8 2017-06-19 15:53:15 Not-75c6 [mineflayer] rom1504 64daf87 - bump nmp 2017-06-19 16:12:07 --> jast (jast@zoidberg.org) a rejoint #mcdevs 2017-06-19 16:12:19 Not-75c6 [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±1] https://github.com/PrismarineJS/mineflayer/compare/64daf8725fd8...e7645aba302f 2017-06-19 16:12:20 Not-75c6 [mineflayer] rom1504 e7645ab - make debugging easier by printing vanilla server output in tests 2017-06-19 16:16:31 Not-75c6 [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±1] https://github.com/PrismarineJS/mineflayer/compare/e7645aba302f...3a50f0982608 2017-06-19 16:16:32 Not-75c6 [mineflayer] rom1504 3a50f09 - use java 8 for mc 1.12 in circle ci 2017-06-19 16:20:52 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-19 16:25:29 Not-75c6 [mineflayer] rom1504 pushed 4 commits to master [+0/-0/±6] https://github.com/PrismarineJS/mineflayer/compare/3a50f0982608...ebfe525a7778 2017-06-19 16:25:31 Not-75c6 [mineflayer] plexigras f4bc65d - nmp auto version integration 2017-06-19 16:25:32 Not-75c6 [mineflayer] plexigras 0e0fc0c - fixed missing options.version update 2017-06-19 16:25:33 Not-75c6 [mineflayer] plexigras 4dcfbe9 - removed 1.10.2 from supported versions 2017-06-19 16:25:35 Not-75c6 [mineflayer] rom1504 ebfe525 - Merge pull request #530 from plexigras/auto-version Auto Version 2017-06-19 16:31:57 Not-75c6 [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±1] https://github.com/PrismarineJS/mineflayer/compare/ebfe525a7778...bccc15ce296e 2017-06-19 16:31:59 Not-75c6 [mineflayer] rom1504 bccc15c - update version notice in readme 2017-06-19 16:33:06 Not-75c6 [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±2] https://github.com/PrismarineJS/mineflayer/compare/bccc15ce296e...647b4a3349aa 2017-06-19 16:33:07 Not-75c6 [mineflayer] rom1504 647b4a3 - Release 2.4.0 2017-06-19 16:33:13 Not-75c6 [mineflayer] rom1504 tagged 647b4a3 as 2.4.0 https://github.com/PrismarineJS/mineflayer/commit/647b4a3349aa6bb48e8fa2f671024b6ee67101a4 2017-06-19 16:36:11 rom1504 anybody know if it would be ok to put https://github.com/plexigras/mineflayer/blob/bceb380addf9a4c9d6c71db182e995a63f0370cc/en_us.lang online (in github) ? 2017-06-19 16:57:23 MiniDigger Bungeecord chat contains them too 2017-06-19 17:16:42 rom1504 ok I guess it's fine then 2017-06-19 17:20:55 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 240 seconds) 2017-06-19 17:25:59 MiniDigger Not sure what the license would be 2017-06-19 17:26:33 MiniDigger They are on crowdin, guess that's your best option to search for a license 2017-06-19 17:41:51 pokechu22 You can always manually download en_gb at runtime (but can't do that with en_us since it's only in the jar as far as I recall) 2017-06-19 17:44:06 rom1504 yeah sure, but if it's possible to put it in github, that would be the most convenient 2017-06-19 17:49:03 SupaHam Does http://wiki.vg/Chat need to be updated to remove show_achievement? 2017-06-19 17:56:18 pokechu22 I haven't checked what's happened there, might have been renamed 2017-06-19 17:56:32 pokechu22 It's possible that's out of date. I'll check now. 2017-06-19 17:56:38 SupaHam Looking in forge, there's only show_text, show_item, show_entity in HoverEvent 2017-06-19 18:00:08 pokechu22 Yup, it's gone. Advancements now use just show_text 2017-06-19 18:04:47 pokechu22 Updated 2017-06-19 18:30:13 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-19 20:09:30 <-- TobiX (tobias@zoidberg.org) a quitté (Ping timeout: 255 seconds) 2017-06-19 20:09:35 <-- jast (jast@zoidberg.org) a quitté (Ping timeout: 246 seconds) 2017-06-19 20:10:49 --> jast (jast@zoidberg.org) a rejoint #mcdevs 2017-06-19 20:11:03 --> TobiX (tobias@zoidberg.org) a rejoint #mcdevs 2017-06-19 20:12:57 --> Pyker_ (pyker@pyker.net) a rejoint #mcdevs 2017-06-19 20:15:20 --> dexter0_ (~dexter0@2601:647:4502:8c00:e898:987a:913e:7f7d) a rejoint #mcdevs 2017-06-19 20:18:52 --> ashka` (~postmaste@server2.shellgratuit.com) a rejoint #mcdevs 2017-06-19 20:18:53 --> PotatOS (~Akkarin@bnc.basinmc.org) a rejoint #mcdevs 2017-06-19 20:19:24 --> MeltedLux_ (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-06-19 20:20:02 <-- AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a quitté (*.net *.split) 2017-06-19 20:20:02 <-- chibill (~chibill@2602:306:ce43:b390:5897:84ff:fee1:de34) a quitté (*.net *.split) 2017-06-19 20:20:02 <-- simpleauthority (~simpleaut@02.chicago.il.us.node.dph.digitalpenquin.com) a quitté (*.net *.split) 2017-06-19 20:20:02 <-- balrog (~balrog@unaffiliated/balrog) a quitté (*.net *.split) 2017-06-19 20:20:03 <-- Pyker (pyker@pyker.net) a quitté (*.net *.split) 2017-06-19 20:20:05 <-- MeltedLux (MeltedLux@help.lux.melted.me) a quitté (*.net *.split) 2017-06-19 20:20:05 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (*.net *.split) 2017-06-19 20:20:05 <-- McLive (~McLive@freecraft.eu) a quitté (*.net *.split) 2017-06-19 20:20:05 <-- Akkarin (~Akkarin@bnc.basinmc.org) a quitté (*.net *.split) 2017-06-19 20:20:05 <-- dexter0 (~dexter0@2601:647:4502:8c00:3980:8fd1:4fa5:3209) a quitté (*.net *.split) 2017-06-19 20:20:06 <-- ashka (~postmaste@pdpc/supporter/active/ashka) a quitté (*.net *.split) 2017-06-19 20:20:06 -- Pyker_ est maintenant connu sous le nom Pyker 2017-06-19 20:20:06 -- dexter0_ est maintenant connu sous le nom dexter0 2017-06-19 20:20:07 -- PotatOS est maintenant connu sous le nom Akkarin 2017-06-19 20:20:20 --> AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a rejoint #mcdevs 2017-06-19 20:22:31 --> simpleauthority (~simpleaut@02.chicago.il.us.node.dph.digitalpenquin.com) a rejoint #mcdevs 2017-06-19 20:22:55 <-- EW8GU (admin@ho.by) a quitté (Ping timeout: 260 seconds) 2017-06-19 20:23:01 --> McLive (~McLive@freecraft.eu) a rejoint #mcdevs 2017-06-19 20:23:17 --> chibill (~chibill@2602:306:ce43:b390:5897:84ff:fee1:de34) a rejoint #mcdevs 2017-06-19 20:23:28 --> balrog (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2017-06-19 20:25:35 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-06-19 20:46:15 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-19 20:47:50 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 255 seconds) 2017-06-19 20:47:50 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-06-19 21:04:15 <-- barneygale_ (~barneygal@mail.thefoundry.co.uk) a quitté (Read error: Connection reset by peer) 2017-06-19 21:33:19 <-- Dadido3_ (~quassel@p2003007A8B43B0006DEEC563DC8754C6.dip0.t-ipconnect.de) a quitté (Ping timeout: 255 seconds) 2017-06-19 21:33:54 <-- ashka` (~postmaste@server2.shellgratuit.com) a quitté (Changing host) 2017-06-19 21:33:54 --> ashka` (~postmaste@pdpc/supporter/active/ashka) a rejoint #mcdevs 2017-06-19 21:34:23 -- ashka` est maintenant connu sous le nom ashka 2017-06-19 22:03:02 <-- ashka_ (~ashka_@server2.shellgratuit.com) a quitté 2017-06-19 22:03:14 --> ashka_ (~ashka_@server2.shellgratuit.com) a rejoint #mcdevs 2017-06-19 22:18:08 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-19 22:19:24 --> barneygale (~barneygal@90.197.163.29) a rejoint #mcdevs 2017-06-19 22:26:10 --> EW8GU (admin@ho.by) a rejoint #mcdevs 2017-06-19 22:36:53 MiniDigger http://wiki.vg/Protocol#Update_Block_Entity 2017-06-19 22:37:00 MiniDigger it says that action is an unsigned byte 2017-06-19 22:37:07 MiniDigger but in code its an int 2017-06-19 22:37:18 MiniDigger was that changed recently and just not added to the wiki? 2017-06-19 22:37:29 MiniDigger or are unsigned bytes always treated as int? 2017-06-19 23:07:55 pokechu22 Hm 2017-06-19 23:08:24 pokechu22 The type in the packet may be an int; it depends on how it's written to netty more than the type in the packet 2017-06-19 23:09:48 pokechu22 Yea, it's an unsigned byte, stored as an int. That's just how netty works 2017-06-19 23:14:00 MiniDigger k 2017-06-19 23:14:08 MiniDigger will keep that in mind 2017-06-19 23:22:03 <-- KnownUnown (KnownUnown@die.in.firrre.com) a quitté (*.net *.split) 2017-06-19 23:22:04 <-- Dinnerbone (dinnerbone@i.like.butts.and.my.name.is.dinnerbone.com) a quitté (*.net *.split) 2017-06-19 23:22:04 <-- aphelion_ (aphelion@2600:3c00::f03c:91ff:fe61:9eab) a quitté (*.net *.split) 2017-06-19 23:22:04 <-- csnxs` (sean@unaffiliated/plussean) a quitté (*.net *.split) 2017-06-19 23:22:04 <-- yawkat (~yawkat@cats.coffee) a quitté (*.net *.split) 2017-06-19 23:22:05 <-- dx (~dx@irssi/staff/dx) a quitté (*.net *.split) 2017-06-19 23:22:11 --> csnxs (sean@unaffiliated/plussean) a rejoint #mcdevs 2017-06-19 23:22:15 --> Dinnerbone (dinnerbone@i.like.butts.and.my.name.is.dinnerbone.com) a rejoint #mcdevs 2017-06-19 23:22:15 -- Mode #mcdevs [+v Dinnerbone] par ChanServ 2017-06-19 23:22:18 --> aphelion_ (aphelion@2600:3c00::f03c:91ff:fe61:9eab) a rejoint #mcdevs 2017-06-19 23:22:18 --> yawkat (~yawkat@cats.coffee) a rejoint #mcdevs 2017-06-19 23:22:19 --> dx (~dx@irssi/staff/dx) a rejoint #mcdevs 2017-06-19 23:23:34 --> KnownUnown (KnownUnown@die.in.firrre.com) a rejoint #mcdevs 2017-06-19 23:24:54 <-- Akkarin (~Akkarin@bnc.basinmc.org) a quitté (Ping timeout: 240 seconds) 2017-06-19 23:27:05 --> Akkarin (~Akkarin@bnc.basinmc.org) a rejoint #mcdevs 2017-06-20 00:31:29 <-- Black-Hole (~BlackHole@p2003007E4F578A002D5ACE16F51AB982.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-06-20 01:20:48 --> Black-Hole (~BlackHole@p2003007E4F578A00B886E1CD899BBCB7.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-06-20 01:36:04 <-- barneygale (~barneygal@90.197.163.29) a quitté (Ping timeout: 268 seconds) 2017-06-20 02:14:29 --> jargan (jast@zoidberg.org) a rejoint #mcdevs 2017-06-20 02:14:29 --> Pyker_ (pyker@pyker.net) a rejoint #mcdevs 2017-06-20 02:14:30 --> WizardCM- (~WizardCM@59-102-74-188.tpgi.com.au) a rejoint #mcdevs 2017-06-20 02:14:30 <-- Amaranth (~Amaranth@ubuntu/member/Amaranth) a quitté (Quit: Ping timeout (120 seconds)) 2017-06-20 02:14:44 --> I9hdkill (~quassel@2a01:4f8:171:1ae5::2) a rejoint #mcdevs 2017-06-20 02:14:55 --> KernelFreeze (~quassel@wikipedia/miguel2706) a rejoint #mcdevs 2017-06-20 02:14:55 --> Amaranth (~Amaranth@ubuntu/member/Amaranth) a rejoint #mcdevs 2017-06-20 02:14:55 -- Mode #mcdevs [+v Amaranth] par ChanServ 2017-06-20 02:14:56 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (Excess Flood) 2017-06-20 02:14:57 --> killme (~killmePI@185.9.253.124) a rejoint #mcdevs 2017-06-20 02:14:58 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2017-06-20 02:14:59 <-- Hafydd (~Hafydd@unaffiliated/joo) a quitté (Remote host closed the connection) 2017-06-20 02:15:00 <-- clud_ (~clueless@d54c5e19c.access.telenet.be) a quitté (Remote host closed the connection) 2017-06-20 02:15:00 --> clud (~clueless@d54C5E19C.access.telenet.be) a rejoint #mcdevs 2017-06-20 02:15:01 --> gentauro42 (~gentauro@xd520f246.cust.hiper.dk) a rejoint #mcdevs 2017-06-20 02:15:02 --> DemonWav (~DemonWav@unaffiliated/demonwav) a rejoint #mcdevs 2017-06-20 02:15:03 --> TobiX_ (tobias@zoidberg.org) a rejoint #mcdevs 2017-06-20 02:15:04 --> Adam_ (Adam@unaffiliated/adam-) a rejoint #mcdevs 2017-06-20 02:15:04 <-- I9hdkill_ (~quassel@2a01:4f8:171:1ae5::2) a quitté (Write error: Broken pipe) 2017-06-20 02:15:04 <-- Pyker (pyker@pyker.net) a quitté (Write error: Broken pipe) 2017-06-20 02:15:05 <-- bramhaag (~bramhaag@some.random.host.cause.default.is.boring.minidigger.me) a quitté (Quit: Ping timeout (120 seconds)) 2017-06-20 02:15:06 -- Pyker_ est maintenant connu sous le nom Pyker 2017-06-20 02:15:06 <-- Guest37781 (~killmePI@185.9.253.124) a quitté (Quit: No Ping reply in 180 seconds.) 2017-06-20 02:15:35 <-- Dykam (~Dykam@37.139.10.7) a quitté (Write error: Broken pipe) 2017-06-20 02:15:35 <-- Miguel2706 (~quassel@wikipedia/miguel2706) a quitté (Quit: No Ping reply in 180 seconds.) 2017-06-20 02:15:38 <-- laxask (~lax@h-187-69.A328.priv.bahnhof.se) a quitté (Remote host closed the connection) 2017-06-20 02:15:38 <-- C4K3 (~C4K3@0127801301.0.fullrate.ninja) a quitté (Remote host closed the connection) 2017-06-20 02:15:40 <-- Fador (fador@hentai.fi) a quitté (Write error: Broken pipe) 2017-06-20 02:15:40 <-- gentauro (~gentauro@xd520f246.cust.hiper.dk) a quitté (Write error: Broken pipe) 2017-06-20 02:15:45 <-- WizardCM (~WizardCM@59-102-74-188.tpgi.com.au) a quitté (Quit: Oh noes it broke!) 2017-06-20 02:15:46 -- WizardCM- est maintenant connu sous le nom WizardCM 2017-06-20 02:15:46 <-- TobiX (tobias@zoidberg.org) a quitté (Remote host closed the connection) 2017-06-20 02:15:55 --> bramhaag (~bramhaag@some.random.host.cause.default.is.boring.minidigger.me) a rejoint #mcdevs 2017-06-20 02:15:57 <-- jast (jast@zoidberg.org) a quitté (Write error: Broken pipe) 2017-06-20 02:15:59 -- aphelion_ est maintenant connu sous le nom aphelion 2017-06-20 02:16:06 <-- Byteflux (~Byteflux@minelink.net) a quitté (Excess Flood) 2017-06-20 02:16:08 <-- DemonWav_ (~DemonWav@unaffiliated/demonwav) a quitté (Remote host closed the connection) 2017-06-20 02:16:11 <-- Adam (Adam@unaffiliated/adam-) a quitté (Remote host closed the connection) 2017-06-20 02:16:19 <-- AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a quitté (Ping timeout: 240 seconds) 2017-06-20 02:16:23 --> Byteflux (~Byteflux@minelink.net) a rejoint #mcdevs 2017-06-20 02:16:40 --> Dykam (~Dykam@37.139.10.7) a rejoint #mcdevs 2017-06-20 02:16:42 --> AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a rejoint #mcdevs 2017-06-20 02:17:21 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (*.net *.split) 2017-06-20 02:17:21 <-- williammck (~williammc@unaffiliated/williammck) a quitté (*.net *.split) 2017-06-20 02:17:21 <-- Na (~Na@unaffiliated/na) a quitté (*.net *.split) 2017-06-20 02:17:22 <-- Luck (~Luck@unlucky.lucko.me) a quitté (*.net *.split) 2017-06-20 02:17:22 <-- samfty (~quassel@59-102-74-188.tpgi.com.au) a quitté (*.net *.split) 2017-06-20 02:17:22 <-- x10A94 (~x@hyper.is-a.cat) a quitté (*.net *.split) 2017-06-20 02:17:22 <-- lukegb (~lukegb@210.58.154.104.bc.googleusercontent.com) a quitté (*.net *.split) 2017-06-20 02:17:22 <-- vemacs|ded (~vemacs@192.3.17.176) a quitté (*.net *.split) 2017-06-20 02:17:33 --> williammck (~williammc@irc.williammck.net) a rejoint #mcdevs 2017-06-20 02:17:33 <-- williammck (~williammc@irc.williammck.net) a quitté (Changing host) 2017-06-20 02:17:33 --> williammck (~williammc@unaffiliated/williammck) a rejoint #mcdevs 2017-06-20 02:17:34 --> Luck (~Luck@unlucky.lucko.me) a rejoint #mcdevs 2017-06-20 02:17:40 --> samfty (~quassel@59-102-74-188.tpgi.com.au) a rejoint #mcdevs 2017-06-20 02:18:05 --> Na (~Na@unaffiliated/na) a rejoint #mcdevs 2017-06-20 02:18:10 <-- EW8GU (admin@ho.by) a quitté (Ping timeout: 244 seconds) 2017-06-20 02:18:10 <-- Thinkofname (~Think@li187-33.members.linode.com) a quitté (Ping timeout: 244 seconds) 2017-06-20 02:18:53 --> laxask (~lax@h-187-69.A328.priv.bahnhof.se) a rejoint #mcdevs 2017-06-20 02:19:29 --> Thinkofname (~Think@li187-33.members.linode.com) a rejoint #mcdevs 2017-06-20 02:19:29 -- Mode #mcdevs [+v Thinkofname] par ChanServ 2017-06-20 02:19:36 --> Fador (fador@hentai.fi) a rejoint #mcdevs 2017-06-20 02:20:51 --> Hafydd (~Hafydd@unaffiliated/joo) a rejoint #mcdevs 2017-06-20 02:22:49 --> C4K3 (~C4K3@0127801301.0.fullrate.ninja) a rejoint #mcdevs 2017-06-20 02:23:56 <-- yosafbridge (~yosafbrid@68.ip-149-56-14.net) a quitté (Quit: Leaving) 2017-06-20 02:24:58 --> lukegb (~lukegb@210.58.154.104.bc.googleusercontent.com) a rejoint #mcdevs 2017-06-20 02:24:58 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-06-20 02:24:58 --> x10A94 (~x@hyper.is-a.cat) a rejoint #mcdevs 2017-06-20 02:24:58 --> 7JTAAZHO3 (~vemacs@192.3.17.176) a rejoint #mcdevs 2017-06-20 02:33:04 --> yosafbridge (~yosafbrid@68.ip-149-56-14.net) a rejoint #mcdevs 2017-06-20 04:21:31 --> EW8GU (admin@ho.by) a rejoint #mcdevs 2017-06-20 04:44:36 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Quit: NathanWolf) 2017-06-20 04:45:49 <-- UUID00 (~UUID00@BSN-143-99-36.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2017-06-20 05:05:54 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-06-20 06:18:58 <-- gentauro42 (~gentauro@xd520f246.cust.hiper.dk) a quitté (Ping timeout: 276 seconds) 2017-06-20 06:20:35 --> gentauro (~gentauro@xd520f246.cust.hiper.dk) a rejoint #mcdevs 2017-06-20 06:34:52 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-20 06:35:12 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 240 seconds) 2017-06-20 06:35:12 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-06-20 07:17:00 <-- bramhaag (~bramhaag@some.random.host.cause.default.is.boring.minidigger.me) a quitté (Quit: Ping timeout (120 seconds)) 2017-06-20 07:17:19 --> bramhaag (~bramhaag@some.random.host.cause.default.is.boring.minidigger.me) a rejoint #mcdevs 2017-06-20 07:23:37 <-- Aikar (~quassel@wikia/Aikar) a quitté (Quit: No Ping reply in 180 seconds.) 2017-06-20 07:25:54 --> Aikar (~quassel@wikia/Aikar) a rejoint #mcdevs 2017-06-20 07:49:29 +md_5 a byte and an int are the same size in hotspot 2017-06-20 07:49:55 +md_5 (not in arrays though) 2017-06-20 08:04:17 --> Dadido3 (~quassel@p2003007A8B43B000ACEEA49CE2EB8446.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-06-20 08:15:14 -- Mode #mcdevs [+v Fador] par ChanServ 2017-06-20 08:20:05 --> Dadido3_ (~quassel@p2003007A8B43B00064087A7A99B388D2.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-06-20 08:22:57 <-- Dadido3 (~quassel@p2003007A8B43B000ACEEA49CE2EB8446.dip0.t-ipconnect.de) a quitté (Ping timeout: 258 seconds) 2017-06-20 08:32:45 <-- simpleauthority (~simpleaut@02.chicago.il.us.node.dph.digitalpenquin.com) a quitté (Quit: I'm great at multitasking. I can waste time, be unproductive, and procrastinate all at once.) 2017-06-20 08:40:34 -- jargan est maintenant connu sous le nom jast 2017-06-20 10:06:27 <-- Me4502 (~Me4502@unaffiliated/me4502) a quitté (Ping timeout: 240 seconds) 2017-06-20 10:07:05 --> Me4502 (~Me4502@owexz.net) a rejoint #mcdevs 2017-06-20 10:07:28 -- Me4502 est maintenant connu sous le nom Guest16918 2017-06-20 10:07:38 --> barneygale (~barneygal@2.220.98.174) a rejoint #mcdevs 2017-06-20 10:22:16 --> UUID00 (~UUID00@BSN-143-99-36.dynamic.siol.net) a rejoint #mcdevs 2017-06-20 10:31:57 <-- barneygale (~barneygal@2.220.98.174) a quitté (Ping timeout: 268 seconds) 2017-06-20 11:05:59 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-20 11:40:06 electronicboy list 2017-06-20 11:40:12 electronicboy 0/10 2017-06-20 11:49:20 Tachyon_ :O ? 2017-06-20 11:56:07 electronicboy totally didn't forget a / or something 2017-06-20 12:17:27 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 255 seconds) 2017-06-20 12:38:43 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-20 13:48:47 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 258 seconds) 2017-06-20 14:05:02 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-20 14:59:50 <-- gabizou (~gabizou@irc.spongepowered.org) a quitté (Ping timeout: 240 seconds) 2017-06-20 14:59:58 --> gabizou (~gabizou@e3-1270v3.bl-ash0.1.1.2.10.k8.securedservers.com) a rejoint #mcdevs 2017-06-20 15:26:23 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-20 15:49:07 +Amaranth Isn't a byte only the same size on the stack? 2017-06-20 15:49:41 +Amaranth So when you do something with it it gets promoted to an int but in a field (or an array) it's a byte 2017-06-20 16:28:07 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-20 17:15:52 Not-75c6 [minecraft-data] rom1504 pushed 4 commits to master [+20/-0/±3] https://github.com/PrismarineJS/minecraft-data/compare/551a215a1aa8...b0e902edb9dd 2017-06-20 17:15:53 Not-75c6 [minecraft-data] rom1504 b0e902e - Merge pull request #181 from PrismarineJS/1.12_data extract data for 1.12 and copy the rest from 1.11 2017-06-20 17:17:11 Not-75c6 [minecraft-data] rom1504 pushed 1 commit to master [+0/-0/±1] https://github.com/PrismarineJS/minecraft-data/compare/b0e902edb9dd...15789f546c49 2017-06-20 17:17:13 Not-75c6 [minecraft-data] rom1504 15789f5 - Release 2.18.0 2017-06-20 17:17:18 Not-75c6 [minecraft-data] rom1504 tagged 15789f5 as 2.18.0 https://github.com/PrismarineJS/minecraft-data/commit/15789f546c491d8ecd0edbd962cc88f308b3feb7 2017-06-20 17:20:54 Not-75c6 [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±1] https://github.com/PrismarineJS/mineflayer/compare/647b4a3349aa...1d8084ccaecc 2017-06-20 17:20:55 Not-75c6 [mineflayer] rom1504 1d8084c - bump mcdata for better 1.12 support 2017-06-20 17:21:38 Not-75c6 [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±2] https://github.com/PrismarineJS/mineflayer/compare/1d8084ccaecc...9c57ecb48296 2017-06-20 17:21:40 Not-75c6 [mineflayer] rom1504 9c57ecb - Release 2.4.1 2017-06-20 17:21:45 Not-75c6 [mineflayer] rom1504 tagged 9c57ecb as 2.4.1 https://github.com/PrismarineJS/mineflayer/commit/9c57ecb482964b35b2944371ddbbdc0244ecb4a7 2017-06-20 17:56:48 Not-75c6 [mineflayer] rom1504 pushed 2 commits to master [+2/-0/±6] https://github.com/PrismarineJS/mineflayer/compare/9c57ecb48296...b2597a9abc35 2017-06-20 17:56:49 Not-75c6 [mineflayer] rom1504 b2597a9 - Merge pull request #534 from PrismarineJS/parallel_testing parallel testing (same as nmp) 2017-06-20 18:05:24 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 240 seconds) 2017-06-20 18:28:54 <-- gentauro (~gentauro@xd520f246.cust.hiper.dk) a quitté (Ping timeout: 240 seconds) 2017-06-20 18:30:41 --> gentauro (~gentauro@xd520f246.cust.hiper.dk) a rejoint #mcdevs 2017-06-20 19:14:40 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-20 20:39:20 --> barneygale (~barneygal@2.220.98.174) a rejoint #mcdevs 2017-06-20 20:45:51 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 258 seconds) 2017-06-20 20:46:32 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Read error: Connection reset by peer) 2017-06-20 20:47:19 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-20 20:57:22 <-- Morrolan (morrolan@znc.morrolan.ch) a quitté (Quit: Goodbye) 2017-06-20 20:58:15 --> Morrolan (morrolan@znc.morrolan.ch) a rejoint #mcdevs 2017-06-20 21:03:50 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-20 21:07:50 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Client Quit) 2017-06-20 21:08:07 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-20 21:24:38 --> simpleauthority (~simpleaut@02.chicago.il.us.node.dph.digitalpenquin.com) a rejoint #mcdevs 2017-06-20 22:09:53 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 240 seconds) 2017-06-21 00:13:02 --> jargan (jast@zoidberg.org) a rejoint #mcdevs 2017-06-21 00:14:38 --> I9hdkill_ (~quassel@2a01:4f8:171:1ae5::2) a rejoint #mcdevs 2017-06-21 00:15:07 <-- bramhaag (~bramhaag@some.random.host.cause.default.is.boring.minidigger.me) a quitté (Quit: Ping timeout (120 seconds)) 2017-06-21 00:15:14 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (Excess Flood) 2017-06-21 00:15:18 <-- I9hdkill (~quassel@2a01:4f8:171:1ae5::2) a quitté (Write error: Broken pipe) 2017-06-21 00:15:48 <-- jast (jast@zoidberg.org) a quitté (Write error: Broken pipe) 2017-06-21 00:15:51 <-- Byteflux (~Byteflux@minelink.net) a quitté (Excess Flood) 2017-06-21 00:15:54 <-- Pyker (pyker@pyker.net) a quitté (Excess Flood) 2017-06-21 00:15:55 <-- Adam_ (Adam@unaffiliated/adam-) a quitté (Remote host closed the connection) 2017-06-21 00:16:07 --> Pyker (pyker@pyker.net) a rejoint #mcdevs 2017-06-21 00:16:23 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2017-06-21 00:16:25 --> bramhaag (~bramhaag@188.68.54.170) a rejoint #mcdevs 2017-06-21 00:16:33 --> Byteflux (~Byteflux@minelink.net) a rejoint #mcdevs 2017-06-21 00:18:15 <-- EW8GU (admin@ho.by) a quitté (Ping timeout: 268 seconds) 2017-06-21 00:18:29 <-- Morrolan (morrolan@znc.morrolan.ch) a quitté (Ping timeout: 241 seconds) 2017-06-21 00:20:55 --> Morrolan (morrolan@znc.morrolan.ch) a rejoint #mcdevs 2017-06-21 00:25:28 --> Adam (Adam@unaffiliated/adam-) a rejoint #mcdevs 2017-06-21 01:12:23 <-- barneygale (~barneygal@2.220.98.174) a quitté (Ping timeout: 240 seconds) 2017-06-21 01:13:57 --> barneygale (~barneygal@2.220.98.174) a rejoint #mcdevs 2017-06-21 01:20:22 <-- barneygale (~barneygal@2.220.98.174) a quitté (Ping timeout: 276 seconds) 2017-06-21 01:22:07 --> barneygale (~barneygal@2.220.98.174) a rejoint #mcdevs 2017-06-21 01:26:53 <-- barneygale (~barneygal@2.220.98.174) a quitté (Ping timeout: 240 seconds) 2017-06-21 01:27:16 --> barneygale (~barneygal@2.220.98.174) a rejoint #mcdevs 2017-06-21 01:35:50 <-- gentauro (~gentauro@xd520f246.cust.hiper.dk) a quitté (Ping timeout: 240 seconds) 2017-06-21 01:37:56 --> gentauro (~gentauro@xd520f246.cust.hiper.dk) a rejoint #mcdevs 2017-06-21 02:17:15 <-- barneygale (~barneygal@2.220.98.174) a quitté (Ping timeout: 260 seconds) 2017-06-21 02:21:39 --> EW8GU (admin@86.57.137.25) a rejoint #mcdevs 2017-06-21 02:24:56 <-- Gjum (~Gjum@37.120.39.166) a quitté (Ping timeout: 255 seconds) 2017-06-21 02:28:29 -- jargan est maintenant connu sous le nom jast 2017-06-21 03:01:38 <-- Thinkofname (~Think@li187-33.members.linode.com) a quitté (Read error: Connection reset by peer) 2017-06-21 03:02:32 --> Thinkofname (~Think@li187-33.members.linode.com) a rejoint #mcdevs 2017-06-21 03:02:33 -- Mode #mcdevs [+v Thinkofname] par ChanServ 2017-06-21 03:50:09 --> barneygale (~barneygal@2.220.98.174) a rejoint #mcdevs 2017-06-21 03:53:30 <-- UUID00 (~UUID00@BSN-143-99-36.dynamic.siol.net) a quitté (Ping timeout: 260 seconds) 2017-06-21 03:54:05 <-- benbaptist (~benbaptis@c-73-110-94-64.hsd1.mi.comcast.net) a quitté (Ping timeout: 260 seconds) 2017-06-21 04:00:57 --> benbaptist (~benbaptis@c-73-110-94-64.hsd1.mi.comcast.net) a rejoint #mcdevs 2017-06-21 04:40:53 <-- barneygale (~barneygal@2.220.98.174) a quitté (Ping timeout: 240 seconds) 2017-06-21 06:32:55 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-21 06:35:18 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 260 seconds) 2017-06-21 06:35:18 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-06-21 09:32:06 --> UUID00 (~UUID00@BSN-143-99-36.dynamic.siol.net) a rejoint #mcdevs 2017-06-21 10:00:20 --> barneygale (~barneygal@2.220.98.174) a rejoint #mcdevs 2017-06-21 10:11:57 <-- offbeatwitch (~offbeatwi@163.172.169.69) a quitté (Ping timeout: 240 seconds) 2017-06-21 10:16:46 --> offbeatwitch (~offbeatwi@163.172.169.69) a rejoint #mcdevs 2017-06-21 10:27:26 --> Gjum (~Gjum@37.120.67.11) a rejoint #mcdevs 2017-06-21 10:35:00 +md_5 Amaranth no its an int as a field also (and fields are 8 byte aligned also) 2017-06-21 11:08:08 <-- protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a quitté (Quit: WeeChat 1.7-rc2) 2017-06-21 11:45:25 <-- barneygale (~barneygal@2.220.98.174) a quitté (Ping timeout: 260 seconds) 2017-06-21 12:01:00 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-21 12:47:20 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 246 seconds) 2017-06-21 13:40:53 <-- Gjum (~Gjum@37.120.67.11) a quitté (Ping timeout: 246 seconds) 2017-06-21 13:41:49 --> Gjum (~Gjum@37.120.67.11) a rejoint #mcdevs 2017-06-21 14:09:11 <-- gabizou (~gabizou@e3-1270v3.bl-ash0.1.1.2.10.k8.securedservers.com) a quitté (Ping timeout: 255 seconds) 2017-06-21 14:10:03 --> gabizou (~gabizou@irc.spongepowered.org) a rejoint #mcdevs 2017-06-21 14:12:10 <-- Gjum (~Gjum@37.120.67.11) a quitté (Ping timeout: 260 seconds) 2017-06-21 14:17:17 <-- gabizou (~gabizou@irc.spongepowered.org) a quitté (Ping timeout: 255 seconds) 2017-06-21 14:17:38 --> Gjum (~Gjum@37.120.67.11) a rejoint #mcdevs 2017-06-21 14:17:52 --> gabizou (~gabizou@e3-1270v3.bl-ash0.1.1.2.10.k8.securedservers.com) a rejoint #mcdevs 2017-06-21 14:24:56 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-21 14:26:43 <-- C4K3 (~C4K3@0127801301.0.fullrate.ninja) a quitté (Read error: Connection reset by peer) 2017-06-21 14:27:32 --> C4K3 (~C4K3@0127801301.0.fullrate.ninja) a rejoint #mcdevs 2017-06-21 14:48:07 Yamakaja Hey, i need some help with skulls ... is there a way to forge the game profile of a skull item to display a different texture than the accounts actual texture by getting the signed texture and then changing the skin of the actual account back to what it was? 2017-06-21 15:06:55 Yamakaja Fixed - just had to use a random uuid 2017-06-21 15:08:08 Not-75c6 [Charge] Wallbraker pushed 11 commits to master [+2/-2/±23] https://github.com/VoltLang/Charge/compare/d5cfefaa31a0...ec4d4f946a3b 2017-06-21 15:08:09 Not-75c6 [Charge] Wallbraker e36a60f - voxel: Add debug code 2017-06-21 15:08:11 Not-75c6 [Charge] Wallbraker ac1784c - core: Mark get as final and tidy 2017-06-21 15:08:12 Not-75c6 [Charge] Wallbraker 749b0b3 - core: Add verbosePrinting field 2017-06-21 15:08:14 Not-75c6 [Charge] ... and 8 more commits. 2017-06-21 16:21:48 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-21 16:56:57 <-- Gjum (~Gjum@37.120.67.11) a quitté (Ping timeout: 240 seconds) 2017-06-21 17:00:30 --> Gjum (~Gjum@37.120.67.11) a rejoint #mcdevs 2017-06-21 17:10:47 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-21 17:24:25 --> |Blaze| (~scott@S010690e2badc6fd2.ed.shawcable.net) a rejoint #mcdevs 2017-06-21 18:27:10 <-- Hafydd (~Hafydd@unaffiliated/joo) a quitté (Ping timeout: 240 seconds) 2017-06-21 18:35:33 --> Hafydd (~Hafydd@unaffiliated/joo) a rejoint #mcdevs 2017-06-21 19:18:03 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-21 19:18:22 --> protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-06-21 22:15:23 <-- Gjum (~Gjum@37.120.67.11) a quitté (Ping timeout: 246 seconds) 2017-06-21 23:00:54 <-- laxask (~lax@h-187-69.A328.priv.bahnhof.se) a quitté (Ping timeout: 260 seconds) 2017-06-22 00:01:05 --> laxask (~lax@h-187-69.A328.priv.bahnhof.se) a rejoint #mcdevs 2017-06-22 00:24:32 <-- EW8GU (admin@86.57.137.25) a quitté (Read error: Connection reset by peer) 2017-06-22 00:29:35 --> EW8GU (admin@ho.by) a rejoint #mcdevs 2017-06-22 00:31:59 -- TobiX_ est maintenant connu sous le nom TobiX 2017-06-22 00:34:44 chibill I wish skull textures were not a whitelist for urls 2017-06-22 00:50:54 <-- gentauro (~gentauro@xd520f246.cust.hiper.dk) a quitté (Ping timeout: 246 seconds) 2017-06-22 00:53:06 --> gentauro (~gentauro@xd520f246.cust.hiper.dk) a rejoint #mcdevs 2017-06-22 01:47:57 <-- UUID00 (~UUID00@BSN-143-99-36.dynamic.siol.net) a quitté (Ping timeout: 258 seconds) 2017-06-22 03:03:33 <-- MeltedLux_ (MeltedLux@help.lux.melted.me) a quitté (Quit: R.I.P) 2017-06-22 03:04:18 --> MeltedLux (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-06-22 03:08:05 --> Dadido3 (~quassel@p2003007A8B43B000C92C4BF4398B22B5.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-06-22 03:10:54 <-- Dadido3_ (~quassel@p2003007A8B43B00064087A7A99B388D2.dip0.t-ipconnect.de) a quitté (Ping timeout: 246 seconds) 2017-06-22 06:32:59 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-22 06:34:14 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 255 seconds) 2017-06-22 06:34:14 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-06-22 07:36:27 --> Meronat (uid190493@gateway/web/irccloud.com/x-mqkrznouaoknzczg) a rejoint #mcdevs 2017-06-22 07:37:23 MiniDigger It's easy to get them signed by Mojang tho, many ppl wrote apis for that (mineskin for example) 2017-06-22 09:46:13 <-- Meronat (uid190493@gateway/web/irccloud.com/x-mqkrznouaoknzczg) a quitté (Quit: Connection closed for inactivity) 2017-06-22 10:05:11 --> UUID00 (~UUID00@BSN-143-99-36.dynamic.siol.net) a rejoint #mcdevs 2017-06-22 10:18:17 <-- samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a quitté (Ping timeout: 255 seconds) 2017-06-22 11:09:52 chibill those use the real API... I mean for skulls p. the client won't load textures not from mojang. 2017-06-22 11:24:59 --> samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a rejoint #mcdevs 2017-06-22 11:34:42 MiniDigger it will not load textures not signed by mojang 2017-06-22 11:36:10 MiniDigger but you can change your skin, save the signed texture and change your skin back 2017-06-22 11:36:20 MiniDigger the texture is signed for forever iirc 2017-06-22 11:38:55 <-- UUID00 (~UUID00@BSN-143-99-36.dynamic.siol.net) a quitté (Ping timeout: 276 seconds) 2017-06-22 11:57:39 --> UUID00 (~UUID00@BSN-182-165-79.dynamic.siol.net) a rejoint #mcdevs 2017-06-22 12:00:22 <-- gentauro (~gentauro@xd520f246.cust.hiper.dk) a quitté (Ping timeout: 240 seconds) 2017-06-22 12:02:13 --> gentauro (~gentauro@xd520f246.cust.hiper.dk) a rejoint #mcdevs 2017-06-22 12:16:08 --> TheUnnamedDude (bnc@2001:41d0:1:68a3::37) a rejoint #mcdevs 2017-06-22 12:28:03 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-22 12:38:48 --> electroniccat (~electroni@192.99.249.58) a rejoint #mcdevs 2017-06-22 12:39:50 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (Ping timeout: 240 seconds) 2017-06-22 13:00:16 <-- TheUnnamedDude (bnc@2001:41d0:1:68a3::37) a quitté (Quit: SeionBNC) 2017-06-22 13:03:11 --> TheUnnamedDude (bnc@2001:41d0:1:68a3::37) a rejoint #mcdevs 2017-06-22 14:21:22 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 240 seconds) 2017-06-22 14:32:21 <-- TheUnnamedDude (bnc@2001:41d0:1:68a3::37) a quitté (Quit: SeionBNC) 2017-06-22 15:28:30 <-- Andrio (Andrio@questers-rest.andriocelos.ml) a quitté (Quit: ZNC - http://znc.in) 2017-06-22 15:28:43 --> Andrio (Andrio@questers-rest.andriocelos.ml) a rejoint #mcdevs 2017-06-22 15:42:13 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-22 15:44:08 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Client Quit) 2017-06-22 16:44:17 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-22 17:23:10 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Remote host closed the connection) 2017-06-22 17:23:32 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-22 17:26:10 chibill you mean the URL to that texture? 2017-06-22 17:27:06 chibill as the skulls ask for a URL which is whitelisted to have to start with minecraft.net or mojang.com 2017-06-22 17:27:19 timmyRS I think he means the texture itself will be signed 2017-06-22 17:27:30 chibill not really. 2017-06-22 17:27:35 chibill as that's not 2017-06-22 17:27:40 chibill checked ever 2017-06-22 17:27:51 chibill only the URL to the texture is check. 2017-06-22 17:28:08 timmyRS I wonder why they added the whitelist in the first place 2017-06-22 17:28:27 timmyRS On servers you already know your users IPs and for mapmakers it is interesting to have a number to work with 2017-06-22 17:28:44 timmyRS as in how many users opened/played your map 2017-06-22 17:29:33 chibill .... it's to stop people making clients download potential unsafe files thinking image. 2017-06-22 17:29:38 pokechu22 Serving malformed images, probably - if there's an exploit in the texture library or something 2017-06-22 17:29:40 pokechu22 Yea, or that 2017-06-22 17:30:05 chibill it suck tho. it would be so cool to have unlimited textures. 2017-06-22 17:30:08 chibill for skulls 2017-06-22 17:30:14 chibill that you controlled 2017-06-22 17:38:34 timmyRS I'd be interested what would happen if such exploit were discovered. Not that I'd like to see possible thousands of people being infected, but just knowing how people work with such power and how fast Mojang responds. 2017-06-22 17:57:43 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-22 18:08:20 MiniDigger chibill you can set the signed texture of a game profile with a saved texture. Doesn't have to be a texture that is currently active on a player. 2017-06-22 18:09:01 MiniDigger So you can still have skulls with whatever image you want, you just need to get it verified and signed by Mojang 2017-06-22 18:16:20 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2017-06-22 19:02:45 --> hexhaxtron (~hexhaxtro@mail.thunix.org) a rejoint #mcdevs 2017-06-22 19:02:48 hexhaxtron Hi! 2017-06-22 19:02:55 hexhaxtron I'm offering my machine to host games like Minecraft for a very cheap price. Anyone interested? 2017-06-22 19:05:03 <-- samfty (~quassel@59-102-74-188.tpgi.com.au) a quitté (Remote host closed the connection) 2017-06-22 19:08:07 MiniDigger ?services 2017-06-22 19:08:15 MiniDigger wat 2017-06-22 19:08:24 MiniDigger oh lol 2017-06-22 19:08:27 MiniDigger wrong network :D 2017-06-22 19:08:30 --> samfty (~quassel@59-102-74-188.tpgi.com.au) a rejoint #mcdevs 2017-06-22 19:08:41 MiniDigger hexhaxtron, this isn't really the spot where you should advertise 2017-06-22 19:09:49 timmyRS I'd take a wild guess and say everyone here would be able to setup a VPS, install java and download the Minecraft server to it 2017-06-22 19:10:08 timmyRS So no one here would be interested in "game hosting" 2017-06-22 19:34:34 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Quit: NathanWolf) 2017-06-22 19:49:11 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-06-22 20:02:30 --> UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a rejoint #mcdevs 2017-06-22 20:03:11 --> UUID03 (~UUID00@BSN-182-165-79.dynamic.siol.net) a rejoint #mcdevs 2017-06-22 20:06:02 <-- UUID00 (~UUID00@BSN-182-165-79.dynamic.siol.net) a quitté (Ping timeout: 255 seconds) 2017-06-22 20:06:41 --> UUID00 (~UUID00@BSN-182-165-79.dynamic.siol.net) a rejoint #mcdevs 2017-06-22 20:06:50 <-- UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2017-06-22 20:08:49 <-- UUID03 (~UUID00@BSN-182-165-79.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2017-06-22 20:25:48 <-- Andrio (Andrio@questers-rest.andriocelos.ml) a quitté (Ping timeout: 255 seconds) 2017-06-22 20:27:01 --> Andrio (Andrio@questers-rest.andriocelos.ml) a rejoint #mcdevs 2017-06-22 20:43:50 <-- md_5 (~md_5@mcdevs/trusted/md-5) a quitté (Ping timeout: 260 seconds) 2017-06-22 20:44:57 <-- ScruffyRules (~Scruff@2001:19f0:5800:8483:5400:ff:fe06:49ea) a quitté (Ping timeout: 276 seconds) 2017-06-22 20:45:15 <-- Guest16918 (~Me4502@owexz.net) a quitté (Ping timeout: 260 seconds) 2017-06-22 20:45:39 --> Me4502 (~Me4502@owexz.net) a rejoint #mcdevs 2017-06-22 20:46:01 --> md_5 (~md_5@mcdevs/trusted/md-5) a rejoint #mcdevs 2017-06-22 20:46:01 -- Mode #mcdevs [+v md_5] par ChanServ 2017-06-22 20:46:02 -- Me4502 est maintenant connu sous le nom Guest71302 2017-06-22 20:46:12 --> ScruffyRules (~Scruff@2001:19f0:5800:8483:5400:ff:fe06:49ea) a rejoint #mcdevs 2017-06-22 21:38:57 <-- bswartz (~bswartz@98.122.139.152) a quitté (Ping timeout: 240 seconds) 2017-06-22 21:55:21 --> UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a rejoint #mcdevs 2017-06-22 21:58:58 <-- UUID00 (~UUID00@BSN-182-165-79.dynamic.siol.net) a quitté (Ping timeout: 260 seconds) 2017-06-23 01:42:11 <-- Voltasalt (~Voltasalt@5.101.100.240) a quitté (Ping timeout: 255 seconds) 2017-06-23 01:43:05 <-- r04r (r04r@unaffiliated/r04r) a quitté (Ping timeout: 255 seconds) 2017-06-23 01:43:51 --> Voltasalt (~Voltasalt@5.101.100.240) a rejoint #mcdevs 2017-06-23 01:53:04 --> r04r (r04r@unaffiliated/r04r) a rejoint #mcdevs 2017-06-23 02:46:51 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Quit: NathanWolf) 2017-06-23 03:33:20 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 255 seconds) 2017-06-23 03:58:39 --> Grandolf (~NotGrando@unaffiliated/grandolf) a rejoint #mcdevs 2017-06-23 03:59:49 Grandolf is there another server for minecraft? 2017-06-23 04:05:06 Hafydd Grandolf: other than which server? 2017-06-23 04:05:40 Grandolf this one 2017-06-23 04:05:53 Hafydd Do you mean this IRC network? 2017-06-23 04:05:54 Grandolf i meant an irc server 2017-06-23 04:06:03 Hafydd I see. Good Question. 2017-06-23 04:06:05 Grandolf is there an irc server for minecraft 2017-06-23 04:06:09 Grandolf lol 2017-06-23 04:06:17 Grandolf minetest has one 2017-06-23 04:06:19 +SpaceManiac Most Minecraft-related IRC channels are on Esper 2017-06-23 04:06:30 Grandolf ok 2017-06-23 04:28:43 <-- hexhaxtron (~hexhaxtro@mail.thunix.org) a quitté (Read error: Connection reset by peer) 2017-06-23 04:37:32 <-- UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2017-06-23 04:40:51 --> UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a rejoint #mcdevs 2017-06-23 04:52:36 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-06-23 04:53:32 <-- UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2017-06-23 04:57:37 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Quit: NathanWolf) 2017-06-23 05:53:31 <-- md_5 (~md_5@mcdevs/trusted/md-5) a quitté (Quit: ZNC - http://znc.in) 2017-06-23 05:58:01 --> md_5 (~md_5@mcdevs/trusted/md-5) a rejoint #mcdevs 2017-06-23 05:58:01 -- Mode #mcdevs [+v md_5] par ChanServ 2017-06-23 06:31:06 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-23 06:34:28 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 276 seconds) 2017-06-23 06:34:29 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-06-23 07:37:40 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-23 08:07:08 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 246 seconds) 2017-06-23 10:53:45 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-06-23 11:11:33 --> UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a rejoint #mcdevs 2017-06-23 11:29:19 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-06-23 13:01:05 <-- C4K3 (~C4K3@0127801301.0.fullrate.ninja) a quitté (Read error: Connection reset by peer) 2017-06-23 13:02:08 --> C4K3 (~C4K3@0127801301.0.fullrate.ninja) a rejoint #mcdevs 2017-06-23 13:12:31 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-23 13:15:46 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Client Quit) 2017-06-23 14:48:07 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-23 15:12:44 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2017-06-23 15:41:57 <-- Grandolf (~NotGrando@unaffiliated/grandolf) a quitté (Read error: Connection reset by peer) 2017-06-23 16:21:31 Not-75c6 [minecraft-data] rom1504 pushed 1 commit to master [+0/-0/±1] https://github.com/PrismarineJS/minecraft-data/compare/15789f546c49...e604291bd6b9 2017-06-23 16:21:32 Not-75c6 [minecraft-data] rom1504 e604291 - add minecraft-assets link as a related project 2017-06-23 16:26:43 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-06-23 16:35:10 Meeeh https://www.java.com/pl/download/faq/minecraft.xml lel 2017-06-23 16:37:18 MiniDigger english version https://www.java.com/en/download/faq/minecraft.xml ;) 2017-06-23 17:35:37 timmyRS Awesome 2017-06-23 17:57:56 <-- SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a quitté (Ping timeout: 246 seconds) 2017-06-23 18:02:48 --> C4K3_ (~C4K3@0127801301.0.fullrate.ninja) a rejoint #mcdevs 2017-06-23 18:03:01 --> SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-06-23 18:03:01 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2017-06-23 18:05:40 <-- C4K3 (~C4K3@0127801301.0.fullrate.ninja) a quitté (Ping timeout: 260 seconds) 2017-06-23 18:12:34 Meeeh MiniDigger, oh, derp me, I was sure I copied english one :D 2017-06-23 18:15:54 <-- C4K3_ (~C4K3@0127801301.0.fullrate.ninja) a quitté (Read error: Connection reset by peer) 2017-06-23 18:16:36 --> C4K3 (~C4K3@0127801301.0.fullrate.ninja) a rejoint #mcdevs 2017-06-23 18:57:13 +SinZ Microsofts continued labeling of the PC edition as Java edition might have forced that 2017-06-23 19:51:07 +Dinnerbone It's from 2011~ so I doubt it! 2017-06-23 20:01:51 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-23 20:11:59 --> bswartz (~bswartz@98.122.139.152) a rejoint #mcdevs 2017-06-23 20:26:10 <-- SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a quitté (Ping timeout: 268 seconds) 2017-06-23 20:30:31 --> SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-06-23 20:30:31 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2017-06-23 21:36:15 <-- EW8GU (admin@ho.by) a quitté (Ping timeout: 260 seconds) 2017-06-23 22:12:06 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-23 22:21:07 --> chrismin13 (5b8a810c@gateway/web/freenode/ip.91.138.129.12) a rejoint #mcdevs 2017-06-23 22:22:31 chrismin13 Looking for someone that knows exactly how the new recipe system works, both client side and server side. Anyone that could possibly help? Thanks. 2017-06-23 22:38:04 chrismin13 They were right when they told me that this IRC is inactive. If anyone read the message and is willing to help, I would very much appreciate it. 2017-06-23 22:42:22 pokechu22 It's complicated... you might be best off using MCP to investigate it yourself 2017-06-23 22:43:34 pokechu22 But the existing packets are only to unlock already-defined recipes (IIRC using preexisting IDs); you can't define new recipes yet (that'll be added in 1.13) 2017-06-23 22:54:12 chrismin13 NOOO! :( Thank you for your response. I spent the past 2 weeks trying to do that with Spigot, found all the correct methods from NMS but never got any Custom Recipes to load. I guess it's game over. Thank you for your response, I'll return to the problem when 1.13 is out. 2017-06-23 22:54:23 chibill well poke you technically can ;p 2017-06-23 22:54:31 chrismin13 HOW 2017-06-23 22:54:50 chibill with how spigot can noramlly add recipes. But the client won't show them in the system. 2017-06-23 22:55:02 chrismin13 Yes, I meant the recipe book 2017-06-23 22:55:21 chrismin13 Unfortunately, it's impossible to add new entries to the recipe book as it seems 2017-06-23 22:55:42 chibill rip 2017-06-23 22:56:05 chrismin13 I have Custom Recipes with Custom Items and Custom Textures running flawlessly on anything above 1.9, was just hoping for true 1.12 support for this upcoming plugin... Oh well 2017-06-23 22:57:59 chibill Well there is code in the actual RecipeList class to add recipes but the packet side of it has not been implemented it seems. 2017-06-23 23:00:19 chibill Actually there might be away with the packet named SPacketRecipeBook in MCP 2017-06-23 23:00:51 chibill Because you can pass it a list of recipes for something. 2017-06-23 23:02:50 chibill I need to experiment some to figure this out. As from the code it seems like we could send it new recipes to the book,. 2017-06-23 23:02:53 chibill some how. 2017-06-23 23:04:34 chrismin13 Wait... so there's technically some way to do this, but the packet hasn't been implemented yet? Is there ANY WAY we could get this to work without doing client side modding? Please tell me there's hope, I've wasted two weeks and I wanna finish this. 2017-06-23 23:05:12 chibill I don't know. I am looking into it. (Need to find a better set of mappings / the 1.12 mcp download instead of just the mappings) 2017-06-23 23:06:51 chrismin13 MY MAN. Good luck! If I can help you in any way, shape or form, let me know and I'll do my best. If you get anything to work, also let me know. 2017-06-23 23:09:16 chibill I will need the luck. ;p 2017-06-23 23:10:29 chibill One thing to try is adding an extra recipe to the server jar and see what happens. (I mean the .json files) 2017-06-23 23:10:45 chrismin13 I tried 2017-06-23 23:10:50 chrismin13 Here's what happens 2017-06-23 23:11:08 chrismin13 If you edit a recipe in the server jar, it doesn't get updated 2017-06-23 23:11:23 chrismin13 Tried adding an IRecipe and NamespacedKey with code, still nothing 2017-06-23 23:11:37 chrismin13 Tried using a Resource Pack + Modding the Server JAR: Nothing 2017-06-23 23:11:46 chrismin13 Recipe on the client never changed 2017-06-23 23:12:07 chrismin13 Also, I now follow you on Twitter cause Google :P 2017-06-23 23:13:21 chibill lol 2017-06-23 23:13:41 chibill I mostly do weird stuff with finding basic jar mappings ;p 2017-06-23 23:14:19 chrismin13 I have no idea what JAR Mappings are, but I'll follow you anyways xD 2017-06-23 23:14:25 chrismin13 Off to google 2017-06-23 23:16:45 chibill The obfuscation mappings. (Like a.class == EnumChatFormat.class) 2017-06-23 23:17:14 chrismin13 Huh, cool! I saw md-5 has some stuff on GitHub. 2017-06-23 23:19:29 pokechu22 Oh, by the way, you should really try MCP if you're trying to understand the code, since it's a lot easier to use (there are comments!). There's a 1.12 beta version here: http://www.modcoderpack.com/website/content/mcp-940 (and get the snapshot mappings from http://export.mcpbot.bspk.rs/) 2017-06-23 23:21:26 chrismin13 WAT. Comments? Sign me up. Off to the download page. I had it in the past, but I didn't know that much back then :P 2017-06-23 23:23:39 chibill :D I figured out you can if the client had them. (Say a resource pack of sorts) you could load them with the get by ID stuff. Still investigating more options. 2017-06-23 23:24:42 chrismin13 WHHHAAAAAA 2017-06-23 23:24:45 chrismin13 I can do that 2017-06-23 23:25:00 chibill I am seeing if it will work even... 2017-06-23 23:25:01 chrismin13 I can generate JSON, put it in a resource pack and ship it off to the player 2017-06-23 23:25:20 chibill I want to make sure that will work before sending you off with it. 2017-06-23 23:25:34 chrismin13 I already have it for the Custom Textures, generating the Custom Recipes will be extremely easy! :D 2017-06-23 23:25:49 chrismin13 Still trying to set up MCP with the snapshot mappings 2017-06-23 23:26:53 chibill you don't need those other mappings btw they just help map stuff that are like field_131314_a to a name 2017-06-23 23:27:48 chrismin13 I know, I'd like to set them up though. Trying to find a good guide, do you have any to recommend? Thank you so much for everything! 2017-06-23 23:29:55 chibill just drop the extra files into the folder named conf in mcp 2017-06-23 23:30:55 chrismin13 OH! Thanks! I'll try it 2017-06-23 23:33:57 chibill Well my idea was wrong. (Or its because the recipe for that item exists already and you cant over write it in the book) 2017-06-23 23:35:09 chrismin13 Interesting. Maybe try with an item that doesn't exist, like Chainmail armor 2017-06-23 23:39:29 --> EW8GU (admin@ho.by) a rejoint #mcdevs 2017-06-23 23:43:42 chrismin13 chilbill, any progress with the recipes? I've been trying to get MCP to install so that I can help but it's stuck at copying assets for a while now. 2017-06-23 23:44:51 pokechu22 That does take a while; there's several steps to it. It can take up to 30 minutes on my machine 2017-06-23 23:47:39 chrismin13 Hmm, ok. 2017-06-23 23:51:15 chibill I am not sure it will work. Seems annoying but,,,, 2017-06-23 23:56:59 chrismin13 While I don't think this will ever achieve what I was originally hoping for, I still wanna try just to better know what are the possibilities 2017-06-24 00:43:48 --> AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-24 00:44:42 AJM__ Anbody know how to convert placed block data to item data?