17:09 -!- PhonicUK [~PhonicUK@178.32.54.5] has joined #mcdevs 17:10 -!- PhonicUK [~PhonicUK@178.32.54.5] has quit [Changing host] 17:10 -!- PhonicUK [~PhonicUK@pdpc/supporter/student/phonicuk] has joined #mcdevs 17:10 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has quit [Quit: exit(0);] 17:19 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has joined #mcdevs 17:20 -!- Paprikac_ [~Paprikach@178.115.250.169.wireless.dyn.drei.com] has joined #mcdevs 17:31 -!- Calinou [~Calinou@unaffiliated/calinou] has joined #mcdevs 17:32 -!- pdelvo [~pdelvo@mcdevs/trusted/pdelvo] has quit [Read error: Connection reset by peer] 17:32 < pbunny> DEBUG(16:6)|parsebuffer()@parser.c:779: player mehiko123 digged out block (type 255) at [768,3114,-103] 17:32 -!- pdelvo [~pdelvo@mcdevs/trusted/pdelvo] has joined #mcdevs 17:32 -!- mode/#mcdevs [+v pdelvo] by ChanServ 17:32 < pbunny> hmm, some weird player was digging on negative Y position 17:32 < pbunny> cheats/hacks ? 17:37 < jast> bug? 17:38 <+pdelvo> negative y? this cannot be 17:38 <+pdelvo> y is unsigned 17:39 <+pdelvo> it was above 127 ;) 17:39 -!- XAMPP_ [~XAMPP@199.254.116.102] has joined #mcdevs 17:39 -!- TomyLobo [~foo@91-64-168-142-dynip.superkabel.de] has quit [Disconnected by services] 17:39 -!- TomyLobo2 [~foo@91-64-168-142-dynip.superkabel.de] has joined #mcdevs 17:39 -!- TomyLobo2 is now known as TomyLobo 17:41 < pbunny> hmm, probably 17:42 -!- XAMPP [~XAMPP@botters/xampp] has quit [Ping timeout: 256 seconds] 17:45 -!- Netsplit *.net <-> *.split quits: micolous 17:45 -!- Netsplit over, joins: micolous 18:04 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has quit [Ping timeout: 258 seconds] 18:21 -!- Thinkofdeath [~Thinkofde@184.82.146.24] has quit [Read error: Connection reset by peer] 19:06 -!- conehead [~conehead@unaffiliated/conehead] has joined #mcdevs 19:19 -!- Thinkofdeath [~Thinkofde@184.82.146.24] has joined #mcdevs 19:48 -!- BizarreCake [~BizarreCa@46.121.251.157] has quit [Ping timeout: 264 seconds] 19:55 -!- BizarreCake [~BizarreCa@46.121.251.157] has joined #mcdevs 20:02 < inkoate> Know what's annoying? The way my server hash matches the vanilla client's 2/3 of the time. 20:02 < inkoate> And I can't figure out what's wrong in the other 1/3 of cases. 20:02 < inkoate> :) 20:09 < eddyb> interpreting the hash as a number, I think 20:13 < inkoate> as opposed to a string? 20:13 < inkoate> I'm interpreting it as a string conversion of a byte array 20:14 < inkoate> I get the right result on the three tests from the wiki. 20:18 -!- BizarreCake [~BizarreCa@46.121.251.157] has quit [Ping timeout: 252 seconds] 20:26 -!- kcj [~casey@unaffiliated/kcj] has joined #mcdevs 20:26 < inkoate> I'm thinking it must be something that comes up randomly in my host id occasionally. 20:27 < inkoate> How do people generate their random host ids usually? 20:32 -!- mappum [~mappum@c-67-170-21-29.hsd1.wa.comcast.net] has joined #mcdevs 20:45 -!- Calinou [~Calinou@unaffiliated/calinou] has quit [Quit: Excess Flood] 20:57 -!- conehead [~conehead@unaffiliated/conehead] has quit [Quit: Computer has gone to sleep.] 21:10 < eddyb> huh 21:11 < eddyb> I might be clueless 21:12 < eddyb> but I remember something about minecraft interpreting the hash as a signed number instead of an unsigned number or a byte array 21:13 < eddyb> inkoate: number vs byte arrays makes leading 0s disappear, while signed numbers have the sign 21:15 < eddyb> inkoate: those are the only two reasons I would see for your code to work only 60% of the time 21:22 < inkoate> Yeah, eddyb, not sure either. its a byte array, so I'm not losing leading zeroes. 21:27 < eddyb> inkoate: what exactly are you doing? 21:27 < eddyb> inkoate: are you just converting the entire byte array to hex? 21:27 < inkoate> concatenating the server id, the shared secret, and the asn.1 encoding of the public key 21:28 < inkoate> running that through sha1, doing the two's complement if its negative, stripping leading zeroes, then prepending a '-' if it was negative. 21:28 < eddyb> inkoate: can I see code? 21:30 < inkoate> https://gist.github.com/rschulman/5199790 21:31 < eddyb> 0x08 21:31 < eddyb> fail 21:31 < eddyb> so much fail 21:32 < eddyb> that condition should be if hashed[0] & 0x80 { ... 21:32 -!- Cayorion [~OlofLarss@s83-177-171-150.cust.tele2.se] has quit [Read error: Connection reset by peer] 21:32 < Kyle> mmm Golang 21:32 < eddyb> also kinda silly 21:32 < eddyb> and mixed tabs 21:33 < eddyb> ^ is the Golang equivalent for ~? 21:33 < eddyb> that can be confusing 21:34 < inkoate> yeah 21:34 < inkoate> that is what the conditional says, eedyb 21:34 < inkoate> oh wait 21:35 < eddyb> inkoate: can you read? 21:35 < inkoate> you're saying without the ==0 21:35 < eddyb> inkoate: and 0x80 21:35 < inkoate> golang won't let you do it without 21:35 < inkoate> oh, HAH 21:35 < inkoate> jesus typo 21:35 < eddyb> inkoate: are you dyslexic, tired, or just ... yeah :))? 21:35 < inkoate> just not reading closely... 21:35 < inkoate> lordy 21:35 < eddyb> it's probably the code memory 21:36 < eddyb> it's easier for anyone else to spot a typo 21:39 < inkoate> yeah, always is 21:40 < Flemmard> the worse is when you fix the bug but compile another source .. and spend 1h trying to figure out what's wrong .. 21:42 < eddyb> or you forget you need to do one extra step before you can run the test again 21:43 < eddyb> and it still has the problem and you go back to your code 21:43 < inkoate> nice, this appears to be working now 21:43 < inkoate> Thanks, eddyb 21:44 < eddyb> inkoate: np 21:45 < inkoate> Kyle: Don't know if you were being sarcastic before, but I'm actually quite enjoying golang 21:46 < inkoate> doing this server is kinda just a way to test it out a bit. 21:46 < Kyle> inkoate: I wasn't sarcastic 21:46 < inkoate> hard to tell with text sometimes. :) 21:47 < eddyb> I admire google's attempts 21:47 < eddyb> but Golang and Dart kinda went into a wall 21:48 < inkoate> Yeah, I'm not sure dart has much of a future 21:48 < inkoate> I'm not sure about golang, though. 21:48 < inkoate> I think it has potential. 21:48 < eddyb> all the potential has been used 21:49 < eddyb> and I never liked the half-assed syntax anyway 21:49 < eddyb> my bets are on ES6 (maybe ES7, but that might take a while) 21:49 < inkoate> I find it much easier to read than, say, C++ or C# 21:50 < inkoate> yeah, I don't think there's anything that can shake ECMAScript off its pedestal 21:52 -!- Shnaw [shnaw@womirc.com] has quit [Quit: No Ping reply in 180 seconds.] 22:01 -!- Justasic2 [~Justasic@174-25-115-234.ptld.qwest.net] has joined #mcdevs 22:03 -!- Justasic [~Justasic@unaffiliated/justasic] has quit [Ping timeout: 264 seconds] 22:03 -!- Justasic2 is now known as Justasic 22:03 -!- Justasic [~Justasic@174-25-115-234.ptld.qwest.net] has quit [Changing host] 22:03 -!- Justasic [~Justasic@unaffiliated/justasic] has joined #mcdevs 22:29 -!- kcj_ [~casey@205.197.252.27.dyn.cust.vf.net.nz] has joined #mcdevs 22:31 -!- SpaceManiac [~SpaceMani@r74-192-152-131.gtwncmta01.grtntx.tl.dh.suddenlink.net] has quit [Ping timeout: 245 seconds] 22:31 -!- kcj [~casey@unaffiliated/kcj] has quit [Ping timeout: 245 seconds] 22:34 -!- SpaceManiac [~SpaceMani@r74-192-152-131.gtwncmta01.grtntx.tl.dh.suddenlink.net] has joined #mcdevs 22:34 -!- mode/#mcdevs [+v SpaceManiac] by ChanServ 22:46 -!- cathode [~cathode@64.122.193.170] has quit [Read error: Connection reset by peer] 22:49 -!- RainbowDashTable [~cathode@c-76-105-184-52.hsd1.or.comcast.net] has quit [Ping timeout: 252 seconds] 22:51 -!- eddyb [~eddy@unaffiliated/eddyb] has quit [Quit: Konversation terminated!] 22:53 -!- conehead [~conehead@unaffiliated/conehead] has joined #mcdevs 22:54 -!- YukonAppleGeek [~YukonAppl@c-76-115-248-161.hsd1.or.comcast.net] has joined #mcdevs 22:56 -!- conehead [~conehead@unaffiliated/conehead] has quit [Client Quit] 23:24 -!- conehead [~conehead@unaffiliated/conehead] has joined #mcdevs 23:24 -!- GameMakerGm [~gamemaker@cpe-173-175-165-69.elp.res.rr.com] has joined #mcdevs 23:24 -!- GameMakerGm [~gamemaker@cpe-173-175-165-69.elp.res.rr.com] has quit [Changing host] 23:24 -!- GameMakerGm [~gamemaker@wikia/Gamemakergm] has joined #mcdevs 23:31 -!- Darker [5ab38e42@gateway/web/freenode/ip.90.179.142.66] has joined #mcdevs 23:56 -!- kcj_ [~casey@205.197.252.27.dyn.cust.vf.net.nz] has quit [Read error: Connection reset by peer] --- Day changed mer. mars 20 2013 00:13 < rom1504_> superjoe: should minecraft-protocol work with node 0.10.0 ? (on my computer it gets stuck in npm install then it says "Cannot find module '../bin/ursaNative'" if i try to use it anyway) 00:13 < superjoe> I haven't tested it yet 00:13 < superjoe> been busy... I just moved in with my girlfriend 00:21 -!- superjoe [~andy@static-72-89-161-75.nycmny.fios.verizon.net] has quit [Quit: Leaving] 00:41 -!- Paprikac_ [~Paprikach@178.115.250.169.wireless.dyn.drei.com] has quit [Remote host closed the connection] 00:42 -!- Paprikachu [~Paprikach@178.115.250.169.wireless.dyn.drei.com] has joined #mcdevs 01:02 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has quit [Quit: exit(0);] 01:11 < Darker> Any idea how to dodge arrows in client? I mean, how to calculate whether the arrow is flying 01:11 < Darker> towards the player 01:11 < Darker> I failed to even get correct velocity and coordinates 01:41 -!- jargan [jast@zoidberg.org] has joined #mcdevs 01:42 -!- jast [jast@zoidberg.org] has quit [Read error: Operation timed out] 01:48 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has joined #mcdevs 02:02 -!- erai [~erai@ip68-0-17-151.hr.hr.cox.net] has joined #mcdevs 02:16 -!- Xaardas [~tach@p5B253A50.dip.t-dialin.net] has quit [Quit: Tschuess und bis Bald] 02:34 -!- TomyLobo [~foo@91-64-168-142-dynip.superkabel.de] has quit [Quit: Standby mode...] 02:45 -!- Paprikachu [~Paprikach@178.115.250.169.wireless.dyn.drei.com] has quit [Remote host closed the connection] 02:53 -!- md_5 [md_5@mcdevs/trusted/md-5] has quit [Ping timeout: 245 seconds] 03:37 -!- kev009_ [~kev009@tempe0.bbox.io] has quit [Ping timeout: 255 seconds] 03:45 -!- XAMPP_ [~XAMPP@199.254.116.102] has quit [Quit: My code has no bug's, just random features] 03:46 -!- XAMPP [~XAMPP@199.254.116.102] has joined #mcdevs 03:46 -!- XAMPP [~XAMPP@199.254.116.102] has quit [Changing host] 03:46 -!- XAMPP [~XAMPP@botters/xampp] has joined #mcdevs 03:49 -!- kcj [~casey@unaffiliated/kcj] has joined #mcdevs 03:56 -!- Darker [5ab38e42@gateway/web/freenode/ip.90.179.142.66] has quit [Ping timeout: 245 seconds] 04:10 -!- md_5 [md_5@mcdevs/trusted/md-5] has joined #mcdevs 04:10 -!- mode/#mcdevs [+v md_5] by ChanServ 04:16 -!- SinZ_ [~SinZ@CPE-137-147-67-158.lnse7.lon.bigpond.net.au] has joined #mcdevs 04:17 -!- [z]2 [~z@cpc2-seac20-2-0-cust453.7-2.cable.virginmedia.com] has quit [Ping timeout: 240 seconds] 04:17 -!- SinZ [~SinZ@CPE-137-147-67-158.lnse7.lon.bigpond.net.au] has quit [Ping timeout: 240 seconds] 04:17 -!- SinZ_ is now known as SinZ 04:20 -!- [z] [~z@cpc2-seac20-2-0-cust453.7-2.cable.virginmedia.com] has joined #mcdevs 04:55 -!- RainbowDashTable [~cathode@c-76-105-184-52.hsd1.or.comcast.net] has joined #mcdevs 05:05 -!- kcj [~casey@unaffiliated/kcj] has quit [Ping timeout: 252 seconds] 05:12 -!- kcj [~casey@unaffiliated/kcj] has joined #mcdevs 05:15 -!- BizarreCake [~BizarreCa@46.121.251.157] has joined #mcdevs 05:24 -!- dimaa [~dimaa@c-50-131-97-0.hsd1.ca.comcast.net] has joined #mcdevs 06:06 -!- Zachoz|Away is now known as Zachoz 06:22 -!- balrog [~balrog@discferret/developer/balrog] has quit [Ping timeout: 248 seconds] 06:28 -!- balrog [~balrog@discferret/developer/balrog] has joined #mcdevs 06:47 -!- RainbowDashTable [~cathode@c-76-105-184-52.hsd1.or.comcast.net] has quit [Ping timeout: 258 seconds] 06:52 -!- Justasic2 [~Justasic@71-32-240-39.ptld.qwest.net] has joined #mcdevs 06:54 -!- Justasic [~Justasic@unaffiliated/justasic] has quit [Ping timeout: 245 seconds] 06:54 -!- Justasic2 is now known as Justasic 06:54 -!- Justasic [~Justasic@71-32-240-39.ptld.qwest.net] has quit [Changing host] 06:54 -!- Justasic [~Justasic@unaffiliated/justasic] has joined #mcdevs 07:12 -!- md_5 [md_5@mcdevs/trusted/md-5] has quit [Ping timeout: 258 seconds] 07:16 -!- Zachoz [~Zachoz@pdpc/supporter/student/zachoz] has quit [Ping timeout: 256 seconds] 07:17 -!- md_5 [md_5@mcdevs/trusted/md-5] has joined #mcdevs 07:17 -!- mode/#mcdevs [+v md_5] by ChanServ 07:21 -!- RainbowDashTable [~cathode@c-76-105-184-52.hsd1.or.comcast.net] has joined #mcdevs 07:27 -!- Zachoz [~Zachoz@pdpc/supporter/student/zachoz] has joined #mcdevs 07:28 -!- dimaa [~dimaa@c-50-131-97-0.hsd1.ca.comcast.net] has quit [Quit: Leaving] 07:32 -!- Justasic [~Justasic@unaffiliated/justasic] has quit [Ping timeout: 240 seconds] 07:34 -!- Justasic [~Justasic@unaffiliated/justasic] has joined #mcdevs 08:03 -!- conehead [~conehead@unaffiliated/conehead] has quit [Quit: Computer has gone to sleep.] 08:27 -!- RainbowDashTable [~cathode@c-76-105-184-52.hsd1.or.comcast.net] has quit [Quit: Leaving] 08:38 -!- Prf_Jakob [~jakob@c-3b27e155.1214-1-64736c20.cust.bredbandsbolaget.se] has quit [Ping timeout: 252 seconds] 08:40 -!- Prf_Jakob [~jakob@c-3b27e155.1214-1-64736c20.cust.bredbandsbolaget.se] has joined #mcdevs 08:40 -!- mode/#mcdevs [+v Prf_Jakob] by ChanServ 08:42 -!- mappum [~mappum@c-67-170-21-29.hsd1.wa.comcast.net] has quit [Ping timeout: 256 seconds] 09:06 -!- GameMakerGm [~gamemaker@wikia/Gamemakergm] has quit [] 09:24 -!- jargan is now known as jast 10:16 -!- Paprikachu [~Paprikach@178.115.250.169.wireless.dyn.drei.com] has joined #mcdevs 10:23 -!- kcj [~casey@unaffiliated/kcj] has quit [Ping timeout: 256 seconds] 10:34 -!- Justasic [~Justasic@unaffiliated/justasic] has quit [Ping timeout: 245 seconds] 10:35 -!- Justasic [~Justasic@unaffiliated/justasic] has joined #mcdevs 11:45 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has joined #mcdevs 12:36 -!- Stormx2 [~Stormx2@cpc18-sotn9-2-0-cust33.15-1.cable.virginmedia.com] has quit [Ping timeout: 272 seconds] 12:38 -!- TomyLobo [~foo@91-64-168-142-dynip.superkabel.de] has joined #mcdevs 12:54 -!- Stormx2 [~Stormx2@2001:630:d0:f110:80eb:dd6e:7de5:8573] has joined #mcdevs 13:03 -!- gmazoyer_ [~Respawner@cr.gravitons.in] has quit [Quit: I'll be back] 13:05 -!- gmazoyer [~Respawner@cr.gravitons.in] has joined #mcdevs 13:22 -!- eddyb [~eddy@unaffiliated/eddyb] has joined #mcdevs 14:06 -!- Xaardas [~tach@p5B25383D.dip.t-dialin.net] has joined #mcdevs 14:25 -!- Zachoz is now known as Zachoz|Away 14:57 -!- nevyn_ [~nevyn@193.14.72.99] has quit [Remote host closed the connection] 14:59 -!- YukonAppleGeek [~YukonAppl@c-76-115-248-161.hsd1.or.comcast.net] has quit [Quit: Be back later] 15:09 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has quit [Ping timeout: 264 seconds] 16:16 -!- Stormx2 [~Stormx2@2001:630:d0:f110:80eb:dd6e:7de5:8573] has quit [Remote host closed the connection] 16:26 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has quit [Quit: exit(0);] 16:29 -!- Justasic [~Justasic@unaffiliated/justasic] has quit [Ping timeout: 272 seconds] 16:30 -!- Justasic [~Justasic@unaffiliated/justasic] has joined #mcdevs 16:37 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has joined #mcdevs 16:41 -!- Justasic [~Justasic@unaffiliated/justasic] has quit [Ping timeout: 252 seconds] 16:42 -!- cathode [~cathode@64.122.193.170] has joined #mcdevs 16:44 -!- dola [~dola@77-57-175-131.dclient.hispeed.ch] has quit [Quit: ZNC - http://znc.in] 16:44 -!- sadimusi [~sadimusi@77-57-175-131.dclient.hispeed.ch] has quit [Quit: Bye] 16:46 -!- sadimusi [~sadimusi@77-57-175-131.dclient.hispeed.ch] has joined #mcdevs 16:46 -!- mode/#mcdevs [+v sadimusi] by ChanServ 16:55 -!- Rudench [shnaw@womirc.com] has joined #mcdevs 17:02 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has joined #mcdevs 17:06 -!- Justasic [~Justasic@unaffiliated/justasic] has joined #mcdevs 17:11 -!- Calinou [~Calinou@unaffiliated/calinou] has joined #mcdevs 17:19 -!- Paprikachu [~Paprikach@178.115.250.169.wireless.dyn.drei.com] has quit [Ping timeout: 264 seconds] 17:20 -!- Paprikachu [~Paprikach@77.117.247.227.wireless.dyn.drei.com] has joined #mcdevs 17:40 -!- Exio [exio4@trekweb/user/nax] has quit [Ping timeout: 264 seconds] 17:41 -!- conehead [~conehead@unaffiliated/conehead] has joined #mcdevs 17:48 -!- Exio [exio4@trekweb/user/nax] has joined #mcdevs 18:09 -!- MadMockers [~MadMocker@unaffiliated/madmockers] has quit [Ping timeout: 256 seconds] 18:18 -!- Calinou [~Calinou@unaffiliated/calinou] has quit [Remote host closed the connection] 18:20 -!- MadMockers [~MadMocker@202.81.215.163] has joined #mcdevs 18:20 -!- MadMockers [~MadMocker@202.81.215.163] has quit [Changing host] 18:20 -!- MadMockers [~MadMocker@unaffiliated/madmockers] has joined #mcdevs 18:28 -!- Paprikachu [~Paprikach@77.117.247.227.wireless.dyn.drei.com] has quit [Remote host closed the connection] 18:29 -!- MadMockers [~MadMocker@unaffiliated/madmockers] has quit [Ping timeout: 264 seconds] 18:29 -!- MadMockers [~MadMocker@202.81.215.163] has joined #mcdevs 18:29 -!- MadMockers [~MadMocker@202.81.215.163] has quit [Changing host] 18:29 -!- MadMockers [~MadMocker@unaffiliated/madmockers] has joined #mcdevs 18:47 -!- Calinou [~Calinou@unaffiliated/calinou] has joined #mcdevs 19:01 -!- BizarreCake [~BizarreCa@46.121.251.157] has quit [Read error: Operation timed out] 19:04 -!- Scootabyte [~Scootabyt@crown-7-41.resnet.ucsc.edu] has joined #mcdevs 19:04 -!- mode/#mcdevs [+v Scootabyte] by ChanServ 19:12 -!- BizarreCake [~BizarreCa@46.121.251.157] has joined #mcdevs 19:33 -!- Scootabyte [~Scootabyt@crown-7-41.resnet.ucsc.edu] has quit [Quit: Leaving] 19:39 -!- MadMockers [~MadMocker@unaffiliated/madmockers] has quit [Ping timeout: 264 seconds] 19:39 -!- MadMockers [~MadMocker@unaffiliated/madmockers] has joined #mcdevs 19:54 -!- nevyn_ [~nevyn@193.14.72.99] has joined #mcdevs 19:55 -!- mappum [~mappum@c-67-170-21-29.hsd1.wa.comcast.net] has joined #mcdevs 19:59 -!- GameMakerGm [~gamemaker@cpe-173-175-165-69.elp.res.rr.com] has joined #mcdevs 19:59 -!- GameMakerGm [~gamemaker@cpe-173-175-165-69.elp.res.rr.com] has quit [Changing host] 19:59 -!- GameMakerGm [~gamemaker@wikia/Gamemakergm] has joined #mcdevs 20:00 -!- MadMockers [~MadMocker@unaffiliated/madmockers] has quit [Ping timeout: 264 seconds] 20:05 -!- MadMockers [~MadMocker@202.81.215.163] has joined #mcdevs 20:05 -!- MadMockers [~MadMocker@202.81.215.163] has quit [Changing host] 20:05 -!- MadMockers [~MadMocker@unaffiliated/madmockers] has joined #mcdevs 20:11 -!- BizarreCake [~BizarreCa@46.121.251.157] has quit [Ping timeout: 245 seconds] 20:14 -!- MadMockers [~MadMocker@unaffiliated/madmockers] has quit [Ping timeout: 264 seconds] 20:15 -!- MadMockers [~MadMocker@unaffiliated/madmockers] has joined #mcdevs 21:01 -!- act4 [56b862ee@gateway/web/freenode/ip.86.184.98.238] has joined #mcdevs 21:01 -!- act4 [56b862ee@gateway/web/freenode/ip.86.184.98.238] has quit [Client Quit] 21:03 -!- Calinou [~Calinou@unaffiliated/calinou] has quit [Remote host closed the connection] 21:04 -!- dridri [4ef6375d@gateway/web/freenode/ip.78.246.55.93] has joined #mcdevs 21:04 < dridri> hi pple o/ 21:05 < dridri> I need help with my homemade client 21:06 < dridri> *foreveralone* 21:07 <+Prf_Jakob> 2 minutes are like millieseconds in IRC times 21:07 < dridri> ^^ 21:07 < dav1d> hi 21:07 <+Prf_Jakob> don't ask to ask, just ask the question 21:07 < dav1d> would help if you could explain your problem 21:07 < dridri> ok, so 21:08 < dridri> i can connect to a server, it sends me its spawn point, my position, chunk data around me, mobs and all.. 21:08 < dridri> but when I send a packet to update my position, it seems that it doesn't reveice it 21:08 < dridri> *receive 21:09 < dridri> cause it doesn't transfer chunk data around the new position 21:09 < dav1d> you could use a proxy to verfiy that it gets sent 21:09 < dridri> its a local server 21:09 < dav1d> and? 21:09 < dav1d> makes no difference 21:09 < dav1d> you can still use a proxy 21:10 < dridri> lol, actually its weird since it can receive chat messages packets 21:10 < dridri> and every other packets btw 21:11 < dridri> but how do I use a proxy since the data is encrypted? 21:12 < dav1d> well, if every other packet arrives... 21:12 < dav1d> dridri: like mc3p 21:12 < dav1d> you give the proxy your credentials or you set the server in offline mode 21:13 < dridri> hum offline mode doesn't disable encryption 21:13 < dav1d> oh nvm 21:14 < dav1d> yeah just connect to the proxy instead connecting to the server 21:14 < dridri> ok ill try 21:15 -!- GameMakerGm [~gamemaker@wikia/Gamemakergm] has quit [] 21:15 < dav1d> but it's still strange that other packets arrive 21:15 < dav1d> maybe it's malformed 21:15 < dav1d> but this should disconnect you 21:16 < dav1d> proxy can verify that you send the packet correctly though 21:16 < dridri> I was thinking that it's just because I forgot initialization packets? 21:17 < dridri> I maybe do something wrong after the handshake 21:17 < dav1d> then use mc3p's login verfication thingy 21:18 < dridri> ok 21:18 < dridri> hmm, do you know the command line to run it ? 21:22 < dav1d> can't remeber 21:22 < dav1d> but it should be in the readme 21:22 < dav1d> mc3p fork from sadimusi 21:22 < dridri> if I send the PlayerPosition packets 20 times per second I got a "disconnect.genericReason" 21:22 < dridri> ok thanks 21:32 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has quit [Remote host closed the connection] 21:36 < dridri> uhhh 21:36 < dridri> this proxy is too old 21:36 < dridri> it uses 1.3 version 22:10 < Thinkofdeath> dridri: https://github.com/SirCmpwn/SMProxy 22:37 < dridri> thx x) 22:49 -!- umby24 [~umby24@cpe-70-120-74-121.satx.res.rr.com] has joined #mcdevs 22:53 -!- Justasic [~Justasic@unaffiliated/justasic] has quit [Ping timeout: 245 seconds] 22:54 -!- Darker [5ab38e42@gateway/web/freenode/ip.90.179.142.66] has joined #mcdevs 22:54 < Darker> Of YAW and PITCH, which one determines the rotation around Y axis? The rotation of body? 22:55 < inkoate> That should be yaw, Darker. 22:56 < Darker> Thank you :) So changing Pitch apropriatelly would make character look like he is nodding? 22:56 < inkoate> Yep, I think so. 22:57 < Darker> Thank you very much 22:59 -!- Justasic [~Justasic@unaffiliated/justasic] has joined #mcdevs 23:17 -!- Xaardas [~tach@p5B25383D.dip.t-dialin.net] has quit [Quit: Tschuess und bis Bald] 23:18 -!- eddyb is now known as Eddyb 23:19 -!- Eddyb is now known as eDDYB 23:19 -!- eDDYB is now known as eddyb 23:25 -!- eddyb [~eddy@unaffiliated/eddyb] has quit [Quit: Konversation terminated!] 23:28 -!- YukonAppleGeek [~YukonAppl@c-76-115-248-161.hsd1.or.comcast.net] has joined #mcdevs --- Day changed jeu. mars 21 2013 00:18 -!- dridri [4ef6375d@gateway/web/freenode/ip.78.246.55.93] has quit [Quit: Page closed] 00:22 -!- Not-001 [~notifico@ec2-50-19-116-14.compute-1.amazonaws.com] has quit [Remote host closed the connection] 00:37 < Darker> May I suggest Destroy Entity (0x1D) -> entity count be changed from "byte" to "unsigned byte"? 00:37 < Darker> talking about wiki of course 00:38 -!- Justasic [~Justasic@unaffiliated/justasic] has quit [Ping timeout: 245 seconds] 00:44 -!- Justasic [~Justasic@unaffiliated/justasic] has joined #mcdevs 00:53 -!- cathode [~cathode@64.122.193.170] has quit [Quit: Leaving] 01:03 -!- |Blaze| [~scott@S01060002b3983ca3.ed.shawcable.net] has quit [Ping timeout: 276 seconds] 01:03 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has quit [Quit: exit(0);] 01:41 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has joined #mcdevs 01:59 -!- TomyLobo [~foo@91-64-168-142-dynip.superkabel.de] has quit [Quit: Standby mode...] 02:19 -!- Darker [5ab38e42@gateway/web/freenode/ip.90.179.142.66] has quit [Ping timeout: 245 seconds] 03:41 < umby24> does anyone have example code for parsing map chunks in C# that i could use? I'm having trouble parsing them still. 03:42 < dexter0> umby24: https://github.com/SirCmpwn/Craft.Net would be a good place to look. 03:43 < umby24> it has server-side code, i havn't managed to find client side stuff yet though.. I'll skim through it again though 03:43 < umby24> (for map parsing specifically, anyway) 03:55 < umby24> yeah, he doesn't have it parsed. it just reads it and throws the info away 04:43 -!- GameMakerGm [~gamemaker@cpe-173-175-165-69.elp.res.rr.com] has joined #mcdevs 04:43 -!- GameMakerGm [~gamemaker@cpe-173-175-165-69.elp.res.rr.com] has quit [Changing host] 04:43 -!- GameMakerGm [~gamemaker@wikia/Gamemakergm] has joined #mcdevs 05:08 -!- kcj [~casey@unaffiliated/kcj] has joined #mcdevs 05:18 -!- dimaa [~dimaa@c-50-131-97-0.hsd1.ca.comcast.net] has joined #mcdevs 05:48 -!- kev009_ [~kev009@tempe0.bbox.io] has joined #mcdevs 05:48 -!- mode/#mcdevs [+v kev009_] by ChanServ 05:55 -!- kcj [~casey@unaffiliated/kcj] has quit [Remote host closed the connection] 05:56 -!- Zachoz|Away is now known as Zachoz 05:59 -!- Justasic [~Justasic@unaffiliated/justasic] has quit [Ping timeout: 260 seconds] 06:04 -!- Justasic [~Justasic@unaffiliated/justasic] has joined #mcdevs 07:01 -!- eddyb [~eddy@unaffiliated/eddyb] has joined #mcdevs 07:12 -!- GameMakerGm [~gamemaker@wikia/Gamemakergm] has quit [] 07:18 -!- dimaa [~dimaa@c-50-131-97-0.hsd1.ca.comcast.net] has quit [Quit: Leaving] 07:32 -!- Justasic [~Justasic@unaffiliated/justasic] has quit [Ping timeout: 255 seconds] 07:36 -!- Justasic [~Justasic@unaffiliated/justasic] has joined #mcdevs 07:37 -!- Cay [~OlofLarss@s83-177-171-150.cust.tele2.se] has joined #mcdevs 07:45 -!- Justasic [~Justasic@unaffiliated/justasic] has quit [Ping timeout: 276 seconds] 07:48 -!- Justasic [~Justasic@unaffiliated/justasic] has joined #mcdevs 08:03 -!- Prf_Jakob [~jakob@c-3b27e155.1214-1-64736c20.cust.bredbandsbolaget.se] has quit [Ping timeout: 260 seconds] 08:04 -!- Prf_Jakob [~jakob@c-3b27e155.1214-1-64736c20.cust.bredbandsbolaget.se] has joined #mcdevs 08:04 -!- mode/#mcdevs [+v Prf_Jakob] by ChanServ 08:25 -!- Paprikachu [~Paprikach@178.115.250.32.wireless.dyn.drei.com] has joined #mcdevs 09:11 -!- conehead [~conehead@unaffiliated/conehead] has quit [Quit: Computer has gone to sleep.] 09:18 -!- umby24 [~umby24@cpe-70-120-74-121.satx.res.rr.com] has quit [Quit: Nettalk6 - www.ntalk.de] 09:30 -!- mappum [~mappum@c-67-170-21-29.hsd1.wa.comcast.net] has quit [Ping timeout: 240 seconds] 09:41 <+md_5> Grum you should soo totally refactor Packet.read/write(DataInputStream/DataOutputStream) -> Packet.read/write(DataInput/DataOutput); I know it can be done easily and I would love you soo much for it :D 09:42 < Grum> isn't it lovely when people use concrete classes rather than interfaces? 09:43 <+md_5> mmmm 09:43 * md_5 sobs in a corner 09:43 < Grum> hmz also not so easily done 09:43 < Grum> hmmm nah should not be super hard 09:43 <+md_5> I cannot recall any place where anything implementation specific is required 09:44 -!- BizarreCake [~BizarreCa@46.121.251.157] has joined #mcdevs 09:44 <+md_5> on netbeans you just right click; refactor; change method parameters; 09:44 <+md_5> then you are done with it :D 09:45 < Grum> nope you are not 09:45 <+md_5> If I had a copy of mcp ready to go I would test that theory 09:45 * md_5 downloads a copy to test that theory 09:46 < Grum> i am doing it right now 09:46 < Grum> needs a bit more changing 09:46 <+md_5> out of interest; what needs changing? I cant recall anything off the top of my head 09:46 < SinZ> what is the purpose of the change? 09:47 <+md_5> to illustrate I can ask gru_m nicely to clean up the minecraft code? 09:48 < Grum> euh lots of chained method calls 09:49 < Grum> also some places use stream.read instead of stream.readByte() 09:49 <+md_5> Grum well in my defense the obfuscator appears to get rid of the chained calls 09:50 < Grum> yeah i think most get inlined 09:50 < Grum> why is this so useful btw? 09:50 < Grum> i havent seen/used DataInput and DataOutput often 09:52 <+md_5> for replacing the network implementation 09:52 <+md_5> with say; non blocking io 09:54 < Grum> semi-pointless 09:54 < Grum> i mean you'll have bigger problems than this ;) 09:55 <+md_5> nah 09:55 <+md_5> I just do new DataInputStream(new ByteBufInputSTream(buf)) 09:55 <+md_5> but if I can cut one call; and allow more flexibility for other applications; and clean up your code 09:55 <+md_5> why not? 09:55 < Grum> hehe i just noticed that 'PlayerActionPacket' doesnt support y > 127 :p 09:55 < Grum> y = dis.readByte(); 09:56 < Grum> no unsigned byte ftw! 09:56 <+md_5> and help you find bugs! 09:56 <+md_5> well at least we have unsigned shorts 09:56 <+md_5> amiright 09:56 < Grum> hmmm same for TileUpdate 09:56 < Grum> yeah hehe char ftw :P 09:57 * md_5 refactors locally as well 09:57 < Grum> holy crap 09:57 <+md_5> gogogo netbeans 09:57 < Grum> lots of stuff that seems broken 10:00 <+md_5> only 12 broken packets 10:00 <+md_5> this.onGround = var1.read() != 0; 10:00 < SinZ> no biggy, only been broken for a year 10:00 <+md_5> is that really there; or is it inlined 10:02 <+md_5> done; that didnt take long 10:18 -!- kcj [~casey@unaffiliated/kcj] has joined #mcdevs 10:21 -!- BizarreCake [~BizarreCa@46.121.251.157] has quit [Read error: Connection reset by peer] 10:41 -!- kcj [~casey@unaffiliated/kcj] has quit [Ping timeout: 256 seconds] 10:45 -!- BizarreCake [~BizarreCa@46.121.251.157] has joined #mcdevs 10:57 -!- Paprikac_ [~Paprikach@178.115.250.183.wireless.dyn.drei.com] has joined #mcdevs 10:58 -!- Paprikachu [~Paprikach@178.115.250.32.wireless.dyn.drei.com] has quit [Ping timeout: 252 seconds] 10:58 < pbunny> hi 10:59 < pbunny> i have some weird behavior 10:59 < pbunny> i am implementing dropping of items when chest/furnace/workbench is destroyed 11:00 < pbunny> i sent "set block" packet that sets it to air, then i spawn entities for dropped items and sent "spawn object/vehicle" packets for them, then "entity velocity" packets 11:01 -!- Paprikachu [~Paprikach@80.120.175.113] has joined #mcdevs 11:01 < pbunny> however, once the block is destroyed, items fly to adjactent block first, and only from there velocity etc is applied 11:01 < pbunny> behavior is the same as if i haven't destroyed block and spawned them inside it 11:01 < pbunny> how so? i sent 'set block' with type 0 before spawning them.. 11:02 < pbunny> is it possible that mc client processes packets in arbitrary order? 11:03 -!- Paprikac_ [~Paprikach@178.115.250.183.wireless.dyn.drei.com] has quit [Ping timeout: 264 seconds] 11:03 -!- Paprika__ [~Paprikach@80.120.175.113] has joined #mcdevs 11:03 < pbunny> i.e. receives 10 packets, then shuffles them, then processes 11:06 -!- Paprikachu [~Paprikach@80.120.175.113] has quit [Ping timeout: 260 seconds] 11:07 < pbunny> nm, i added 0.5 to z,x,y of spawned entities and it solved 11:39 -!- Paprika__ [~Paprikach@80.120.175.113] has quit [Remote host closed the connection] 11:44 -!- Calinou [~Calinou@unaffiliated/calinou] has joined #mcdevs 12:14 -!- zml2008 [~zml2008@get.your.minions.at.zachsthings.com] has quit [Quit: Adios] 12:14 -!- zml2008 [~zml2008@get.your.minions.at.zachsthings.com] has joined #mcdevs 12:22 -!- Stormx2 [~Stormx2@cpc18-sotn9-2-0-cust33.15-1.cable.virginmedia.com] has joined #mcdevs 12:23 -!- AndrewPH [~AndrewPH@hnng.public-craft.com] has quit [Quit: Oh dear it appears I broke it.] 12:23 -!- AndrewPH [~AndrewPH@hnng.public-craft.com] has joined #mcdevs 12:23 -!- mode/#mcdevs [+v AndrewPH] by ChanServ 12:28 -!- Calinou [~Calinou@unaffiliated/calinou] has quit [Remote host closed the connection] 12:31 -!- Paprikachu [~Paprikach@80.120.175.113] has joined #mcdevs 12:41 -!- Zachoz is now known as Zachoz|Away 13:06 -!- Paprikachu [~Paprikach@80.120.175.113] has quit [Read error: Operation timed out] 13:06 -!- Paprikachu [~Paprikach@77.117.247.132.wireless.dyn.drei.com] has joined #mcdevs 13:08 -!- Paprikachu [~Paprikach@77.117.247.132.wireless.dyn.drei.com] has quit [Remote host closed the connection] 13:12 -!- Paprikachu [~Paprikach@77.117.246.56.wireless.dyn.drei.com] has joined #mcdevs 13:29 -!- TomyLobo [~foo@91-64-168-142-dynip.superkabel.de] has joined #mcdevs 13:35 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has joined #mcdevs 13:40 < Grum> pbunny: they get stuck in the block otherwise and get shoved out 13:59 -!- Stormx2 [~Stormx2@cpc18-sotn9-2-0-cust33.15-1.cable.virginmedia.com] has quit [Ping timeout: 260 seconds] 14:00 -!- SupaYoshi [~SupYoshi@ip4da5d319.direct-adsl.nl] has joined #mcdevs 14:00 < SupaYoshi> Hello 14:01 < SupaYoshi> Anyone here who can help me out with mark2? 14:01 < SupaYoshi> #semicolon separated paths to include or exclude, depending on mode 14:01 < SupaYoshi> plugin.backup.spec=worlds* 14:01 < SupaYoshi> http://pastebin.com/7nykP2k2 would this work? 14:01 < SupaYoshi> My world are claled UnitedFactions 14:02 < SupaYoshi> UnitedFactions_nether 14:02 < SupaYoshi> UnitedFactions_the_end and ShopWorld 14:20 < pbunny> http://wiki.vg/Protocol#Update_Window_Property_.280x69.29 14:20 < pbunny> "0-300 for fuel indicator " 14:20 < pbunny> i noticed that 'fuel' indicator actually shows values 0-150 14:20 < pbunny> above ones are like hidden (shown as full indicator) 14:21 < pbunny> is this 0-300 correct (show it as full until half of fuel is depleted)? 14:21 -!- Paprikachu [~Paprikach@77.117.246.56.wireless.dyn.drei.com] has quit [Remote host closed the connection] 14:22 -!- Paprikachu [~Paprikach@178.115.250.65.wireless.dyn.drei.com] has joined #mcdevs 14:28 -!- Paprikachu [~Paprikach@178.115.250.65.wireless.dyn.drei.com] has quit [Remote host closed the connection] 14:34 < pbunny> 0-200 is correct in 1.5 , i updated wiki 15:00 -!- YukonAppleGeek [~YukonAppl@c-76-115-248-161.hsd1.or.comcast.net] has quit [Quit: Be back later] 15:04 -!- XAMPP [~XAMPP@botters/xampp] has quit [Quit: My code has no bug's, just random features] 15:21 -!- Paprikachu [~Paprikach@178.115.249.28.wireless.dyn.drei.com] has joined #mcdevs 15:36 -!- Paprikachu [~Paprikach@178.115.249.28.wireless.dyn.drei.com] has quit [Remote host closed the connection] 15:38 -!- dridri [4ef6375d@gateway/web/freenode/ip.78.246.55.93] has joined #mcdevs 15:38 < dridri> hi o/ 15:39 <+sadimusi> o/ 15:39 < TkTech> \o 15:40 < dridri> I still have trouble to send player's position to server 15:40 < dridri> when I compare the proxyed data with the real client everything seems ok.. 15:42 < dridri> I do as described here http://wiki.vg/How_to_Write_a_Client but doesn't work.. 15:50 < dav1d> clonejo|offline: you played around with luad? 16:10 -!- Rudench [shnaw@womirc.com] has quit [Quit: No Ping reply in 180 seconds.] 16:18 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has quit [Quit: exit(0);] 16:21 -!- |Blaze| [~scott@S010600055d4e974a.ed.shawcable.net] has joined #mcdevs 16:27 -!- |Blaze|_ [~scott@S01060002b3983ca3.ed.shawcable.net] has joined #mcdevs 16:30 -!- |Blaze| [~scott@S010600055d4e974a.ed.shawcable.net] has quit [Ping timeout: 252 seconds] 16:32 < dridri> finally got it! 16:33 < dridri> the client just need to respond with the exact same data after receiving the first 0x0D command 16:40 -!- dridri [4ef6375d@gateway/web/freenode/ip.78.246.55.93] has quit [Quit: Page closed] 16:46 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has joined #mcdevs 17:01 -!- cathode [~cathode@64.122.193.170] has joined #mcdevs 17:07 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has quit [Quit: exit(0);] 17:13 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has joined #mcdevs 17:24 -!- conehead [~conehead@unaffiliated/conehead] has joined #mcdevs 17:26 < pbunny> do ender chests work the same as regular chests? 17:26 < pbunny> same number of slots etc? 17:42 -!- Stormx2 [~Stormx2@cpc18-sotn9-2-0-cust33.15-1.cable.virginmedia.com] has joined #mcdevs 17:50 -!- Xaardas [~tach@p5B253432.dip.t-dialin.net] has joined #mcdevs 18:06 -!- MonkeyPwns [1710d829@gateway/web/freenode/ip.23.16.216.41] has joined #mcdevs 18:33 -!- MonkeyPwns [1710d829@gateway/web/freenode/ip.23.16.216.41] has quit [Quit: Page closed] 19:11 -!- Paprikachu [~Paprikach@93-82-140-105.adsl.highway.telekom.at] has joined #mcdevs 19:27 -!- mappum [~mappum@c-67-170-21-29.hsd1.wa.comcast.net] has joined #mcdevs 20:12 -!- Calinou [~Calinou@unaffiliated/calinou] has joined #mcdevs 20:12 < BizarreCake> What's the starting value for hunger saturation? 20:13 < BizarreCake> Does anyone know? 20:14 < BizarreCake> Oh nevermind, it's 20 too. 20:20 -!- act4 [56b862ee@gateway/web/freenode/ip.86.184.98.238] has joined #mcdevs 20:34 -!- Sietsem [~SietseFRE@109.70.2.118] has quit [Read error: Operation timed out] 20:34 -!- Sietsem [~SietseFRE@109.70.2.118] has joined #mcdevs 20:46 -!- kcj [~casey@unaffiliated/kcj] has joined #mcdevs 21:01 -!- Cay [~OlofLarss@s83-177-171-150.cust.tele2.se] has quit [Read error: Connection reset by peer] 21:04 -!- Stormx2 [~Stormx2@cpc18-sotn9-2-0-cust33.15-1.cable.virginmedia.com] has quit [Ping timeout: 260 seconds] 21:06 -!- Calinou [~Calinou@unaffiliated/calinou] has quit [Quit: Excess Flood] 21:06 -!- kcj [~casey@unaffiliated/kcj] has quit [Ping timeout: 246 seconds] 21:09 -!- act4 [56b862ee@gateway/web/freenode/ip.86.184.98.238] has quit [Ping timeout: 245 seconds] 21:27 -!- Paprikachu [~Paprikach@93-82-140-105.adsl.highway.telekom.at] has quit [Remote host closed the connection] 21:28 -!- Paprikachu [~Paprikach@77.116.246.233.wireless.dyn.drei.com] has joined #mcdevs 21:33 -!- Paprikachu [~Paprikach@77.116.246.233.wireless.dyn.drei.com] has quit [Remote host closed the connection] 21:34 -!- Paprikachu [~Paprikach@77.116.246.233.wireless.dyn.drei.com] has joined #mcdevs 21:39 -!- eddyb [~eddy@unaffiliated/eddyb] has quit [Quit: Konversation terminated!] 21:44 -!- Paprikac_ [~Paprikach@93-82-140-105.adsl.highway.telekom.at] has joined #mcdevs 21:46 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has quit [Remote host closed the connection] 21:48 -!- Paprikachu [~Paprikach@77.116.246.233.wireless.dyn.drei.com] has quit [Ping timeout: 256 seconds] 21:59 < SupaYoshi> hey 21:59 < SupaYoshi> STorm2x around? 22:02 -!- cathode [~cathode@64.122.193.170] has quit [Quit: Leaving] 22:07 -!- cathode [~cathode@64.122.193.170] has joined #mcdevs 22:17 -!- superjoe [~andy@static-72-89-161-75.nycmny.fios.verizon.net] has joined #mcdevs 22:25 -!- Paprikac_ [~Paprikach@93-82-140-105.adsl.highway.telekom.at] has quit [Remote host closed the connection] 22:26 -!- Not-001 [~notifico@ec2-50-19-116-14.compute-1.amazonaws.com] has joined #mcdevs 22:26 < Not-001> [Craft.Net] SirCmpwn pushed 5 commits to master [+5/-0/±20] http://git.io/nltUhA 22:26 < Not-001> [Craft.Net] SirCmpwn aabfdde - Added read-only world classes for clients 22:26 < Not-001> [Craft.Net] SirCmpwn a7e85ca - Added ability to save read only worlds, unload chunks 22:26 < Not-001> [Craft.Net] SirCmpwn 53f7fdd - Parse chunk packets in client 22:26 < Not-001> [Craft.Net] SirCmpwn 94c0d9d - Fix bug with 0x38 packets without light 22:26 < Not-001> [Craft.Net] SirCmpwn df2f710 - Added ChunkRecieved event 22:49 -!- GameMakerGm [~gamemaker@cpe-173-175-165-69.elp.res.rr.com] has joined #mcdevs 22:49 -!- GameMakerGm [~gamemaker@cpe-173-175-165-69.elp.res.rr.com] has quit [Changing host] 22:49 -!- GameMakerGm [~gamemaker@wikia/Gamemakergm] has joined #mcdevs 22:49 -!- fortytwo [~thomas@who.let.this.bloody.dropbear.in] has quit [Ping timeout: 255 seconds] 22:52 -!- fortytwo [~thomas@who.let.this.bloody.dropbear.in] has joined #mcdevs 22:54 < erai> What is the largest packet the client can send? 23:03 -!- HaltingState [~HaltingSt@unaffiliated/haltingstate] has quit [Quit: Leaving] 23:04 -!- HaltingState [~HaltingSt@cpe-76-169-228-195.socal.res.rr.com] has joined #mcdevs 23:04 -!- HaltingState [~HaltingSt@cpe-76-169-228-195.socal.res.rr.com] has quit [Changing host] 23:04 -!- HaltingState [~HaltingSt@unaffiliated/haltingstate] has joined #mcdevs 23:04 -!- HaltingState [~HaltingSt@unaffiliated/haltingstate] has quit [Remote host closed the connection] 23:04 -!- HaltingState [~HaltingSt@unaffiliated/haltingstate] has joined #mcdevs 23:18 -!- BizarreCake [~BizarreCa@46.121.251.157] has quit [Ping timeout: 276 seconds] 23:34 -!- Xaardas [~tach@p5B253432.dip.t-dialin.net] has quit [Quit: Tschuess und bis Bald] 23:40 -!- cathode [~cathode@64.122.193.170] has quit [Quit: Leaving] --- Day changed ven. mars 22 2013 00:09 -!- Rudench [shnaw@womirc.com] has joined #mcdevs 00:14 -!- tyteen4a- [tyteen4a03@69.50.229.69] has quit [Read error: Operation timed out] 00:49 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has joined #mcdevs 00:51 -!- PhonicUK [~PhonicUK@pdpc/supporter/student/phonicuk] has quit [Excess Flood] 00:53 -!- PhonicUK [~PhonicUK@pdpc/supporter/student/phonicuk] has joined #mcdevs 01:02 -!- dola [~dola@77-57-175-131.dclient.hispeed.ch] has joined #mcdevs 01:02 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has quit [Quit: exit(0);] 01:06 -!- sadimusi [~sadimusi@77-57-175-131.dclient.hispeed.ch] has quit [Ping timeout: 260 seconds] 01:07 -!- dola [~dola@77-57-175-131.dclient.hispeed.ch] has quit [Ping timeout: 276 seconds] 01:12 -!- dola [~dola@77-57-175-131.dclient.hispeed.ch] has joined #mcdevs 01:12 -!- sadimusi [~sadimusi@77-57-175-131.dclient.hispeed.ch] has joined #mcdevs 01:12 -!- mode/#mcdevs [+v sadimusi] by ChanServ 01:28 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has quit [Ping timeout: 256 seconds] 01:35 -!- SpaceManiac [~SpaceMani@r74-192-152-131.gtwncmta01.grtntx.tl.dh.suddenlink.net] has quit [Read error: Connection reset by peer] 01:36 -!- SpaceManiac [~SpaceMani@r74-192-152-131.gtwncmta01.grtntx.tl.dh.suddenlink.net] has joined #mcdevs 01:36 -!- mode/#mcdevs [+v SpaceManiac] by ChanServ 01:56 -!- tyteen4a03 [tyteen4a03@69.50.229.69] has joined #mcdevs 02:06 -!- Darker [5ab38e42@gateway/web/freenode/ip.90.179.142.66] has joined #mcdevs 02:07 < Darker> Does anyone know how long should I wait before sending 0x0E (finish eating) to make the server accept eating? 02:08 < Darker> I cannot make the client to eat food. 02:08 < Darker> And have the very same problem with arrows. 02:08 < Darker> *I have 02:16 < Darker> Does anyone know what packets are sent to the server when client is eating? 02:18 -!- SupaYoshi [~SupYoshi@ip4da5d319.direct-adsl.nl] has quit [Ping timeout: 252 seconds] 02:23 -!- YukonAppleGeek [~YukonAppl@c-76-115-248-161.hsd1.or.comcast.net] has joined #mcdevs 02:23 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has joined #mcdevs 02:28 -!- TomyLobo [~foo@91-64-168-142-dynip.superkabel.de] has quit [Quit: Standby mode...] 02:29 -!- kcj [~casey@unaffiliated/kcj] has joined #mcdevs 02:42 -!- dimaa [~dimaa@c-50-131-97-0.hsd1.ca.comcast.net] has joined #mcdevs 02:57 -!- kcj [~casey@unaffiliated/kcj] has quit [Quit: kcj] 03:01 -!- EdGruberman [~EdGruberm@unaffiliated/edgruberman] has quit [Quit: Reboot, network failure, or data center explosion] 03:07 -!- EdGruberman [~EdGruberm@184.171.171.26] has joined #mcdevs 03:07 -!- EdGruberman [~EdGruberm@184.171.171.26] has quit [Changing host] 03:07 -!- EdGruberman [~EdGruberm@unaffiliated/edgruberman] has joined #mcdevs 03:25 -!- kcj [~casey@unaffiliated/kcj] has joined #mcdevs 03:26 -!- nathacof [~nathacof@c-67-169-140-47.hsd1.ca.comcast.net] has joined #mcdevs 03:38 < mappum> superjoe: can you update minecraft-protocol on npm to include that last pull request? 03:40 -!- dacoconuttman [48b590ac@gateway/web/freenode/ip.72.181.144.172] has joined #mcdevs 03:43 -!- dacoconuttman [48b590ac@gateway/web/freenode/ip.72.181.144.172] has left #mcdevs [] 03:59 -!- nathacof [~nathacof@c-67-169-140-47.hsd1.ca.comcast.net] has quit [Read error: Connection reset by peer] 04:12 -!- nathacof [~nathacof@c-67-169-140-47.hsd1.ca.comcast.net] has joined #mcdevs 04:12 -!- nathacof [~nathacof@c-67-169-140-47.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 05:22 -!- nathacof [~nathacof@c-67-169-140-47.hsd1.ca.comcast.net] has joined #mcdevs 05:27 -!- nathacof [~nathacof@c-67-169-140-47.hsd1.ca.comcast.net] has quit [Ping timeout: 252 seconds] 05:41 -!- umby24 [~umby24@cpe-70-120-74-121.satx.res.rr.com] has joined #mcdevs 05:56 -!- kev009_ [~kev009@tempe0.bbox.io] has quit [Read error: Connection reset by peer] 05:59 -!- eddyb [~eddy@188.26.225.16] has joined #mcdevs 05:59 -!- eddyb [~eddy@188.26.225.16] has quit [Changing host] 05:59 -!- eddyb [~eddy@unaffiliated/eddyb] has joined #mcdevs 06:04 -!- kev009 [~kev009@tempe0.bbox.io] has joined #mcdevs 06:04 -!- mode/#mcdevs [+v kev009] by ChanServ 06:33 -!- GameMakerGm [~gamemaker@wikia/Gamemakergm] has quit [] 06:39 -!- Zachoz|Away is now known as Zachoz 06:40 -!- nathacof [~nathacof@c-67-169-140-47.hsd1.ca.comcast.net] has joined #mcdevs 06:42 -!- nathacof [~nathacof@c-67-169-140-47.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 06:42 -!- nathacof [~nathacof@173.252.71.189] has joined #mcdevs 06:52 -!- BizarreCake [~BizarreCa@46.121.251.157] has joined #mcdevs 06:55 -!- dimaa [~dimaa@c-50-131-97-0.hsd1.ca.comcast.net] has quit [Quit: Leaving] 06:57 -!- Darker [5ab38e42@gateway/web/freenode/ip.90.179.142.66] has quit [Ping timeout: 245 seconds] 06:58 -!- RainbowDashTable [~cathode@c-76-105-184-52.hsd1.or.comcast.net] has joined #mcdevs 07:00 -!- kcj [~casey@unaffiliated/kcj] has quit [Quit: kcj] 07:03 -!- conehead [~conehead@unaffiliated/conehead] has quit [Quit: Computer has gone to sleep.] 07:34 -!- umby25 [~umby24@cpe-70-120-74-121.satx.res.rr.com] has joined #mcdevs 07:35 -!- umby24 [~umby24@cpe-70-120-74-121.satx.res.rr.com] has quit [Ping timeout: 245 seconds] 07:43 -!- nathacof_ [~nathacof@c-67-169-140-47.hsd1.ca.comcast.net] has joined #mcdevs 07:46 -!- nathacof [~nathacof@173.252.71.189] has quit [Ping timeout: 252 seconds] 07:48 -!- nathacof_ [~nathacof@c-67-169-140-47.hsd1.ca.comcast.net] has quit [Ping timeout: 246 seconds] 07:59 -!- BizarreCake [~BizarreCa@46.121.251.157] has quit [Read error: Connection reset by peer] 08:30 -!- Cay [~OlofLarss@s83-177-171-150.cust.tele2.se] has joined #mcdevs 08:52 -!- Paprikachu [~Paprikach@80.120.175.113] has joined #mcdevs 08:57 -!- Paprikachu [~Paprikach@80.120.175.113] has quit [Remote host closed the connection] 09:29 -!- kcj [~casey@unaffiliated/kcj] has joined #mcdevs 09:35 -!- Paprikachu [~Paprikach@80.120.175.113] has joined #mcdevs 09:40 -!- kcj [~casey@unaffiliated/kcj] has quit [Ping timeout: 255 seconds] 09:53 -!- Paprikachu [~Paprikach@80.120.175.113] has quit [Remote host closed the connection] 09:59 -!- Paprikachu [~Paprikach@80.120.175.113] has joined #mcdevs 10:15 < nickelpro> Hey, what packet is sent by the client to alert the server about a right click on a chest or crafting table? 10:24 -!- kcj [~casey@unaffiliated/kcj] has joined #mcdevs 10:25 -!- kcj [~casey@unaffiliated/kcj] has quit [Remote host closed the connection] 10:26 -!- Paprikachu [~Paprikach@80.120.175.113] has quit [Remote host closed the connection] 10:36 -!- Paprikachu [~Paprikach@80.120.175.113] has joined #mcdevs 10:37 < pbunny> BlockCSS.png 0x8 Smooth Stone Slab (Double Only) 10:37 < pbunny> BlockCSS.png 0x9 Smooth Sandstone Slab (Double Only) 10:37 < pbunny> when should these variants be used? 10:38 < pbunny> instead of their regular (0x0 Stone Slab and 0x1 Sandstone Slab) variants 10:38 < SinZ> uhh 10:38 < SinZ> they just show odd textures 10:38 < SinZ> they arn't craftable 10:39 < SinZ> it shows the top face on all sides 10:39 < pbunny> ok 10:43 -!- Paprikachu [~Paprikach@80.120.175.113] has quit [Ping timeout: 256 seconds] 11:00 -!- BizarreCake [~BizarreCa@46.121.251.157] has joined #mcdevs 11:11 -!- mappum [~mappum@c-67-170-21-29.hsd1.wa.comcast.net] has quit [Ping timeout: 256 seconds] 11:18 -!- kaboss [~kaboss@2607:f0d0:1104:4:17::12c] has quit [Ping timeout: 245 seconds] 11:19 -!- nickelpro [~nickelpro@2607:f0d0:1104:4:17::12c] has quit [Read error: No route to host] 11:23 -!- Stormx2 [~Stormx2@cpc18-sotn9-2-0-cust33.15-1.cable.virginmedia.com] has joined #mcdevs 11:32 < l4mRh4X0r> I suspect the type is detected with a 0x7 mask, and the texture without the mask :P 11:32 < l4mRh4X0r> Something like that 11:32 * l4mRh4X0r shrugs 11:33 < SinZ> its damage 11:33 < SinZ> like 43:3 is cobble(?) 11:36 -!- TomyLobo [~foo@91-64-168-142-dynip.superkabel.de] has joined #mcdevs 11:50 < pbunny> 2 blocks of quartz make 1 vertical pillar quartz block 11:50 < pbunny> how do i make horizontal pillar quartz blocks? 11:51 < SinZ> two slabs iirc 11:51 < l4mRh4X0r> I know it's damage, but I meant for the rendering. 11:51 < SinZ> l4mRh4X0r: he is doing server 11:51 < l4mRh4X0r> I know. 11:52 < l4mRh4X0r> I was just trying to think of a logical explanation for that oddity. 11:52 < l4mRh4X0r> pbunny, you may wanna look here: http://www.minecraftwiki.net/wiki/Crafting 11:52 < pbunny> l4mRh4X0r: i am looking right here atm 11:53 < l4mRh4X0r> ah :P 11:53 < pbunny> i see only vertical pillar quartz block, however there are metadatas for north-south and west-east pillar quartz blocks too 11:53 < pbunny> SinZ: two slabs make chiseled quartz block 11:54 < l4mRh4X0r> Isn't a quartz pillar like logs? 11:55 < pbunny> maybe 11:55 < l4mRh4X0r> i.e. use the metadata value to determine direction :P 11:56 < l4mRh4X0r> Yup. http://www.minecraftwiki.net/wiki/Data_values#Block_of_Quartz 11:56 < pbunny> i know. the question was about how do i craft one 11:56 < l4mRh4X0r> Not. 11:56 < l4mRh4X0r> It's determined by the placement. 11:56 < pbunny> or maybe there are some circumstances when vertical pillars become horizontal 11:56 < pbunny> oh 11:58 < l4mRh4X0r> Just like logs and pistons 12:00 < pbunny> iirc logs do not have texture direction stored in metadata though 12:00 < pbunny> its a client thing 12:00 < pbunny> that's why pillar quartz block made me confused 12:13 -!- Scootabyte [~Scootabyt@crown-7-41.resnet.ucsc.edu] has joined #mcdevs 12:13 -!- mode/#mcdevs [+v Scootabyte] by ChanServ 12:16 < pbunny> "Contents of the chest are put into all Ender Chests created, but the contents are localised to the player in SMP." 12:16 < pbunny> is it true? 12:16 < pbunny> all ender chests actually use inventory stored somewhere in player? 12:18 < jast> well yeah 12:18 < jast> how else could that work 12:24 < SinZ> vannila saves enderchest in their player.dat file 12:40 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has joined #mcdevs 12:46 -!- Darker [5ab38e42@gateway/web/freenode/ip.90.179.142.66] has joined #mcdevs 12:46 < Darker> By any chance, does any one known what packet sequence and timing is required to shoot an arrow? I only achieved to charge the bow (0x0F), but shooting failed 13:17 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has quit [Ping timeout: 260 seconds] 13:34 -!- Paprikachu [~Paprikach@80.120.175.113] has joined #mcdevs 13:45 < Darker> Could anyone give me a hint on arrow shooting sequence? 13:52 < Darker> Can I set bukkit to send debug info with received packets? 13:53 < Darker> So I will know what official client is sending to the server? 14:06 <+sadimusi> Darker: you could try SMProxy and only let it display the relevant packets 14:07 < Darker> I will try this 14:07 < Darker> Displaying relevant packets is exactly what i need 14:09 < Darker> Where do I get it? 14:09 <+sadimusi> https://github.com/SirCmpwn/SMProxy 14:10 -!- Paprikachu [~Paprikach@80.120.175.113] has quit [Remote host closed the connection] 14:12 -!- Zachoz [~Zachoz@pdpc/supporter/student/zachoz] has quit [Quit: ZNC - http://znc.in] 14:13 -!- Zachoz [~Zachoz@pdpc/supporter/student/zachoz] has joined #mcdevs 14:16 < Darker> Thank you. I hope I'll be able to compile it. Usually I fail with compiling others projects 14:20 < Darker> For which version of microsoft visual C++ is the SMProxy? My IDE refuses to open it :( 14:24 < SinZ> its C# 14:24 < SinZ> and it needs visual studio 2012 iirc 14:29 < Darker> That explains a lot, I have Microsoft Visual C++ 2010. What does "iirc" mean? 14:30 < Flemmard> if i remember correctly 14:30 < Flemmard> something like that :) 14:31 < Darker> Well, showed up that microsoft visial 2012 is not freeware. Any chance of importing into code::blocks, or I'll have to steal it? 14:32 < Flemmard> there's some express versions of VS 14:34 < Darker> See it, thank you. Just didn't know that "Express" means "Free" in microsoft :D 14:35 < Flemmard> it's "light" 14:37 < Darker> By the way, does anyone have Windows version compiled? This installing and compilling is so annoying for me, that I'd rather trust a binary file from a stranger 14:38 -!- BizarreCake [~BizarreCa@46.121.251.157] has quit [Ping timeout: 264 seconds] 14:39 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has joined #mcdevs 14:41 < Flemmard> i can try 14:41 < Flemmard> master branch ? 14:44 -!- act4 [56b862ee@gateway/web/freenode/ip.86.184.98.238] has joined #mcdevs 14:46 -!- YukonAppleGeek [~YukonAppl@c-76-115-248-161.hsd1.or.comcast.net] has quit [Ping timeout: 260 seconds] 14:47 -!- act4 [56b862ee@gateway/web/freenode/ip.86.184.98.238] has quit [Client Quit] 14:49 < Flemmard> Darker ? 14:49 < Flemmard> https://dl.dropbox.com/u/27861013/Release.zip 14:49 < Flemmard> freshly compiled 14:52 < Darker> Downloaded, thank you :) 14:52 < Darker> (hoping its not remote admin daemon :P) 14:52 < Flemmard> lol no it's built, packed, uploaded 14:52 < Darker> Just joking :) 14:52 < Flemmard> then if there's a remote daemon in SMproxy ... 14:52 < Flemmard> not my fault :P 14:52 < Flemmard> lol 14:52 -!- BizarreCake [~BizarreCa@46.121.251.157] has joined #mcdevs 14:53 < Flemmard> i know 14:53 < Darker> Right now, my pc is so lagged, that even I can't control it... 14:53 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has quit [Ping timeout: 245 seconds] 14:53 < Darker> There wouldn't be much fun with radmin :D 14:56 < Flemmard> haha 14:56 < Flemmard> there's always the file access, no need for screen control :P 14:58 < Flemmard> so it works ? 14:59 < Darker> Its awesome :D 15:00 < Darker> If i knew about this before, I coul've played minecraft from school 15:00 < Darker> (well, and if i could compile it for linux) 15:00 < Flemmard> you could use mono for it 15:00 < Darker> But now, there is some badass XML. Time to read some configuration docs 15:01 < Darker> Omg those logs are so cool! :D 15:02 -!- Zachoz is now known as Zachoz|Away 15:14 < Darker> What's wrong with this: SMProxy.exe --omit-server --unfilter 0x13,0x66,0x6C,0xCC,0xCD,0xFE,0x00,0x0D,0x0C,0x0B ? 15:15 < Darker> What else should I do with packets to make SMProxy accept the ignore list? 15:23 < Darker> Turned out that 0x is not required 15:32 -!- Darker [5ab38e42@gateway/web/freenode/ip.90.179.142.66] has quit [Quit: Page closed] 15:42 < pbunny> "The placement of the wool block and dye doesn't matter as long as they are both in the crafting grid." 15:42 < pbunny> any other recipes with same behavior (non-important ingredient placement)? 15:44 < SinZ> there are quite a few shapeless recipes 15:44 < pbunny> oh. 15:49 -!- Darker [5ab38e42@gateway/web/freenode/ip.90.179.142.66] has joined #mcdevs 16:25 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has quit [Quit: exit(0);] 16:29 -!- cathode [~cathode@64.122.193.170] has joined #mcdevs 16:31 -!- nathacof [~nathacof@c-67-169-140-47.hsd1.ca.comcast.net] has joined #mcdevs 16:31 -!- XAMPP [~XAMPP@botters/xampp] has joined #mcdevs 16:36 -!- nathacof [~nathacof@c-67-169-140-47.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 16:51 -!- Justasic [~Justasic@unaffiliated/justasic] has quit [Read error: Operation timed out] 16:57 -!- Justasic [~Justasic@unaffiliated/justasic] has joined #mcdevs 17:00 < Darker> Does anyone know how to convert X,Z vector to player Yaw rotation? 17:00 < Darker> I'm so bad with goniomethry... :( 17:01 < Darker> Can't even make reverse of what is advised here: http://wiki.vg/Protocol#Player_Look_.280x0C.29 17:06 -!- nathacof [~nathacof@2620:0:1cfe:18:1610:9fff:fee1:49cf] has joined #mcdevs 17:06 -!- nathacof [~nathacof@2620:0:1cfe:18:1610:9fff:fee1:49cf] has quit [Client Quit] 17:08 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has joined #mcdevs 17:09 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has joined #mcdevs 17:35 -!- eddyb [~eddy@unaffiliated/eddyb] has quit [Quit: Konversation terminated!] 17:46 -!- conehead [~conehead@unaffiliated/conehead] has joined #mcdevs 17:51 -!- BizarreCake [~BizarreCa@46.121.251.157] has quit [Ping timeout: 260 seconds] 18:00 -!- Rudench is now known as Shnaw 18:04 -!- BizarreCake [~BizarreCa@46.121.251.157] has joined #mcdevs 18:17 -!- ml__ [~ml@p5DC2E3B1.dip.t-dialin.net] has joined #mcdevs 18:17 < ml__> Hello 18:17 < ml__> Is there a way for the server to make the client not use encryption? 18:18 < ml__> I'm currently doing a minecraft server in c++, and I can't get encryption to work 18:20 -!- roblabla [~pi@host81-157-233-15.range81-157.btcentralplus.com] has joined #mcdevs 18:21 < Flemmard> that's not the best idea 18:21 < Flemmard> you better focus on making encryption work 18:21 < Flemmard> then you'll be "good" 18:23 < ml__> Okay... 18:23 < Flemmard> as now it's the base of the protocol .. :) 18:25 < ml__> So, for getting the QByteArray to send to the minecraft client, I use the following code: http://pastebin.com/LthGNFkr 18:25 < ml__> It doesn't work... The client can't parse the data I send to it... 18:26 < ml__> Inside the Packet I use the following code to send to the client: http://pastebin.com/kAE6mai2 18:28 < roblabla> Qt ? 18:28 < roblabla> I like thqt :D 18:29 < roblabla> *thqt 18:29 < roblabla> derp. 18:29 < ml__> I get the following from the client: http://pastebin.com/Jsqe0Uwt 18:29 < ml__> Do I have to send the QByteArray encoded as a string? 18:29 < roblabla> No 18:29 < roblabla> For the protocol encryption packets, they're sent as byte arrays 18:30 < ml__> basically, just send one byte after another 18:30 < roblabla> Let me check, but I think so yeah 18:31 < ml__> my byte array ends with "01 00 01", like the vanilla minecraft server's packe 18:31 < ml__> *packet 18:33 < roblabla> yeah, so the bytes should just be next to each other 18:33 < ml__> yes, they are... 18:33 < roblabla> hmm 18:34 < ml__> Wait, I'll show you my wireshark packet 18:34 < roblabla> Yeah 18:34 < roblabla> was going to ask that lol 18:34 < roblabla> Also, what's the error ? 18:34 < roblabla> Oh 18:34 < ml__> http://pastebin.com/Jsqe0Uwt 18:35 < ml__> http://pastebin.com/SAbeXutp -> my packet 18:36 < roblabla> So your rsa key is invalid 18:37 < roblabla> Either you send the key wrong, or what you send isn't what minecraft expects 18:38 -!- SupaYoshi [SupaYoshi@ip4da5d319.direct-adsl.nl] has joined #mcdevs 18:38 < SupaYoshi> hello 18:38 < SupaYoshi> storm2x around? 18:40 < roblabla> is wiki.vg down ? 18:41 < ml__> Yes it is 18:41 < ml__> So, I'll try to use crypto++ instead of openssl now... 18:43 -!- BizarreCake [~BizarreCa@46.121.251.157] has quit [Ping timeout: 252 seconds] 18:47 < roblabla> ml__: take a look at this : http://pastebin.com/CtTCt2HT 18:47 < roblabla> this is how my nodejs server sends the 0xFD packet 18:48 < roblabla> I turn my server key into a PEM string array (one array entry per line in the PEM). 18:49 < roblabla> Then I just have an str containing all the USEFUL lines of the PEM (the lines containing the key), create a Buffer (essentially a byte array) that loads this string as base64, and then send that buffer to the client 18:58 -!- BizarreCake [~BizarreCa@46.121.251.157] has joined #mcdevs 19:05 < pbunny> Darker: http://dpaste.org/PhYN2/raw/ - thats how i convert yaw to z and x vector 19:05 < pbunny> you should do something reverse 19:08 -!- Calinou [~Calinou@unaffiliated/calinou] has joined #mcdevs 19:12 < Darker> That is the problem. I don't know how to reverse the operation... 19:12 < Darker> For now, i do this: atan2(vector[Z],vector[X])*(180.0/M_PI)+90 19:13 < Darker> I don't know why do I have to swap coordinates 19:13 < Darker> neigther I know why to add 90 degrees to the resilt 19:13 < Darker> I achieved this by trying and trying 19:45 -!- Xaardas [~tach@p5B252E88.dip.t-dialin.net] has joined #mcdevs 19:46 -!- GameMakerGm [~gamemaker@cpe-173-175-165-69.elp.res.rr.com] has joined #mcdevs 19:46 -!- GameMakerGm [~gamemaker@cpe-173-175-165-69.elp.res.rr.com] has quit [Changing host] 19:46 -!- GameMakerGm [~gamemaker@wikia/Gamemakergm] has joined #mcdevs 19:46 < Darker> Am I the only one who can't reach http://wiki.vg? 19:48 <+ammar2> nope, it seems to be down 19:48 <+ammar2> kev009: poke 19:59 < edk> why do we never discuss alternative wiki options until it goes down? 20:00 < Darker> Is it backpued soewhere btw? 20:00 < edk> google cache 20:00 < Darker> yeah, besides that 20:00 < edk> don't think so 20:00 < Darker> google cached version is unreadable - all tables broken 20:01 < Darker> I'm now glad I at least downloaded the protocol docs 20:01 < edk> google caches the source too 20:02 < Darker> Did I access it wrongly? http://webcache.googleusercontent.com/search?q=cache:wiki.vg/Object_Data 20:02 < Darker> I see no CSS, just pure HTML 20:02 < edk> no, that's right 20:02 < edk> but you can still get the page source from the cache 20:02 < edk> which you could use to populate a new wiki if needed 20:03 < Darker> By the way, is there some discusion page to discuss wiki changes? 20:03 < edk> here, mostly 20:03 < Darker> I'm not that self confident to change anything, but I had a few ideas 20:07 < pbunny> i am still struggling to show players' head yaws right to players that comein 20:08 < Darker> I just achieved to do this 20:08 < pbunny> i send spawn named entity packet for player, then headlook packet for it 20:08 < pbunny> it doesn't work 20:08 < pbunny> however headlook packets work later 20:08 < Darker> Ah, from the server side... Than I can't help 20:08 < pbunny> i.e. when player turns a bit, his head fixes to surrounding players 20:08 < pbunny> until that he has like broken neck 20:10 -!- BizarreCake [~BizarreCa@46.121.251.157] has quit [Ping timeout: 256 seconds] 20:12 < Darker> And are you doing the float>byte conversion properly? 20:16 < pbunny> Darker: i send the headyaw packet on players' dump the same way as it is sent later (when players turn) 20:16 < pbunny> yaw is the same too 20:16 < pbunny> for some reason packet doesn't work if sent right after "spawn named entity" packet 20:18 < Darker> But players are sending it as float, you must convert it to byte 20:18 < Darker> This is where it could easily go wrong 20:19 < pbunny> when players sent them and i resent them to other players, it works 20:19 -!- Calinou [~Calinou@unaffiliated/calinou] has quit [Remote host closed the connection] 20:19 < pbunny> it doesn't work if i.e. one player was standing still (no turning) when other connected 20:20 < pbunny> other player then sees first one with broken neck 20:20 < pbunny> when first one turns, it fixes for second one 20:21 < Darker> Well, if you only update rotation when a player rotates, its kinda only thing that can happen 20:21 < Darker> You should have the rotation saved and send it even to newly connected players 20:21 < pbunny> i do that. 20:22 < pbunny> i send it right after i sent "spawn named entity" packet which spawns the player 20:22 < Darker> You can include rotation in 0x14, you know that? 20:22 < pbunny> i use the same routing, same packet, same yaw 20:22 < pbunny> Darker: but not head rotation 20:22 < pbunny> body is rotated, but head is looking to same direction 20:23 < pbunny> the same routine * 20:24 < Darker> Hey guys this is veird 20:24 < Darker> I just tryed to sniff for arrow spawn 20:24 < Darker> and it seems to have ID 60 (decimal) 20:24 < Darker> when http://www.minecraftwiki.net/wiki/Data_values states its ID 10 decimal 20:36 < Darker> Hello, I've a bit theoretical question... 20:37 < Darker> My bot is supposed to dodge flying arrows 20:40 < pbunny> you can't move fast enough iirc 20:41 < Darker> According to my test, you can jump one block in a flash 20:41 < pbunny> you should focus on neural networks, bot with true AI will learn to predict his opponents 20:41 < Darker> :D 20:41 < pbunny> even you 20:41 < Darker> First, I will make it at least strictly mathematic 20:42 < pbunny> i am going to use neural networks for AI of major mob leaders 20:49 < Not-001> [Craft.Net] SirCmpwn pushed 1 commit to master [+0/-0/±1] http://git.io/rNHqbg 20:49 < Not-001> [Craft.Net] SirCmpwn 6932fd6 - Update README.md 20:49 -!- roblabla [~pi@host81-157-233-15.range81-157.btcentralplus.com] has quit [Read error: Operation timed out] 20:59 -!- conehead [~conehead@unaffiliated/conehead] has quit [Quit: Textual IRC Client: www.textualapp.com] 21:03 -!- Calinou [~Calinou@unaffiliated/calinou] has joined #mcdevs 21:05 -!- roblabla [~pi@host86-148-181-77.range86-148.btcentralplus.com] has joined #mcdevs 21:18 -!- Prf_Jakob [~jakob@c-3b27e155.1214-1-64736c20.cust.bredbandsbolaget.se] has quit [Ping timeout: 246 seconds] 21:19 -!- Prf_Jakob [~jakob@c-3b27e155.1214-1-64736c20.cust.bredbandsbolaget.se] has joined #mcdevs 21:19 -!- mode/#mcdevs [+v Prf_Jakob] by ChanServ 21:27 -!- Cay [~OlofLarss@s83-177-171-150.cust.tele2.se] has quit [Read error: Connection reset by peer] 21:38 -!- conehead [~conehead@unaffiliated/conehead] has joined #mcdevs 21:47 -!- Not-001 [~notifico@ec2-50-19-116-14.compute-1.amazonaws.com] has quit [Remote host closed the connection] 21:51 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has quit [Remote host closed the connection] 22:22 -!- Paprikachu [~Paprikach@178.115.248.3.wireless.dyn.drei.com] has joined #mcdevs 22:32 -!- Stormx2 [~Stormx2@cpc18-sotn9-2-0-cust33.15-1.cable.virginmedia.com] has quit [Ping timeout: 245 seconds] 22:33 -!- Stormx2 [~Stormx2@cpc18-sotn9-2-0-cust33.15-1.cable.virginmedia.com] has joined #mcdevs 22:34 -!- roblabla [~pi@host86-148-181-77.range86-148.btcentralplus.com] has quit [Ping timeout: 264 seconds] 22:39 -!- ml__ [~ml@p5DC2E3B1.dip.t-dialin.net] has quit [Ping timeout: 272 seconds] 22:47 -!- roblabla [~pi@host86-144-153-43.range86-144.btcentralplus.com] has joined #mcdevs 22:53 -!- cathode [~cathode@64.122.193.170] has quit [Quit: Leaving] 22:55 -!- cathode [~cathode@64.122.193.170] has joined #mcdevs 22:59 -!- Xaardas [~tach@p5B252E88.dip.t-dialin.net] has quit [Quit: Tschuess und bis Bald] 23:00 -!- pdelvo [~pdelvo@mcdevs/trusted/pdelvo] has quit [Quit: See you later] 23:11 -!- pdelvo [~pdelvo@mcdevs/trusted/pdelvo] has joined #mcdevs 23:11 -!- mode/#mcdevs [+v pdelvo] by ChanServ 23:26 -!- GameMakerGm [~gamemaker@wikia/Gamemakergm] has quit [] 23:26 -!- mappum [~mappum@c-67-170-21-29.hsd1.wa.comcast.net] has joined #mcdevs 23:34 -!- conehead [~conehead@unaffiliated/conehead] has quit [Quit: Computer has gone to sleep.] 23:40 -!- SpaceManiac [~SpaceMani@r74-192-152-131.gtwncmta01.grtntx.tl.dh.suddenlink.net] has quit [Read error: Connection reset by peer] 23:41 -!- SpaceManiac [~SpaceMani@r74-192-152-131.gtwncmta01.grtntx.tl.dh.suddenlink.net] has joined #mcdevs 23:42 -!- mode/#mcdevs [+v SpaceManiac] by ChanServ --- Day changed sam. mars 23 2013 00:18 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has joined #mcdevs 00:30 -!- edlothiol [~edlothiol@ip-88-152-129-115.unitymediagroup.de] has quit [Ping timeout: 245 seconds] 00:30 -!- pdelvo [~pdelvo@mcdevs/trusted/pdelvo] has quit [Quit: See you later] 00:32 < erai> will resending a chunk force it to be updated in the client 00:35 -!- SpaceManiac [~SpaceMani@r74-192-152-131.gtwncmta01.grtntx.tl.dh.suddenlink.net] has quit [Read error: Connection reset by peer] 00:35 -!- pdelvo [~pdelvo@mcdevs/trusted/pdelvo] has joined #mcdevs 00:35 -!- mode/#mcdevs [+v pdelvo] by ChanServ 00:36 -!- SpaceManiac [~SpaceMani@r74-192-152-131.gtwncmta01.grtntx.tl.dh.suddenlink.net] has joined #mcdevs 00:36 -!- mode/#mcdevs [+v SpaceManiac] by ChanServ 00:43 -!- Calinou [~Calinou@unaffiliated/calinou] has quit [Remote host closed the connection] 00:47 -!- cathode [~cathode@64.122.193.170] has quit [Quit: Leaving] 00:49 -!- AlphaBlend [~AlphaBlen@pool-173-58-81-210.lsanca.fios.verizon.net] has quit [Read error: Connection reset by peer] 00:55 < umby25> erai: I would say it probably would. 00:56 -!- Zachoz|Away is now known as Zachoz 01:02 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has quit [Quit: exit(0);] 01:16 -!- Darker [5ab38e42@gateway/web/freenode/ip.90.179.142.66] has quit [Quit: Page closed] 01:19 -!- YukonAppleGeek [~YukonAppl@c-76-115-248-161.hsd1.or.comcast.net] has joined #mcdevs 01:34 -!- md_5 [md_5@mcdevs/trusted/md-5] has quit [Ping timeout: 255 seconds] 01:35 -!- md_5 [md_5@mcdevs/trusted/md-5] has joined #mcdevs 01:35 -!- mode/#mcdevs [+v md_5] by ChanServ 01:45 -!- dexter0 [~dexter0@c-24-23-138-192.hsd1.ca.comcast.net] has joined #mcdevs 01:47 -!- TomyLobo [~foo@91-64-168-142-dynip.superkabel.de] has quit [Quit: Standby mode...] 01:52 -!- kcj [~casey@unaffiliated/kcj] has joined #mcdevs 01:58 -!- GTRsdk [~gtrsdk@unaffiliated/gtrsdk] has joined #mcdevs 01:59 -!- GTRsdk [~gtrsdk@unaffiliated/gtrsdk] has left #mcdevs [] 02:16 < TkTech> edk: Because laziness, I assume. No one wants to convert all the content 02:18 < roblabla> TkTech: Wouldn't it be possible to just make a caching mirror ? 02:18 < roblabla> Actually, that's not a question 02:18 < roblabla> because it is possible 02:18 < roblabla> Just nobody thought about it :P 02:19 -!- SupaYoshi [SupaYoshi@ip4da5d319.direct-adsl.nl] has quit [Ping timeout: 264 seconds] 02:20 < TkTech> What do you mean? When it goes down for a few minutes we just use the google cache 02:21 < TkTech> (Less then perfect, but free [in both $$ and time]) 02:23 -!- SupaYoshi [SupaYoshi@ip4da5d319.direct-adsl.nl] has joined #mcdevs 02:49 -!- SupaYoshi [SupaYoshi@ip4da5d319.direct-adsl.nl] has quit [] 03:16 -!- Gregor [codu@codu.org] has quit [Ping timeout: 256 seconds] 03:37 -!- Stormx2 [~Stormx2@cpc18-sotn9-2-0-cust33.15-1.cable.virginmedia.com] has quit [Ping timeout: 258 seconds] 03:38 -!- Scootabyte [~Scootabyt@crown-7-41.resnet.ucsc.edu] has quit [Quit: Leaving] 04:03 -!- conehead [~conehead@unaffiliated/conehead] has joined #mcdevs 04:18 -!- md_5 [md_5@mcdevs/trusted/md-5] has quit [Quit: ZNC - http://znc.in] 04:33 -!- GameMakerGm [~gamemaker@wikia/Gamemakergm] has joined #mcdevs 04:36 -!- md_5- [md_5@mcdevs/trusted/md-5] has joined #mcdevs 04:36 -!- mode/#mcdevs [+v md_5-] by ChanServ 04:37 -!- md_5- is now known as md_5 05:23 -!- kipa00 [kipa00@116.123.186.14] has joined #mcdevs 05:24 -!- kipa00 [kipa00@116.123.186.14] has quit [Client Quit] 05:26 -!- Flemmard`` [~flemmard@78.210.238.139] has joined #mcdevs 05:30 -!- Flemmard [~flemmard@unaffiliated/flemmard] has quit [Ping timeout: 264 seconds] 05:35 < SinZ> did anything change in 1.5.1? 05:35 < SinZ> b.wiki.vg doesn't want to talk about it 06:49 -!- conehead [~conehead@unaffiliated/conehead] has quit [Quit: Computer has gone to sleep.] 06:55 -!- dimaa [~dimaa@c-50-131-97-0.hsd1.ca.comcast.net] has joined #mcdevs 06:57 -!- dimaa [~dimaa@c-50-131-97-0.hsd1.ca.comcast.net] has quit [Client Quit] 07:12 -!- AlphaBlend [~AlphaBlen@pool-173-58-81-210.lsanca.fios.verizon.net] has joined #mcdevs 07:13 -!- dimaa [~dimaa@c-50-131-97-0.hsd1.ca.comcast.net] has joined #mcdevs 07:33 -!- GameMakerGm [~gamemaker@wikia/Gamemakergm] has quit [] 07:38 -!- Amaranth [~travis@ubuntu/member/Amaranth] has quit [Read error: Connection reset by peer] 08:20 -!- Cay [~OlofLarss@s83-177-171-150.cust.tele2.se] has joined #mcdevs 08:22 -!- dimaa [~dimaa@c-50-131-97-0.hsd1.ca.comcast.net] has quit [Quit: Leaving] 09:19 -!- YukonAppleGeek [~YukonAppl@c-76-115-248-161.hsd1.or.comcast.net] has quit [Read error: No route to host] 09:19 -!- Scootabyte [~Scootabyt@crown-7-41.resnet.ucsc.edu] has joined #mcdevs 09:19 -!- mode/#mcdevs [+v Scootabyte] by ChanServ 09:22 -!- YukonAppleGeek [~YukonAppl@c-76-115-248-161.hsd1.or.comcast.net] has joined #mcdevs 09:39 -!- mappum [~mappum@c-67-170-21-29.hsd1.wa.comcast.net] has quit [Ping timeout: 248 seconds] 09:42 -!- kcj [~casey@unaffiliated/kcj] has quit [Ping timeout: 252 seconds] 10:08 -!- Xaardas [~tach@p5B251A25.dip.t-dialin.net] has joined #mcdevs 10:25 -!- Paprikac_ [~Paprikach@178.115.248.27.wireless.dyn.drei.com] has joined #mcdevs