IRC log for #wowace on 20120908

00:07.12TalrynI guess if you name a frame when you call CreateFrame, there is no way to later rename it?
00:07.55End_why do you want to rename it?
00:08.19TalrynBecause the name is based on input from the user and I want to allow the user to rename it.
00:11.07*** join/#wowace Stan (~Stan@p5795C95E.dip.t-dialin.net)
00:11.10Stan:E
00:42.18stencilEnd, are you there? I badly need a sanity check. Just had a moment of "did it always work like that and if so how much crack was I on back then?"
00:43.05End_did what work?
00:43.13End_(yes I am here)
00:44.18stencilokay - so I just set the filters on the pet journal so that it didn't show collected, only the non collected.  When I called GetNumPets it still returned the correct value for the number of pets I own
00:44.37stencilI had thought that the numOwned was the number owned within the filtered results ...
00:44.42End_nah
00:44.47End_only total changes I'm pretty sure
00:44.59End_I'm pretty sure numOwned stayed the same
00:45.07End_well
00:45.12stencilwhich is why repsonding to LIST_UPDATE looked to be such an issue
00:45.12End_mostly sure
00:46.03stencilbecause to determine if the number of owned changed I thought you had to reset the filters so that you could be sure you were getting the correct num owned (in case they were filtering to favorites or something) and then that would spawn additional list updates
00:47.17End_I've always unregistered, reset filters, and then got the result from GetNumPets() + iterated through all pets
00:47.24End_so I'm not completely certain
00:47.43stencilbut if you can just determine whether the total count of owned has changed regardless of filter state then its not quite as bad an issue cause you can ignore any update lists if the numOwned hasn't changed without touching the filters
00:48.15End_nods.
00:48.39stencilyeah, I've been doing the reset filters thing too the whole time ... which means I either made a whole mess of work for myself for no reason or the behavior did change ...
00:48.52stencilhence, sanity check heh
00:50.25End_I'm trying to be general purpose, so I kinda shied away from using those counts, but that might simplify things quite a bit
00:51.20End_hm
00:52.04*** join/#wowace farmbuyer (~farmbuyer@cpe-24-166-211-194.woh.res.rr.com)
00:52.20End_maybe numOwned did change behavior, because I very definitely considered comparing against it at one point
00:52.30*** part/#wowace farmbuyer (~farmbuyer@cpe-24-166-211-194.woh.res.rr.com)
00:54.00End_okay, I don't even know anymore, let's just both be crazy people
00:55.25End_numOwned is only used in the ui for the owned pets indicator at the top, so it makes sense for it to not be affected by filters
00:56.01stencilyes. but that doesn't mean it didn't used to work differently heh
00:56.13End_yeah I dunno
00:56.34End_I kinda wish I kept better notes
01:01.23End_hm that removed a bit of code
01:02.24stencilI had posted something on the blizzard forums about the potential for LIST_UPDATE problems when there were multiple addons and how they really should add a PET_JOURNAL_PET_ADDED event.  Someone followed up in support about the problem and suggested as another way they could solve it adding an unfiltered param to GetPetInfoByIndex and GetNumPets ... they wouldn't have to add an unfilitered flag to GetNumPets if numOwned had always been u
01:02.42End_well
01:02.47End_I like to know about species too
01:03.12End_and unfiltered, total just owned + species you don't know about
01:03.48stencilyeah, but the key is knowing whether you can ignore a list update or not
01:04.08End_true, but an unfiltered flag would need to be applied in both places
01:04.16stencil(so really, he could have limited his suggestion in my opinion to GetNumFlags)
01:04.33End_species won't change, but when scanning I want unfiltered in both places
01:06.19End_well, it doesn't break
01:06.52End_except I don't know when I went from 222 pets to 227, but I'll assume I logged onto an alt or something
01:07.11End_now to test on the beta with pet battles
01:07.12stencilheh
01:07.17End_and cages
01:07.42stencilyeah-  did you see my follow up post in the forums?
01:07.46End_yeah
01:08.06End_I was considering how to respond to it, but this numOwned business might make my original response irrelevant
01:08.21End_(ie if we can just check to see if it changed)
01:08.51stencilyeah, it makes both of my posts pretty much irrelevant as well
01:09.01End_huh odd
01:09.11End_I got a whole bunch of PJLU when I logged into the beta
01:09.20stencilPJLU?
01:09.20End_oops
01:09.26End_PET_JOURNAL_LIST_UPDATED
01:09.29End_our old friend ;-p
01:10.26End_oh
01:10.32End_I forgot to copy over the new version
01:10.40End_and I'm using a really old version
01:15.32End_this most recent build was yesterday?
01:16.04stencilI think so, there was a rolling restart thingy scheduled for this morning IIRC so they may have slipped in a change then
01:18.39stencilare you seeing on the beta that the count of owned is one more than it should be as well?
01:18.49End_I wasn't even looking at that yet :<
01:19.11End_apparently I completely fail at putting the right versions in my AddOns directory
01:19.12stencilwell, just wanted to remind you of that in case you would get errors related to it
01:19.32End_shouldn't affect me, but I'll see if it is right or now
01:19.37End_s/now/not/
01:20.11End_ok much better
01:21.02End_I get the same number as the GetNumPets()
01:21.29stencilerr, how are you generating that number?
01:21.39End_load from 1 to total
01:21.47End_if owned put it in the owned list
01:21.55End_(isOwned, whatever)
01:22.02End_I also catch all species
01:22.12stencilah, so you are iterating over the not collected as well?
01:22.15End_yes
01:22.26stencilI do not
01:22.41End_my addon doesn't care, but the library assumes someone will want that info
01:22.51stencilbut ... it would seem odd for there to be a mount filtered by collected/notcollected that is counted in the total number of owned
01:23.10stenciland doesn't display properly in the PetJournal itself
01:23.16stencilhow many do you own?
01:23.28End_200 on beta
01:23.39End_total is 507
01:23.48stencilbeen busy haven't you :)
01:24.00End_many are duplicates
01:24.14stencilor at least, when I had my toon copied over to the beta server, it didn't keep any of my pets
01:24.16End_being I've copied the same character over twice :P
01:24.22End_ah
01:24.34End_actually the first copy didn't I guess
01:24.34stencilall the ones I have I bought or trapped
01:24.38End_I copied again and the second copy worked
01:25.08End_now to battle all the pets and also release and cage them too
01:26.44End_actually, first I should make it not tell me about COMPANION_UPDATED "MOUNT" in my event debugger :<
01:27.18stencilCOMPANION_UDPATE is pretty much all around useless
01:27.24End_mostly
01:27.33End_I use it for one strange situation
01:27.39stencildoesn't it fire anytime someone wanders into your range with a pet or mount or something?
01:27.49End_the mount event does
01:28.27End_critter fires when you swap pets (my addon cares about that part) and then it also fires useful on very rare occasions when logging in
01:28.57End_like...PET_JOURNAL_LIST_UPDATE fires...but you don't have completely pet information...and then COMPANION_UPDATE "CRITTER" fires, and now it is up to date
01:29.03stencilmight be better to hook SummonPetByID instead to catch pet swaps
01:29.23End_I want to catch losing your pet due to whatever
01:29.41End_but that's not in the library
01:30.58stencilwell, as far as I can tell dismissal is through another call to SummonPetByID, but if you need to catch things like pets despawning for range or something then ok
01:31.05End_yup
01:31.52End_huh, PET_JOURNAL_PET_DELETED is firing twice?
01:32.17End_well whatever
01:32.17stencilyes
01:32.22End_this seems to work
01:33.06stenciland yeah, I sort of just check on the second whether I have an entry for that pid in my data and if not just ignore it if the numOwned count hasn't changed
01:35.20stencilI've sort of foolishly optimized my code on deletion to not rebuild the list if I can just prune out the one pid (but if it was the only example of its species then I rebuild since certain indexes I keep are now invalid and its easier to rebuild than bother shifting stuff)
01:36.55End_welol
01:36.56End_well
01:37.00End_it looks like this strategy works
01:38.09stencilso, I just threw put together a little code in a wowlua folder to iterate all pets and count numOwned and I'm still getting a diff of 1
01:38.54stencilall the toons are same faction on beta ... but still I should probably roll through them all to see if for some reason one has access to an extra pet
01:42.47End_oh could be
01:42.56End_but
01:43.05End_all pets should show up regardless of faction
01:43.30End_I have the moonkin pet, and both horde and alliance version show up, I just can summon the other faction's version
01:43.48End_s/can /can't /
01:44.28stencilyeah, I saw the unsummonable issue with horde vs alliance balloons
01:45.11stencilbut based on the toons I have on the beta and the fact that the only pets I have are ones I bought or trapped I shouldn't see that
01:45.46stencilof course, maybe the issue is related in some way to the fact that I don't have the pets the toon I transfered to beta should have
01:46.17End_in my experience they just didn't get merged
01:46.26End_but I dunno
01:50.34stencilyeah, hmmm. I count 33 pets, GetNumPets tells me 34.  GetNumCompanions("CRITTER") returns 136 ...
01:51.00stencilcould be some result of failed merge ... don't know
01:52.13End_yeah that definitely shows that it didn't merge
01:52.25End_but dunno why the count would be off
01:52.52stenciland off by only 1 since 136 is >> than 34
01:53.30quiescenso.o
01:54.41Torhalsavagely stabs quiescens with Ackis.
01:54.46quiescensdies.
01:54.51pompywhy torhal
01:55.08quiescens):
01:55.14TorhalBecause you're too unreliable, pompy. You might have skidded off of his liver.
01:59.14*** join/#wowace ringse (~gr@108-237-102-52.lightspeed.frsnca.sbcglobal.net)
02:25.28mckenziemcso mean quiescens
02:25.34mckenziemc~lart quiescens
02:25.34purlthrows quiescens's poor little doggy off a cliff
02:25.39mckenziemco.o
02:25.59grokse~lart mckenziemc
02:25.59purlslaps mckenziemc upside and over the head with one freakishly huge killer whale named hugh
02:26.11mckenziemc~whaleslap grokse
02:26.11purlACTION beats grokse upside and over the head with a freakishly huge killer whale named Hugh
02:38.43*** kick/#wowace [mckenziemc!~torhal@c-71-207-224-241.hsd1.al.comcast.net] by Torhal (Dude, seriously. I'm not fucking playing right now.)
02:46.53*** join/#wowace mckenziemc (~Mark@adsl-67-121-230-71.dsl.chic01.pacbell.net)
02:50.15durcynfix your bot then
03:09.06*** join/#wowace arlen (~arlen@c-24-125-124-95.hsd1.va.comcast.net)
03:24.25mckenziemcdon't look at me like that quiescens
03:31.46*** join/#wowace Aens|Superiority (~a@24-212-233-165.cable.teksavvy.com)
03:41.46*** join/#wowace oscarucb (~oscarucb@cpe-75-180-21-9.columbus.res.rr.com)
03:43.59*** join/#wowace zefter (7c6ac370@gateway/web/freenode/ip.124.106.195.112)
03:53.14*** join/#wowace the-golem (~Miranda@c-24-10-17-129.hsd1.ca.comcast.net)
04:00.30durcynKaelten: gief repo :(
04:22.25*** join/#wowace Torhal|work (~torhal_wo@76.164.170.2)
04:22.25*** mode/#wowace [+o Torhal|work] by ChanServ
04:26.18*** join/#wowace Yssaril (~Yssaril@99-57-32-25.lightspeed.cicril.sbcglobal.net)
04:32.50*** join/#wowace arkanes (~arkanes@python/site-packages/arkanes)
04:39.01nevcairielwhat, repo has been broken for a day now and no-one bothered to simply start it again?
04:41.43znfnevcairiel, did you do stuff on CCCP?
04:42.23nevcairieli dont involve myself in those weird codec packs, i just write codecs, what packs use them is not in my control =p
04:42.35znfwhat codec did you write? :D
04:43.05znfwas just looking around and noticed "Thanks to Nevcairiel we now have much better ISO Media Container"
04:43.49nevcairielthey switched to my stuff for some things, including the mp4 demuxer i guess
04:44.03nevcairieli dont usually pay attention to that stuff
04:44.24znfI was just trying to find info on when/why did ffdshow remove a lot of their encoders
04:44.44nevcairielbecause they were broken and unmaintained
04:48.06znfI'll never get the hype of 10bit stuff...
04:48.46nevcairielits just for better compression
04:48.51nevcairielbut only weird anime people use it
04:49.47nevcairielyou can get 10-20% better compression from the same source when you do it in 10bit
04:49.50znfAh, so it's not actually better video quality
04:50.19nevcairielwell, better compression is the same as better quality, it just depends how you tweak the parameters
04:50.35nevcairielif you have a fixed target size, better compression allows you to put more data into that file
04:50.40znfyeah, got that
04:50.43nevcairielif you just want smaller, then the quality stays the same
04:50.56znfbut if you're not limited by size, quality is not better with 10bit
04:51.13nevcairielnot if you use a 8-bit source
04:51.31nevcairiel(which like 99.9% of content is)
04:51.32znfare there 10 bit sources?
04:51.40znfother than weird anime :P
04:52.01nevcairielsome professional cameras produce 10bit, but nothing in the consumer area really
04:52.24znfguessing that blu-ray content is all 8bit
04:52.29nevcairielyesa
04:52.31nevcairiel-a
04:53.50znfso people are just tripping balls if they claim better quality on 10bit stuff, basically
04:54.24nevcairielthere might be some corner cases where its slightly better
04:54.39nevcairielbut usually, its really done for compression, not quality
04:55.28znfalso, wtf is LAV?
04:55.42nevcairielmy codec
04:55.46znfrelated to libav in any way?
04:56.14nevcairielnot directly, i had the name before libav split from ffmpeg
04:56.49znflibav split from ffmpeg?! o.o
04:56.58znfI've been living under a rock, I guess
04:57.12nevcairielthere was some political drama, and some developers forked into libav
04:57.36znfI haven't bothered with "3rd party" video codecs ever since I started using XBMC exclusively
04:59.09znfnevcairiel, can I use LAV to encode, like ffdshow was able to do?
04:59.20nevcairielno, i only do decoders
05:00.01znfIs there any free H264 directshow encoder?
05:00.09znfor VFW, however it's called
05:00.20nevcairieli dunno, maybe h264vfw still works
05:00.25znfI can only find x264 which seems to only come in binary form
05:00.35nevcairielor x264vfw rather
05:00.45znfor, do people still use virtualdub for basic video processing?
05:01.20nevcairielno idea, i never really did much encoding
05:01.29nevcairieli would probably just use avisynth and x264 directly
05:01.34nevcairielno vfw or other stuff
05:01.34*** join/#wowace Corveroth (~Corv@ip72-220-225-128.sd.sd.cox.net)
05:01.50znfNever managed to understand avisynth scripts
05:02.05nevcairielanyway, x264vfw seems to still be alive
05:02.42znfNow if they could make virtualdub to use modern containers...
05:03.33znfSeems that my best solution to simple encoding is still VLC :-/
05:03.36znfThanks for the info
05:04.16nevcairielthere are plenty of tools that wrap the encoders and muxers, if you just want some simple tool, like HandBrake
05:05.41znfthat looks interesting
05:08.08znfthat's almost what I want, nice
05:08.59znfI way to "cut" videos would have been nice (like you can set in/out points in VirtualDub), but this will have to do
05:09.32*** join/#wowace Elmoe (~elmoe@c-67-185-162-133.hsd1.wa.comcast.net)
05:10.10durcynyou can do cuts decently in gpac
05:10.50znfmumbles something about open source projects not having screenshots
05:12.23durcynit's CLI =P
05:12.40znfow :-/
05:12.56znfmeh, I have ffmpeg for that...
05:13.31durcynffmpeg's obonoxious for direct stream copy to a new container type, hence gpac/mp4box
05:13.53durcynsince for some reason people still use matroska containers
05:13.56znfyeah, I had issues trying to copy from an .mp4 to an .mkv, direct stream
05:14.18znfwell, "scene" releases still come in .mkv
05:14.54znfheck, I still use .mov for MJPEG content
05:16.02durcynisn't that the same as an ISO MPEG4 container these days, i thought apple donated quicktime containers to the MPEG-LA for it
05:16.30znfafaik the MP4 container is based on MOV
05:16.32nevcairielmov still has some differences
05:16.48znfmp4 is supposed to be some sort of "evolution" of mov from what I read
05:17.08znf(mkv seems to have originated from apple's mov concept, too)
05:17.17znfofcourse, I could totally be wrong :P
05:17.47nevcairielmkv is completely separate, although no-one knows where the developers got their inspiration
05:18.42durcynone can assume based on the results, from a visual inspection of their own prostates
05:19.02znfalways thought it was inspired from apple's MOV, mostly because of their multi-stream support
05:19.30znfbut I don't know much about containers
05:20.25znfdurcyn, people probably still use mkv because it's open standard / free
05:20.54durcynfanatical scene people use it specifically because it explicity supports multiple audio and subtitle streams
05:21.15durcyneven though you can stuff text into mp4 containers too
05:21.24znfmp4 supports the same, I guess?
05:21.36nevcairielmp4 is a horrible format internally, i much rather stick to mkv, eventhough its not perfect either
05:21.56znffrom what I read, mp4 can support lots of stuff, even stuff it wasn't made for?
05:22.12durcynnone of the playback devices i use deal with mkv containers, so i'm stuck transcoding
05:22.22durcynand even in software the overhead seems higher
05:22.28durcynwell, not "even"
05:22.42znfGet better playback devices? :P
05:22.54durcyni'll give 'em this though, it's not ogg
05:23.05znfMost devices I've seen (that are not made by "popular" manufacturers) seem to support MKV
05:23.24znfPhilips, Panasonic, Sony etc. don't seem to support MKVs
05:23.27durcynyou want to transcode 10 terabytes for me?
05:23.33znfMy LG tv does, though
05:23.36nevcairieloverhead on what, cpu usage or space?
05:23.42durcyncpu
05:23.57nevcairielif you can measure the cpu usage of the demuxer in contrast to the decoder running at the same time, you're crazy =P
05:24.12znfEven a monitor I bought once, a BenQ with USB port, had MKV support
05:24.16Elmoeyeah I'm not sure how demuxing would use any appreciable amount of cpu
05:24.23znfSo I'm wondering what device you have that doesn't support mkv :>
05:24.32Elmoeand you can repack your existing audio and video streams from a mp4 to mkv container or vice versa extremely quickly
05:24.40nevcairielIO bound, really
05:24.44ElmoeI do this all the time just to standardize my collection into mkv
05:25.09Elmoecould out mkvtoolnix if you haven't already has all the clis for muxing easily
05:25.15Elmoeer check out
05:25.36durcyni already use mkvtoolnix to demux mkvs so i can remux into mpeg4 containers, i'm your opposite =P
05:25.57znfdurcyn, but seriously, what device(s) are you using that don't support mkv?
05:26.11nevcairielprobably some apple device :P
05:26.11Elmoeyou find that process a pain in the ass though?  I just run a script and it doesn't take long at all (I reencode aac audio into ac3 at the same time too)
05:26.13durcynsurely you can guess
05:26.17durcynElmoe: it's cron'd
05:26.22znfreally? :(
05:26.23znfapple? :(
05:27.03znfgranted, I don't really care in what format my media comes in, but I'm glad the scene got rid of .avi
05:27.08Elmoerunning a wdtv live w/ wdlxtv firmware myself, best support for different formats I have found in a device but the horsepower of the wdtv is pretty laughable now
05:27.30znfI'm so tempted to buy a RPi
05:27.42durcyni tried just having a flat filesystem and an xbmc front end, but one box running with itunes as a server and appletvs as streaming clients is seamless
05:27.53durcynkill me if i ever actually buy content from them
05:27.58nevcairielDont buy the RPi if you want it as a media center, its severly limited in its capabilities there
05:28.02znfATV or ATV2?
05:28.08znfnevcairiel, how come?
05:28.08durcynsome of each
05:28.21durcynand for an STB, why not just get a roku?
05:28.38znfElmoe, isn't the UI horrible on all those media thingies?
05:28.40*** join/#wowace newbie (~sylvanaar@cpe-024-211-225-085.nc.res.rr.com)
05:28.46nevcairielznf: the CPU can get maxed out just by decoding HD audio streams, and the hardware video decoder is limited to H264, so even some old MPEG2 file wouldn't play
05:28.56nevcairielor a divx file, for hat matter
05:29.17znfAfter I've used XBMC for so long on lots of stuff, whenever I see those bad UIs on hardware media players I cringe
05:29.21Elmoeznf: nah not at all, supports titlesheets and all that jazz
05:29.45Elmoexbmc has a nice ui but a total lack of a good plugin infrastructure for things like youtube
05:29.46znfnevcairiel, I see, someone said that it handles mpeg4 asp just fine (I assumed both xvid and divx)
05:29.59znfhuh? what do you mean? I find the youtube plugin quite nice?
05:30.08nevcairielthe cpu may be fast enough for some low-res content, but i wouldnt bet on it really
05:30.26nevcairielwell at least you dont loose much money if you give it a shot
05:30.37Elmoeznf: maybe I just didn't play with it enough but it was basically just a title browser, no nice previews or anything
05:30.37groksei like the job boxee does indexing video files, but it does randomly struggle with certain h.264 streams
05:30.56groksegets through a 1080p file fine but then can't handle a 720p one
05:30.56znfmeh, it would cost me around 100€ with shipping and a case to get it here in romania
05:30.57grokserandom
05:31.12znfwasn't boxee discontinued for PCs?
05:31.28nevcairielboxee comes with hardware now, doesn it
05:31.34znfYeah
05:31.42znfThat little box was so much promising
05:31.50grokseya, it was like $140 on amazon
05:31.52znfThen they went to shit
05:32.02Elmoedurcyn: the roku sucks btw, you need to run a special channel roksbox to even stream custom media
05:32.27znfthe boxee is 236€ here
05:32.30znfscrew that
05:32.42Elmoeznf: for that price you could just build a foxxconn custom xmbc frontend
05:32.47znfElmoe, indeed
05:32.48grokse:(
05:32.55grokseyarly
05:33.04znfI really loved the 1st gen ATV
05:33.11znfWish I could have gotten my hands on a cheap one
05:33.29ElmoeI'd love a foxxconn just for the extra horsepower (my only real complaint about wdtv with the open firmware) but I can't rationalize the expense
05:33.32znfI even have a broadcomm crystal hd decoder around the house that I could "transplant" to :P
05:34.05znfbut apple hardware is retardadly expensive, even 3rd hand...
05:34.50durcynznf: hm, i actually have one i loaned out and could probably get back, but i'm not paying international shipping
05:35.03znfwhere you from? :P
05:35.11durcynthe states
05:35.20znfouch, that would cost me shitloads in custom fees, too
05:35.54znfnevermind the fear that it wouldn't ever arrive due to our shitty postal service
05:36.31znfdurcyn, how are you using them, btw?
05:36.41znfdid you replace the wifi with an hd decoder?
05:36.54znfor just doing SD content?
05:39.27*** join/#wowace Caleb| (~caleb@1F2EC3CF.dsl.pool.telekom.hu)
05:50.51groksewow, there are $99 ivy bridge chips?
05:51.32groksewould still have to find decent software for an htpc though :/
05:52.51znfXBMC
05:53.13nebula169wish they would integrate dsplayer into xbmc already
05:53.32znfdsplayer?
05:53.39znfsounds familiar
05:53.49nebula169it uses directshow to render video
05:53.51znfwhy would you want directshow?
05:53.57groksei tried xbmc like a year ago, but it didn't do a good job figuring out my collection
05:54.11nebula169because their builtin player chokes on some 1080p video
05:54.18znfI haven't found anything that XBMC couldn't handle
05:54.26nebula169my box is a bit older
05:54.29durcynznf: mostly just atv2s, they do 720p h264 already
05:54.33nebula169run perfect using directshow, though
05:55.00durcynznf: for the braodcom card, there's only one slot, so you better have ethernet
05:55.03znfI only tried to run that software codec using dsplayer, that did h264 with minimum cpu-usage
05:55.12znfdamn if I can remember it's name
05:56.22znfCoreAVC
05:57.26znfnebula169, but doesn't your box do DXVA?
05:57.53znfgrokse, it didn't index it properly?
05:58.30nebula169i use my old laptop, heat expansion has made the video card pretty touchy so i have to leave dvxa and cuda off ;[
05:59.25znfDo you use the wifi on it?
05:59.37znfalso, what platform? linux or windows?
05:59.39nebula169nah, gigabit port
05:59.42nebula169windows
06:00.05znfI found out that most laptops fail the dpc latency check when used over wifi :-/
06:00.14znfthus real-time decoding of 1080 sometime fails badly
06:00.16nevcairielwifi drivers are usually just bad
06:00.32znfterrible, in fact
06:00.37znfnebula169, http://www.thesycon.de/deu/latency_check.shtml
06:00.41znfrun this when you get the time
06:01.00Elmoeyeah I wired my whole house for gigabit, never trust wifi for something heavy duty like streaming 1080 3d
06:01.10nebula169will do
06:01.10groksesame as Elmoe
06:01.19znfAnd if you have problems with your laptop getting hot while doing CPU, just buy one of those broadcomm crystal hd decoders
06:01.23znfthey're like $12
06:01.46znfreplace the wifi card with it (as most laptops only have 1 mini-pci-e slots)
06:02.02znfI did that with my old laptop and it worked awesome
06:02.12nebula169i have another for a bluetooth card i took out
06:02.20nebula169so sounds like an amazing idea
06:02.21znf1080p support without breaking a sweat
06:02.33znfhttp://www.ebay.com/itm/Broadcom-BCM70012-BCM970012-BCM70010-Crystal-HD-Video-Decoder-AW-VD904-AZUREWAVE-/320951258506?_trksid=p5197.m1997&_trkparms=aid%3D222002%26algo%3DSIC.FIT%26ao%3D1%26asc%3D16%26meid%3D1893637529352720020%26pid%3D100016%26prg%3D1006%26rk%3D1%26
06:03.37znfEven my new laptop is doing horribly on 1080p content with wifi enabled
06:03.46Elmoeyou can easily run hdmi over cat6 as well, so if you have an old dekstop to use as a htpc it doesn't need to be in the same room as your tv
06:04.05groksehas to be cat6?
06:04.07znfit's not that the wifi can't handle the data, but it simply "hangs" the system due to the drivers being shitty :-/
06:04.15znfElmoe, don't you need an active converter?
06:04.31Elmoegrokse: I was wiring my whole house with cat6 so I just ran that for the hdmi, assume it would work just fine with cat5 just shorter distance
06:04.34nevcairielgrokse: 5e also works, just need gigiabit
06:04.39grokseah, kk
06:04.43Elmoeznf: yeah they are cheap thought (at least in the US)
06:04.45znfjust need to have all 8 wires full-copper
06:04.57nebula169i have everthing on the other side of the wall where the tv is and have a rack with all the components with an ir blaster run with the cords
06:05.07znfcheap UTP cable doesn't usually come full-copper
06:05.14groksei wired with cat5e.  just wish that i'd done two outlets per room instead of one
06:05.38nevcairielznf: cat5e are full copper, but with cheap UTP the lack of shielding will destroy the signal on anything > 30m or so
06:05.41znfthey have 4 wires copper and the other 4 (the ones that aren't used for 100mbit) being an alloy that is shit for anything
06:05.47Elmoegrokse: yeah I did 2 outlets per bedroom, then 4 in the office and 8 to the living room, better to run more while you are at it hah
06:05.49znfnevcairiel, I know
06:05.59znfI had a "small" scale ISP here :P
06:06.13groksethey charged my $50 per outlet when they built my house
06:06.17znfAbout ~2km of UTP cable from building to building
06:06.28groksein retrospect, another $250 isn't much
06:06.29grokse:/
06:06.42Elmoegrokse: yeah not in terms of building a house haha
06:06.43znf$50 for outlets sounds silly expensive tbh just for that
06:06.47nebula169its pretty easy to run your own wire
06:06.49Elmoegrokse: I just bought a place and wired it myself
06:06.58Elmoenebula169: yeah just takes time
06:07.01znfbut yeah, in comparision with the costs of building a house...
06:07.02nebula169yea
06:07.04groksei've wired up a few houses
06:07.16groksebut most of the outlets are on exterior walls
06:07.22nebula169ew
06:07.26groksei don't want to screw up the insulation
06:07.34znfElmoe, I usually dislike active converters, I have this irrational fear that they'll mess with my signal :P
06:07.51ElmoeI have a little 8U rack in the office closet for the patch panel, switch, etc. but for htpc I just use the hdmi output from my second gpu
06:08.05nevcairielznf: its a digital signal, it doesnt degrade :p
06:08.11znfnevcairiel, I know!
06:08.15Elmoebut I really just use htpc for video games and backup to my wdtv in case it barfs on a file
06:08.34znfI just use my main pc now :P
06:08.40groksewould have also been smart to ask them to be on interior walls, especially since they called me the day they were doing the wiring to find out EXACTLY where i wanted them
06:08.41grokse:/
06:08.42znfI retired my old Xbox a few years ago :D
06:08.57znfpoor thing handled SD content just fine :P
06:09.11Elmoeznf: I took a cable of the hdmi converter but they were cheap and have worked flawlessly thus far
06:09.16Elmoeer I took a gamble that is
06:10.06*** join/#wowace Megalon (Megalon@d86-32-5-7.cust.tele2.at)
06:10.18Elmoewhat I've been having trouble with is just the normal old hdmi keystones
06:10.26ElmoeI've tried 2 different keystones now and both are flaky as hell
06:10.33grokse:(
06:11.25groksegross, the cable just plugs into the back?
06:11.30znfkeystones?
06:11.36grokseno punchdown or anything?
06:11.42Elmoeznf: you know like for a keystone wall plate
06:12.03Elmoegrokse: yeah I've just been getting the ones you plug in, do they sell punch down types?
06:12.10Elmoethat would be better (although a bitch)
06:12.14groksethat's what i was looking for
06:12.39Elmoethe hdmi and usb keystones I've found are all just plug in type, which is kinda ghetto but you can use some electrical tape
06:12.46znfno idea what those are
06:12.50grokseretches
06:12.53Elmoeznf: yeah you do let me find a pic
06:13.10grokseyou know, the little things that snap into rectangular holes in a wall plate
06:13.11Elmoehttp://www.monoprice.com/products/product.asp?c_id=104&cp_id=10426&cs_id=1042609&p_id=6853&seq=1&format=2
06:13.46znfoh, ok
06:13.47znfI got it
06:21.17CorverothMiss chance... I know it's now 15% for a boss, is it just a linear 5%/level?
06:22.02durcynit's 12% for same level, 15% for +3
06:22.17znfhuh?
06:22.23znfit's 5% for same-level
06:24.06durcynhuh, where'd i hear 12
06:25.48znf12% for lvl87 (ie: dungeon bosses)
06:25.56znfso +2 levels
06:26.18CorverothThat's... not linear at all. Wat.
06:26.31Corverothgrumbles.
06:26.42znf5% for same level, 12% for +2 levels, 15% for +3 levels
06:26.44CorverothBlizz and their funny numbers. The rating scaling for crit at 90 was bad enough, now.
06:26.49grokseinstalls wow
06:27.12nevcairiellinear is boring, logarithmic or exponential scales is where its at!
06:27.16durcynfirst step being +4 and second two being +3 doesn't make sense
06:27.18CorverothAll the other ratings played nice! Plug 42.5 into the old formulas, you got the new ratios!
06:27.29znfdunno why do they even care about +1 levels
06:27.30CorverothBut Crit, nooooo. Crit's all "I'm gonna be 42.857bullshit"
06:27.42znfI mean, what exactly would you gear for +1 level? :-?
06:27.51CorverothWhy couldn't hte ratio have been 595? It would've been perfect! WHY 600?
06:27.59Corveroth... I'm done now.
06:28.03quiescensmoo
06:28.09nevcairiel600 is a much nicer number then 595
06:28.18durcynznf: well, my character sheet is showing 5.56% hit chance, .44% miss chance against 85
06:28.20CorverothBut. It. Doesn't. Match.
06:28.26grokseslaughters quiescens and has quiescens steaks for dinner
06:28.27durcynznf: so i think it's 6+3+3+3 ?
06:28.34znfHmmm
06:28.36znfyou draenai?
06:28.40durcyntauren
06:28.45znfWeird
06:28.51CorverothI like the 3%/level idea.
06:29.07znfmakes more sense, but I wonder why did they change that
06:29.12nevcairiel6% base and 3% per level makes some sense, i guess
06:29.13quiescensdies.
06:29.14znfand how does it make sense for it to be 6%
06:29.22znf(when previously it was 5%)
06:29.24CorverothMagic numbers.
06:29.49CorverothWait a tick.
06:29.57znfI mean, you start from 5% == same level, you reduce the overall hit% for +3 levels, but you increase the % for same level?
06:30.06CorverothNude, character sheet says 5/8/11/14.
06:30.12CorverothBut... but I though.
06:30.21CorverothWasn't it supposed to be 7.5+7.5 = 15%?
06:30.42durcynznf: http://i.imgur.com/Fnk34.png
06:30.51durcyni'm looking at spell hit, not sure about physical
06:31.08znfwhere's that .76% coming from?
06:31.20znfyou only have 4.76% hit rating on your gear
06:31.24CorverothAlright. Whatever. Magic numbers go in. Forget the rational.
06:31.29durcyni know!
06:31.40znferm, 0.8 not 0.76%
06:32.05durcynit's a feral druid, shouldn't be any weird spell hit passives
06:32.55znfogs on
06:34.11znfhttp://i.imgur.com/dvMj0.png
06:35.05znfMelee is different
06:35.24znfhttp://i.imgur.com/DKNuN.png
06:35.42znf(but melee also needs exp)
06:35.47durcynyes, it's exactly half for all physical
06:35.49End_help I'm losing my mind
06:36.00durcyni just want to know where that extra .8% came from
06:37.17oscarucbits from your racial expertise
06:37.23oscarucbconverted to hit
06:37.32znfwhat race are you?
06:38.02durcyni said tauren, it's an alt so i don't really pay attention to racials, derp
06:38.23znfoh, sorry,
06:38.34durcynmystery solved i guess
06:38.50znfsince when do tauren get expertise racial? >_<
06:38.59CorverothOh, frig. Racial expertise... that's the missing 1% in the hit numbers.
06:39.10CorverothOrc mage has 1% baseline expertise.
06:39.14znfOrcs, yes
06:39.20znfbut Taurens don't have exp
06:40.23grokseheh, angelic feather is fun
06:40.52znfmeh
06:41.00znfI took Phantasm
06:41.18quiescenswhy?
06:41.20groksei'm just running around putting feathers on the ground
06:41.31znfI always liked Phantasm as a talent :P
06:41.52znfquiescens, also, you have no idea what we're talking about
06:41.54znfso go moo
06:42.16quiescensmoo
06:42.17quiescens):
06:42.43durcynfeather's so much more fun than phantasm :|
06:44.12znf3 charges, boring
06:47.16oscarucbthat's actually pretty OP that expertise racials now give dps casters spell hit
06:47.21oscarucbwonder if that was intentional
06:47.54znfwell, EXP acts as hit
06:48.10oscarucbyea its just those racials never did anything for warlocks and mages before
06:48.12znfbut as of racial, sounds weird tbh :P
06:48.35CorverothMy concern... how do I detect if those are active?
06:48.42Corveroth'cause GetCombatRating ain't gonna cut it.
06:48.45oscarucbcheck the weapon type
06:48.48oscarucband the race
06:48.49znf@project my-little-companion
06:48.52znfo.o
06:48.53Corverothblugh
06:49.01znfwhere did repo go?
06:49.01CorverothAlso, blugh.
06:49.09oscarucbbut GetCombatRating is the wrong thing to call anyhow
06:49.51znfwell, shit
06:49.54znf9:49am
06:49.57znfI should go to sleep >_<
06:49.58oscarucbGetSpellMissChance(), GetRangedMissChance(), GetMeleeMissChance(), GetEnemyDodgeChance()
06:50.06oscarucb^ those include the racial, and everything else as well
06:51.14oscarucbor you can query the racial directly with GetSpellHitModifier()
06:52.06CorverothOh. Well then. That's quite convenient.
06:52.11CorverothThanks =)
06:52.33oscarucbstrangely the racial gives a human warlock expertise and SPELL hit, but NOT melee hit
06:52.38oscarucbthats just bizzare
06:52.53nevcairielwhat does a warlock need melee hit for
06:52.59znfEXP == Spirit == Spell Hit
06:53.03oscarucbthey dont, but it makes me think this is a bug
06:53.11znfIt's not a bug
06:53.20znfif you reforge stats to EXP on your toon, you get spell hit
06:53.48oscarucbmeh I'm just happy I get a free 1% spell hit for using a caster sword now
06:53.56znfinteresting :P
06:54.03znfbut that sounds OP
06:54.08CorverothI think the idea there was to make it so that melee with some spell damage (DKs, for example) automatically reach spell hit cap
06:54.15CorverothBy gearing expertise to the dodge cap
06:54.29oscarucbyea which is why its weird they also buffed casters as a side effect
06:54.32znfI think they fucked up and forgot that some racials give EXP
06:54.58CorverothYeah, just a quirky side effect. Not a ton of use, except trying to game racials.
06:55.13znfwell, 1% is a lot of rating...
06:55.15CorverothOr I guess reforging extra "hit" onto gear that already has it?
06:55.24oscarucb1% hit is alot - it may make or break my choice between two similar caster weapons
06:55.37znfI'm guessing they'll change it soon
06:55.41znfelse it's way too OP
06:55.46znfanyway, almost 10am I should go to sleep
06:55.47znf.o/
06:56.08oscarucbyea im off too, latez
07:07.57Dridztanyone has worked with LibDropdown-1.0 at all?
07:08.35Dridztmainly want to know if I can refresh submenus without closing the dropdown :P
07:24.48*** join/#wowace Julith (~julith@i59F7F6B5.versanet.de)
07:30.59*** join/#wowace the-golem_ (~Darrin@c-24-10-17-129.hsd1.ca.comcast.net)
08:07.43*** join/#wowace HB|Dodge (~Dodge@ip-88-152-20-62.unitymediagroup.de)
08:37.56durcyn[Ammo]: tag fishermansfriend when you have a minute?
08:38.40*** join/#wowace Kalroth (~Kalroth@d40aa5af.rev.stofanet.dk)
08:41.49*** join/#wowace silentium (jenova@dslb-088-066-019-191.pools.arcor-ip.net)
08:53.22*** join/#wowace Yoshimo (~Miranda@p5B04C5ED.dip0.t-ipconnect.de)
09:06.23*** part/#wowace stencil (~Stencil@c-24-19-48-139.hsd1.wa.comcast.net)
09:40.45*** join/#wowace mitchnull (~mitch@2E6B3AE7.catv.pool.telekom.hu)
10:43.55*** join/#wowace Slayman (~dejhap08@port-14202.pppoe.wtnet.de)
10:57.27*** join/#wowace Slayman1 (~dejhap08@port-23603.pppoe.wtnet.de)
11:17.54*** join/#wowace Funkeh` (~funk@5ada2661.bb.sky.com)
11:17.54*** join/#wowace Funkeh` (~funk@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
11:17.54*** mode/#wowace [+o Funkeh`] by ChanServ
11:45.53*** join/#wowace harl (harl@dslb-092-073-100-071.pools.arcor-ip.net)
12:06.05*** join/#wowace Archarodim (HydraIRC@lev92-4-88-164-134-95.fbx.proxad.net)
12:46.36Stanzillahellow friends
13:18.53*** join/#wowace Yoshimo (~Miranda@p5B04C5ED.dip0.t-ipconnect.de)
13:19.52*** join/#wowace WoWUI (~Valdarix@74-95-152-129-Atlanta.hfc.comcastbusiness.net)
13:21.40*** join/#wowace stolenlegacy (~stolenleg@unaffiliated/stolenlegacy)
13:22.22kagarosup Stanzilla
13:31.17Stanzillasitting in the garden, playing with my cat
13:31.40Stanzillait's caturday after all!
13:36.42*** join/#wowace bluspacecow (~bluspacec@60-234-165-167.bitstream.orcon.net.nz)
13:51.46Funkeh`Stanzilla, I don't have a cat :(
13:51.54StanzillaI have two!
14:17.58*** join/#wowace Tuller (~tuller@c-76-21-187-154.hsd1.va.comcast.net)
14:43.33kagaroanyone know why the sufwrapper frame stays visible on screen?
14:44.00*** join/#wowace Yoshimo (~Miranda@p5B04C5ED.dip0.t-ipconnect.de)
14:44.31nevcairielthe whatnow?
14:44.38*** join/#wowace gix (~gix@dslb-088-067-087-169.pools.arcor-ip.net)
14:44.52kagarothere is a box on my screen stack says SUFWrapperFrame
14:46.36kagaronvm found it
14:47.25bluspacecowit missed
14:47.27bluspacecowyou
14:47.31bluspacecowso was like
14:47.35bluspacecow"oh hai"
14:47.39kagaroits for pet battle frames which aren't on live
14:47.42quiescenso.o
14:47.45quiescensgo to sleep blu
14:47.56bluspacecow*sleeps on quiescens*
14:48.01quiescens):
14:48.04bluspacecow*drools in sleep*
14:48.13bluspacecow*sleeply bats quiescens hair*
14:48.18quiescensdies.
14:49.18*** join/#wowace isman (~drag@mna75-2-82-67-196-34.fbx.proxad.net)
15:00.22Stanzillakagaro: I once thought that thing is stealing my clicks
15:02.51quiescensgasp
15:02.54quiescenssteal them back
15:03.38kagarowell i can't get rid of it, so I'm just ignoring it
15:03.57Stanzillakagaro: is it "I fix a chatter bug today"- day today?
15:04.24kagaromaybe
15:04.53Stanzillacoolio
15:07.37kagaroany one in particular Stanzilla?
15:09.39Stanzillakagaro: this one is still the most annoying for me http://www.wowace.com/addons/chatter/tickets/226-copy-chat-highlighted-text-not-alligned/
15:09.43Stanzillaand I still blame icons in chat lines
15:25.42kagaroill take a look some time today stan I'm rebidding my ui for the most part today
15:31.34*** join/#wowace Corveroth (~Corv@ip72-220-225-128.sd.sd.cox.net)
15:31.39*** join/#wowace Dotted (Dotted@188.114.141.146)
15:42.00*** join/#wowace TradeMark (~trademark@c-24-22-242-118.hsd1.wa.comcast.net)
16:15.17*** join/#wowace SunTsu (miyamoto@unaffiliated/suntsu)
16:26.14*** join/#wowace ice (~irc@light.int.ping.fr)
16:26.39iceAckis, there?
16:26.51iceTorhal, there?
16:27.42iceJust a few issues with Collectinator's "db" I'd like to report.
16:28.30iceEnchanted Lantern: shows for me as a missing pet despite the fact I have it.
16:28.36bluspacecowsleep tiems
16:29.06iceFrigid Frostling: shows as missing pet as well despite the fact I have it.
16:29.42znfice, you're probably better making a ticket at this hour
16:29.50iceGuild Herald: shows as missing pet as well despite the fact I have it. This one could be due to the fact the pet is greyed in the new pets UI pane as it isn't a pet that can battle.
16:31.08iceSoul of Aspects: shows a misding pet as well despite the fact I have it. This one could be a bug on Blizzard's end, I have the pet but no matter what I do I can't summon it.
16:31.19ices/misding/missing
16:32.38iceSo yeah, at least 4 pets have issues; Enchanted Lantern, Frigid Frostling, Guild Herald and Soul of Aspects.
16:33.17iceOh and one mount has an issue.
16:33.28iceFrosty Flying Carpet.
16:34.02iceProbably because once learnt, the mount spell name is Magnificent Flying Carpet.
16:34.54iceOr could be a completly different mount.
16:35.28iceActually nevermind, the Frosty isn't the Magnificent.
16:35.35iceI'm just missing it it seems.
16:36.42*** join/#wowace Yivry (~Dave@53509B5E.cm-6-1c.dynamic.ziggo.nl)
16:50.28End_ice: ackis is rewriting it
16:51.04iceEnd_, I know.
16:51.10End_oh ok then
16:51.14iceJust reporting 4 fast bugs easy to fix.
17:07.13*** join/#wowace Tuller (~tuller@c-76-21-187-154.hsd1.va.comcast.net)
17:07.42pompyice, you can file a ticket with detailed understandable information!
17:29.02icepompy, I'm old school... IRC > all.
17:31.08pompycool story bro
17:38.22*** join/#wowace Dridzt (~Miranda@athedsl-202458.home.otenet.gr)
17:41.09ashemedaiwaaaaaaa
17:53.57ashemedailights quiescens on fire and tosses him in front of Torhal's door
18:02.29Megalonhey Torhal, nice porch flare you got there
18:02.32*** join/#wowace the-golem_ (~Darrin@c-24-10-17-129.hsd1.ca.comcast.net)
18:06.46ashemedaiWoops, forgot to ring the doorbell
18:10.19ashemedaioh awesome, first reward tier unlocked on the XCOM preorder on steam XD
18:15.26*** join/#wowace Dark_Elf (~Dark_Elf@h69-128-35-84.wdrnin.dsl.dynamic.tds.net)
18:21.05durcynStanzilla: every day is chatter bug day lately
18:21.15Stanzillayeah
18:21.49durcynand where the hell is Repo, ping Kaelten pingpingpingping ping
18:24.12Dark_Elfu mean chatter still works?
18:25.02pompydurcyn: iknorite
18:25.17durcynDark_Elf: mostly
18:25.49Dark_Elfi will test it today then lol
18:25.54durcyni don't think it's had a release tag in a while though
18:29.25pompyERROR #134 (0x85100086) Fatal condition!
18:29.25pompyFailed to read file from local.
18:29.27pompy><
18:31.41*** join/#wowace Repo (~repo@68.64.47.10)
18:31.43Repocollectinator: 03Ackis 072.0 * 1.1.1-43-g4648678 / (6 files in 2 directories): [+5 commits] (1 truncated)
18:31.44Repo4648678: Add a few entries to the database for testing.
18:31.44Repo58dfa12: Add the database files.
18:31.45Repo3f9cb74: Fix display string.
18:31.45Repof51f689: Fix some collection stuff.
18:32.10ashemedaiScary
18:32.45*** join/#wowace Elkano (~elkano@WoWUIDev/WoWAce/Elkano)
18:32.45*** mode/#wowace [+v Elkano] by ChanServ
18:34.04pompyok so why is my client crashing when trying to log into an alliance character
18:35.00Megalonstop playing alniance palydan!
18:37.45Repocollectinator: 03Ackis 072.0 * 1.1.1-44-g79dcc26 / (3 files in 2 directories): [+1 commit] Set up the db and the code so it should be scanning.  It's getting stuck on InitCollections though.
18:56.32Repoarl: 03pompachomp 07master * 2.4-41-gcad1cf8 Database/Recipes/Engineering.lua: [+1 commit] manually revert the recent changes to engineering db file
19:07.47Repowhats-today: 03dearna * r12 WhatsUpToday.lua: proper use of GetGossipAvailableQuests()
19:08.04znfclearly, alliance being bad
19:13.08*** join/#wowace Realfriend (~woonix@static-50-53-59-94.bvtn.or.frontiernet.net)
19:15.23Stanzillawoho repo is back
19:15.35*** join/#wowace mckenziemc (~Mark@adsl-67-121-230-71.dsl.chic01.pacbell.net)
19:15.39*** join/#wowace MysticalOS (~Myst@h142.41.90.75.dynamic.ip.windstream.net)
19:17.35znfhi Repo
19:17.37znfwhat's up?
19:17.46znf@project my-little-companion
19:17.47Repoznf: [WoW] My Little Companion (Updated Sep 04, 2012 at 12:18 UTC) - http://www.curseforge.com/addons/my-little-companion/
19:20.07Dark_Elfis that like my little pony lol
19:20.44znfguess so
19:21.05Dark_Elflol
19:28.02ashemedaibattle bronies
19:29.37Dark_Elfsaw a battle pet trainer yesterday while playing, clicked on it but it dont do anything, guess it not totally active yet
19:33.04*** join/#wowace MiRai (~MiRai@unaffiliated/mirai)
19:34.26nevcairielbattle pets come with mop
19:34.40silentiumyou'll be able to learn the Battle Pet Training once MoP goes live, you won't even need the expansion on your account to do that
19:35.03znfhuh?
19:35.06znfI'm pretty sure you will need the expansion
19:35.24silentiumthey explicitly stated that you wont need it
19:35.34znfWhere?
19:35.39silentiumbut who knows, maybe they've already changed that again
19:35.53znfI'm 99.99% sure you will need MoP for pet battles
19:35.59znfyou won't need it to play a panda
19:36.36Kemayohttp://wow.joystiq.com/2012/07/24/mists-of-pandaria-not-required-for-pet-battles/
19:36.38mckenziemchumans cannot quantify certainty down to the level of hundred millionths
19:38.22Dark_Elfguess that link answered that
19:38.38silentiumthanks Kemayo, I couldnt find my source that fast any more
19:43.46znfI have my doubts
19:44.34znfFuckin' rogues are unkillable in pvp...
19:44.48Dark_Elfwhat?
19:45.04znfI've been trying to kill this guy for ages
19:45.08znfand he keeps escaping with like 2 hp
19:45.19Dark_Elfi seldom see them in wg any more
19:45.33Dark_Elfthat vanish spell is nicer now
19:46.12Dark_Elfi usually play hunter and dont have problem with rogues , cause i mark their asses
19:46.13znfthat vanish spell is complete bullshit
19:46.29znfhe's about to die then poof, vanish, blind and goes the fuck away
19:47.06Dark_Elfi just wish they would of kept all the old spells we learn, cause i had shadowstep and now i gotta wait til later to get it again
19:48.28Dark_Elfi seen a rogue the other day use sap, and i was in combat, i thought sap only worked when not in combat guess blizzard needs to clarify that
19:50.56Dark_Elfanother thing that annoys me is these priests that use fear, then u end up running all over the place then another character attacks u and fear is still applied which i think is bs
19:51.26Dark_Elfand oh dont get me started on the paladin, omg the stun is rediculus
19:59.29znfI'm annoyed by the fact that I can't fear warrriors that whirlwind
19:59.34znfwhat bullshit is that?
19:59.46mckenziemcbladestorm?
19:59.50znfwhatever it's called
20:04.20Repoelkguild: 03elkano * r10 ElkGuild.lua: added column sorting (not saved, yet)
20:04.21Repoadded ArmoryChat support
20:11.04durcynElkano: more ebb, less everything else! =P
20:11.15Elkano:P
20:11.56Stanzillaznf: just disarm them, noob
20:13.59*** join/#wowace breser (~breser@fornix.brain.org)
20:14.24znfStanzilla, IMMUNE
20:14.25znf...
20:14.28znfthat's what I'm trying to say
20:14.36znfI can't use PH on them
20:14.37mckenziemcnot to disarm
20:14.42mckenziemco.o
20:14.51znfPH is a disarm & fear
20:14.59Stanzillaznf: you can
20:15.03mckenziemcyeah, but i would think the disarm part would work
20:15.13znfseems they're immune to both :-/
20:15.14Stanzillawhat you can't is disarm while die by the sword is running
20:15.17znfwhile spinning around
20:15.19Stanzillathat are swirling blades around the warrior
20:15.23znfzzz
20:15.29znfwhy do I even bother pvping...
20:15.54znfat least I'm having fun with Spectral guise
20:17.16Stanzillanooblet
20:18.51znfI was never into pvp
20:20.48Realfriendyou pvp for a little while and have fun, then you take a break and forget about the frustration so you can go back
20:21.17znfwtf, I just 2-shot a druid
20:21.33znfDP with 3 orbs and MB and poof dead
20:24.35Dark_Elfmust of been a noob druid
20:26.12Repofocus-interrupt-sounds: 03Talyrius * r72 FocusInterruptSounds.lua: FocusInterruptSounds:
20:26.12Repo- A leaked global is tainting the Glyphs frame
20:27.05Stanzilladurcyn: is chatter still tainting for you?
20:27.20durcynno, thought i committed that fix
20:27.35Stanzillawell you did but it's still getting blamed here
20:27.53durcynGlyphUI?
20:27.59durcynit's probably a hook somewhere
20:28.16Stanzillayeah
20:28.20durcynor chatter's your first alphabetical ace3 addon
20:28.27durcynrunning embedded?
20:28.31Stanzillanope
20:28.40znfok, SWD is pissing me off
20:28.50znfit's activating way too late
20:29.01durcynanything meaningful in taintlog?
20:30.16Stanzillanah, got it turned off atm, will test later
20:35.09znf*ponders in buying pvp gear and gem full pvp power*
20:35.35durcynwaste of money for two weeks of use
20:35.46znfI have 22k justice points...
20:39.01*** join/#wowace Cairenn (~Owner@MMOI/Administratrix/Cairenn)
20:39.08*** mode/#wowace [+o Cairenn] by ChanServ
20:40.28ashemedaiHeh, they actually named the auctioneers in MoP H.A.R.V.E.Y. and D.E.N.T.
20:45.21Dark_Elfhttp://s903.photobucket.com/albums/ac231/DarkElf71/?action=view&current=WoW163805cut.jpg - wonder if this would be worth uploading?
20:48.26durcynnope
20:48.35Dark_Elfok
20:49.28Repohead-count-2: 03kagaro 07master * 1.10-2-g05bcc76 / (5 files in 2 directories): [+1 commit] added EJ data pull, this is dry coded
20:50.12znf-1000 internet points for you for using slowbucket.com
20:50.57Dark_Elfme sorry, it slow
20:51.14Repovendorreward: 03mecdemort * r11 / (2 files in 1 directory): Bump toc for 5.0.4
21:00.59Repotimetodie: 03mecdemort * r97 TimeToDie.toc: Bump toc to 5.0.3
21:03.44Repoarcanecombopoints: 03mecdemort * r16 ArcaneComboPoints.toc: Bump toc to 5.0.3
21:05.59Repoarcanecombopoints: 03mecdemort 04v1.6 * r17 : Tagging as v1.6
21:06.24Repotimetodie: 03mecdemort 04v1.5 * r98 : Tagging as v1.5
21:06.50Repovendorreward: 03mecdemort 04v1.4 * r12 : Tagging as v1.4
21:07.50znf@project vendorreward
21:07.51Repoznf: [WoW] VendorReward (Updated Sep 08, 2012 at 21:07 UTC) - http://www.wowace.com/addons/vendorreward/
21:08.16znfnow that's a useless addon now
21:10.05RealfriendI can see it being useful for someone who is doing LoreMaster and is going to vendor everything
21:11.57Dark_Elfsounds good, but i dont like autoturn ins
21:12.27RealfriendI remember an addon, maybe Scrap, that put a gold icon on the quest item that had the highest vendor value. That seems like a better solution to me.
21:12.46Dark_Elfyeah there is addons that do that
21:13.39Dark_Elftekkub wrote vendorbait that does similar
21:14.19znfam I the only one who manually selected those? :(
21:15.03Dark_Elfi usually look see if there is item i can use, and if not that highlight tells me which one brings best money
21:16.07Dark_Elfperhaps another idea for addon would be to highlight an item that is better with a color then if not highlight an item with best sell price
21:17.21Dark_Elfalthough i think addon called pawn does that though so, guess all ideas have been done lol
21:17.45Repohead-count-2: 03kagaro 07master * 1.10-3-g2b18b1f Constants.lua: [+1 commit] added debug line
21:18.30durcynMonomyth / OneChoice seem like better options for quest reward selection
21:21.03*** join/#wowace Yssaril (~Yssaril@99-57-32-25.lightspeed.cicril.sbcglobal.net)
21:24.50Dark_Elfok durcyn sold me on onechoice, skips monomyth though
21:28.30*** join/#wowace rljohn (1896b3cc@gateway/web/freenode/ip.24.150.179.204)
21:32.01rljohnhello all. i've resubbed to update an addon. how much has pandas ruined everything
21:32.11mckenziemco.o
21:35.11Repoheatsink: 03durcyn 07master * 50001-14-5-g47f2aad Heatsink.lua: [+1 commit] interrupt detection works, now show a bar for it
21:36.02znfrljohn, nothing much
21:37.53rljohngood
21:38.28rljohnbecause looking at this code is making present-day me hate 2010 me
21:42.48Dark_Elfwhat addon u updating rljohn?
21:43.30rljohnhttp://www.curse.com/addons/wow/enraged
21:44.02rljohngotta admit though, chilling in Orgimmar is making me debate about buying pandas
21:44.15znfwonder if that addons is still useful in some way
21:44.37Dark_Elfi bet it will err on first try on new patch
21:45.10rljohni got a handful of posts and private messages, figured it was worth it
21:47.07Dark_Elfits aways worth it when u got others using it. although didnt really have to pay to play wow
21:49.15rljohna friend wanted the resurrection scroll rewards, so it wasn't really a big deal
21:51.29Gnarfozznf: I'm guessing there's some Amarande talk in between the lines? ^^
21:52.01mckenziemcyes
21:53.26rljohnnew login screen is pretty
21:54.01rljohnonly 14 errors, could be worse >.>
21:54.49mckenziemcthere will be more when you get those fixed :p
21:55.39Dark_Elfi liked cataclysms better
21:57.48Dark_Elfi think having horde and alliance pandas is gonna be a mess
21:57.54Gnarfozorder now and you too can give her multiple cataclysms
21:58.42znfyeah
21:58.45sblol Stanzilla :P
21:58.55Stanzillabest ID eu
21:59.02sbnah, GC twitter thingy :p
21:59.12Stanzilla*idea
22:00.34Repohead-count-2: 03kagaro 07master * 1.10-4-g6681cef Constants.lua: [+1 commit] tested code on live, now loads all the bosses form the EJ
22:01.12znfSeriously
22:01.19znfI'm gonna go forum-nerd-rage soon if they don't fix this ASAP
22:01.25Stanzillawhat
22:01.38znfthe SWD activation
22:01.57znftarget at 18? nope, can't use it...
22:02.03Repohead-count-2: 03kagaro 041.11 * d02d6f8 /: [new tag] 1.11 Mop Compat, now with EncounterJournal bosses with fallback to babble boss for older instances"
22:07.01Stanzillayeah that is pretty annoying
22:07.07Stanzillabetter tweet to gc znf
22:09.42znftweets
22:10.32znfthere!
22:10.37mckenziemcstabs
22:29.36znfsb, mkay, so
22:29.55znfit seems that PI is only better in *some* situations when you can actually use it multiple times
22:30.21znfelse it fails badly behind DI
22:34.38sboh okay, so you are also haste > crit > mastery
22:34.56znfyeah, I switched to that
22:35.00znfI'm not sure it's good so far
22:35.14znfI mean, mastery ticks can trigger DI/FDCL :-/
22:37.53Stanzillaanyone with a warcraft movies premium account?
22:50.11*** join/#wowace ringse (~gr@108-237-102-52.lightspeed.frsnca.sbcglobal.net)
22:55.26GnarfozI haven't been to WCM in 2 years :
22:55.26Gnarfoz:o
22:58.42znfI've never been to WCM
22:58.44StanzillaGnarfoz: they closed down all old videos to premium only -.-.-
22:58.56znflame
22:59.23Repoglow-fo-sho: 03dridzt * r90 GlowFoSho.lua: - Fix chat handling.
22:59.23Repo- Remove chat hooks and use Filters properly. (should fix issues with duplicated chat messages)
23:01.24*** join/#wowace Droolio (~drool@host86-181-109-99.range86-181.btcentralplus.com)
23:07.17Reposilver-dragon: 03Kemayo 07master * v2.6.3-15-g29420cc / (17 files in 4 directories): [+3 commits]
23:07.18Repo29420cc: New tooltip handling: show on mob tooltip if it's an achievement mob, and give option to show the id in the tooltip (for help with manual alerts)
23:07.18Repoe1174ea: Little more rearranging
23:07.19Repob9760cb: Little extra name collection
23:16.27*** join/#wowace Shirik (~mpdelbuon@WoWUIDev/WoWIStaff/Norganna/StatisticalEngineer/Shirik)
23:16.27*** mode/#wowace [+v Shirik] by ChanServ
23:16.40*** join/#wowace sylvanaar (~sylvanaar@pdpc/supporter/active/sylvanaar)
23:21.39*** join/#wowace sylvanaar (~sylvanaar@pdpc/supporter/active/sylvanaar)
23:21.45GnarfozStanzilla: do you need a specific one? I collected them for some years :F
23:22.08StanzillaGnarfoz: yes but its one from my guild, you probably dont have that
23:24.18Repoglow-fo-sho: 03dridzt * r91 GlowFoSho.lua:
23:24.18Repo- Remove a couple unneeded calls while we're here. HookScript(ed) functions run after the originals by default.
23:25.02mckenziemchey Shirik
23:32.13Repolibmounts-1-0: 03yssaril * r55 / (3 files in 2 directories): added Profession restrictions to the data file
23:32.13Repoadded new function lib:GetProffessionRestriction(id) returns if we meet the restrictions to summon the mount (if any) and which profession and profession level required (if any)
23:38.19Repolibmounts-1-0: 03yssaril * r56 LibMounts-1.0/LibMounts-1.0.lua: fix documentation
23:40.39Repolibmounts-1-0: 03yssaril * r57 LibMounts-1.0/LibMounts-1.0.lua: fix spelling /sigh
23:41.32mckenziemchugs Yssaril
23:41.40Yssarilsigh
23:42.25znfSo...
23:42.30znfSome druid typhooned me into a tree
23:42.35quiescensgrats
23:42.44Gnarfozyou're a winrar
23:42.44mckenziemc~stab quiescens
23:42.44purlACTION runs at quiescens with an origami Swiss Army knife, and inflicts a nasty paper cut.
23:46.09Repoonecore: 03Kaelten * r70 / (2 files in 2 directories): Added tag v1.3.12 for changeset 6e52f70025a2
23:46.09RepoFixed lua error in config panel
23:46.39Repoonebank3: 03Kaelten * r70 .hgtags: Added tag v3.3.17 for changeset 970e13f5661a
23:46.59Repoonebag3: 03Kaelten * r155 .hgtags: Added tag v3.4.7 for changeset e72ace84dae2
23:55.40Repolibmounts-1-0: 03yssaril * r58 LibMounts-1.0/LibMounts-1.0.lua: fix equalities

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.