IRC log for #wowace on 20101119

00:00.38*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
00:00.58Connor1...anyone got the entire wowpedia in a downloadable archive?
00:01.04Connor1Or any way I can do this?
00:01.29HjalteI remember bringing websites to exams that way back in school :>
00:01.38Connor1?????
00:01.39Connor1English please
00:02.07PrimerEngrish?
00:02.15*** join/#wowace _EvilGrin_ (~Geoff@87-194-195-47.bethere.co.uk)
00:02.17Connor1Anyone got an answer to my question?
00:02.21HjalteDownloading websites so they could be browsed locally. It was good for stuff like english exams when you needed to look-up stuff.
00:02.45Connor1Oh see
00:02.53Connor1But I need this in .txt or .pdf
00:02.57Connor1Preferably .pdf
00:03.00Connor1I'd like to read wowpedia like a book lol
00:03.05Connor1On my Nook :>
00:03.23PredicateThere are ways to convert html to pdf, but there are some fundamental problems with that...
00:03.28Connor1Why?
00:03.31PredicateWhich order would you read the articles in?
00:03.35PredicateHow would you follow links?
00:03.59Connor1Alphabetical
00:04.04Primeruhh
00:04.11Primerseems he doesn't get the concept
00:04.23PredicateI'm...not sure what you're going to gain by reading a wiki A-Z.
00:04.30Connor1I just want to
00:05.40PredicateThere are actual books that might be more relevant, depending on what you're trying to learn about...
00:06.10Connor1I just want to read wowpedia like a book...
00:06.39Axodioushttp://paste.wowace.com/2878/ does that make sense Pneumatus / Predicate ?
00:07.03Repo10reaction: 03flickerstreak 07default, stable * r210 / (7 files in 3 directories): Added tag 1.1 Beta 3 for changeset 3e451836ce6d  (Message trimmed by 8 lines)
00:07.04RepoMerge c24ac8ee1e45857c35b8f241a3782e884ee9c7c0
00:07.05RepoReAction.lua cleanup: Fixed calls to DestroyBar()
00:07.06Repokb mode and config mode now mutually exclusive
00:07.07RepoBreak out .toc direct includes into top level XML to support compilation embedding
00:12.45*** join/#wowace Pucmel (~pucmel@dwarf.dkm.cz)
00:12.47Axodious... i don't get this, i can do the first condition always (the getinstancegroupsize) i can do a 2nd cond after that (either of them), i can do a 3rd cond if it's the same as the 2nd (redundant test), i CAN'T do the 3rd as the opposite coord
00:13.11Axodiousindividually they all return true
00:14.43PredicateEr. What?
00:15.07Axodiousit won't return true if i have all 3 sets of conditions together
00:15.14Axodiouseven though by itself each does
00:15.24PredicateAre you combining them with "and"?
00:15.32Axodioushttp://paste.wowace.com/2878/
00:16.24*** join/#wowace Vilkku (Vilkku@dsl-tkubrasgw1-fe0bfa00-122.dhcp.inet.fi)
00:17.09PredicateThat...looks right. Difficult to follow, but right.
00:17.56Axodiousnow that's inside a for loop, should be fine yea?
00:18.18PredicateSure, as long as all those variables are defined somewhere...
00:18.58PredicateHonestly, I'm not sure what all your conditionals are doing there in the first place. That could certainly be simplified.
00:19.09Axodious?
00:19.14SlaymanPredicate: I'm working on that it#s amess
00:20.19PredicateAxodious: Can you explain what all those variables are, and what you're trying to accomplish with them?
00:20.26SlaymanAxodious: http://paste.wowace.com/2879/ I started simplifying I could not understand it at all
00:20.30PredicateOr give us some of the context for the code...
00:20.32*** join/#wowace Natch (~natch@c-27cde155.25-4-64736c10.cust.bredbandsbolaget.se)
00:20.33Repo10atlasloot-enhanced: 03Lag123 * r2998 / (7 files in 4 directories):  (Message trimmed by 1 line)
00:20.37Repo- Wishlists now can be saved in "SavedVariablesPerCharacter"
00:20.37Repo- Add a warning and auto-disable AtlasLootFu
00:20.39Repo- Delete AtlasLootBETA.toc
00:20.40Repo- Some fixes
00:20.41Axodiousim trying to return true if the current instance in the for loop which is from libtourist is larger than a 5 man (meaning a raid) that's easy enough to see
00:21.00Axodiouse_x and e_y is suppose to be the current closest raids entrance x and y coords
00:21.20Axodiousi_x and i_y are the ones being pulled from the for loop to compare to e_x and e_y
00:21.36Axodiousarcoordsx and y are the players coords
00:21.47PredicateWhy are you iterating through instances if you already know where the closest one is?
00:22.14Axodiouswhile the player is moving if a new instance becomes closer switch to that one
00:22.27Axodiouswhich should replace the current e_x and y with the current i_x and y
00:23.06PredicateRight. So calculate distance to i_x,i_y once, then calculate distance to e_x,e_y and compare them?
00:23.17Axodiousyea
00:23.25Axodiousif e_x and y is a larger number, it's farther away
00:23.48PredicateEr...those are coordinates. Just because they're larger doesn't mean they're farther from you?
00:23.54*** join/#wowace Yssaril (~kvirc@99-57-32-25.lightspeed.cicril.sbcglobal.net)
00:24.08Axodiousthats why theres 2 sets for each coord type
00:24.12Primerjust use astrolabe
00:24.21PredicateYeah, uh, I'm confused now.
00:24.26Axodiouslol :(
00:24.31Primercalculating distance using Astrolabe is simple
00:24.33SlaymanAxodious: write some pseudocode about what you try to do, and then one can fill that with real values
00:24.46Slaymansimplified pseudocode I mean
00:25.03Axodiousi was looking at astrolabe after you mentioned it the first time, didn't understand it well enough >_<
00:25.14*** join/#wowace Next96 (Next96@118.32.87.174)
00:25.24Primerit's simple
00:25.30PrimerI showed you the code I use
00:25.35PredicateYou don't need a library to do this, just some simple math.
00:25.56Primerwell, if he crosses zones, then it's not so simple
00:26.06PredicateHe's only looking at instances in the current zone.
00:26.12Primerthen it's braindead simple
00:26.19Primerand I pasted the formula before
00:26.27Primerfunction () return sqrt ((((tx - px) * width) ^ 2) + (((ty - py) * height) ^ 2)) end
00:26.44Primerpx/py is your current x/y
00:26.50Primertx/ty is your target x/y
00:27.08Primerthat'll return the distance in "zone measurement" units
00:27.17Primerwhere width and height are the zone measurements
00:27.32PrimerLibMapData-1.0 can provide those
00:27.40Axodiousi was trying to break it down in a way that i could understand before i copy/pasted
00:27.41Primererr
00:27.41*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
00:27.45Primeractually that'd be yards
00:27.52Primerso you could just omit the width and height
00:27.56Primerand get raw distance
00:28.02Primersince that's all you really need
00:28.39Primerthat formula assume 0,0 is top right though, IIRC
00:28.45Primerwhich is how all wow maps are laid out
00:28.51Primerassumes, even
00:29.04PredicateIf you omit width and height, that would assume a square zone.
00:29.11PredicateProbably a bad idea for most zones. :)
00:29.33Primerahh yeah
00:29.39Primerbut then he'd need the ratio
00:29.49Primerbetter off just getting the actual dimensions with LibMapData
00:29.51*** join/#wowace Zenon (~zenon@ip72-192-196-27.dc.dc.cox.net)
00:30.15ZenonThere an addon for timing the event going on now?
00:30.25PrimerI hate those events
00:30.39Primerleveling a dude, go to SW to train/buy shit from the AH, and get pwned by elementals
00:31.14Zenonhehe yeah
00:33.58*** join/#wowace asq (~asq@ool-18bf3099.dyn.optonline.net)
00:33.58*** join/#wowace asq (~asq@unaffiliated/asq)
00:37.44PrimerYssaril: What can I do about an addon whose right click menu overlays itself onto the Yssdrop hover popup?
00:37.53Primerentirely
00:39.15YssarilPrimer: not much (sadly) Yssdrop does try to reanchor frames that it spawns but some addons do wierd stuff where it won't work
00:39.38PrimerI'm talking about BigBrother
00:39.44Primerin case you were wondering
00:39.46Yssarilscreenshot
00:39.48Yssaril?
00:39.49Primersec
00:40.03*** join/#wowace Seerah (~Ryan@adsl-226-98-219.mem.bellsouth.net)
00:40.50*** part/#wowace Yssaril (~kvirc@99-57-32-25.lightspeed.cicril.sbcglobal.net)
00:41.50*** join/#wowace Yssaril (~kvirc@99-57-32-25.lightspeed.cicril.sbcglobal.net)
00:42.18Primersigh, pressing printscreen causes the popup to go away
00:42.26Yssarillol
00:42.29Primerand it happens before the shot is taken
00:42.37Primerhttp://ceregatti.org/download/images/yss.jpg
00:42.50Primerlet me try again
00:43.33Primerok, it was a timing thing actually
00:43.44Primeror not
00:43.45Primerwtf
00:43.58SlaymanPrimer: what's your bar (XP Bar to be precise) it looks sleek
00:44.13PrimerDominos
00:44.54SlaymanTuller, doing it again in style. curse him!
00:44.59Primerhttp://ceregatti.org/download/images/yss2.jpg
00:45.00Primerthere
00:45.03Primerreload that
00:45.46PrimerI can hover and click through that menu and click Yssdrop items as well as BB menu items
00:46.40Tullera lot of people tend to not like the xp bar in dominos
00:46.55PrimerI don't :)
00:47.09PrimerI love everything else though
00:47.19Yssarilhmmm no idea but considering it uses Ace2, dewdrop and was never desinged to work directly with LDB i am not too worry about supporting it
00:47.34Primerbastard
00:47.52*** join/#wowace Veight (Veight@c-24-245-39-79.hsd1.mn.comcast.net)
00:48.00Primerwell, I guess I could just enable the BB minimap icon
00:48.09SlaymanI personally dislike the standard XP Bar with the bubbled look and the sliders, I much prefer a clean look with highly visible information
00:48.11vhaarrdewdrop doesn't depend on ace2 though, but I guess it's still a beast
00:48.52Arrowmasterit depends on acelibrary
00:49.41vhaarrreally, still?
00:49.43YssarilPrimer: just not inclined to support something that it itself doesnt support LDB (ask the authors to properly support LDB and i'll look into it)
00:49.50vhaarrsomeone could fix that easily though
00:50.14PrimerYssaril: it's ok :)
00:50.23Yssaril:)
00:54.04*** join/#wowace tardmrr (~tardmrr@WoWUIDev/WoWI/Dongle/Tem)
00:54.04*** mode/#wowace [+o tardmrr] by ChanServ
00:54.35*** part/#wowace mitchnull (~opera@catv3EC944A1.pool.t-online.hu)
00:57.01Slaymanawesome I'm about to usher a Q to the devs lol
00:57.06SlaymanI ask for cookies
00:57.19Slaymanor a mose
00:57.19Slaymanmoose
00:58.33Slaymanor not
00:59.43*** join/#wowace durcyn (~durcyn@WoWUIDev/Durcyn)
01:01.13Slayman*sadface* going to sleep I count on you Bibi to transcript ALL of that nonsense kkthxbye
01:01.38Repo10charscanner: 03kunda * r58 / (2 files in 1 directory): CharScanner:
01:01.39Repo- added Close Button to Gear and Talent Frame
01:01.40Repo- fix gear scan: implemented a very fast (0.4sec(avg) scan-everything) and secure solution for the whole server-side-gear-itemLink-shit (eg. gemIDs/reforgeID/whatever)
01:04.21Repo10atlasloot-enhanced: 03Lag123 * r2999 / (6 files in 3 directories): - Add LibDataBroker-1.1
01:09.44*** join/#wowace Droolio (~drool@87-194-188-170.bethere.co.uk)
01:10.53*** join/#wowace newbie (~ckknight@69.73.16.202)
01:11.40Amadeosomeone keeps taking my nick
01:12.58Slaymandidn't you register it with NickServ?
01:13.07Slaymanif not: fool!
01:14.01*** join/#wowace kandarz (~kandarz@c-67-183-240-167.hsd1.wa.comcast.net)
01:14.23*** part/#wowace kandarz (~kandarz@c-67-183-240-167.hsd1.wa.comcast.net)
01:15.49*** join/#wowace Killmore (~task@dsl-60-153.aei.ca)
01:16.50Amadeoit's registered :)
01:16.52Amadeobut annoying
01:17.44zoktaranyone seen an addon that displays your current crit/haste/ap/sp and a timer on the buff thats going to drop first?
01:20.52Amadeoyou guys seen that "mbxtremeui" compilation? not commenting on what it uses, but it's nicely laid out
01:20.57Amadeowish I was good enough at that shit, lol
01:21.07PrimerRIFT, eh?
01:21.10PrimerNever heard of it
01:22.24WobinPrimer: yeah
01:22.36WobinI'm going to look into it tonight, but I guess I signed up =P
01:22.44WobinPS Beta weekends are a stupid idea =P
01:31.30Connor1Goodbye old wow forums...
01:35.13*** join/#wowace Kilroo (~Kilroo@cpe-174-111-058-051.triad.res.rr.com)
01:45.40*** join/#wowace Yssaril (~kvirc@99-57-32-25.lightspeed.cicril.sbcglobal.net)
01:52.38*** join/#wowace FLS (Groktar@c-76-20-77-109.hsd1.ca.comcast.net)
01:53.28*** join/#wowace Kilroo (~Kilroo@cpe-174-111-058-051.triad.res.rr.com)
01:55.37*** join/#wowace doom0r (Doom0r@c-24-1-208-60.hsd1.il.comcast.net)
02:25.05Stanzillawon't be missed
02:25.11Stanzillaugly piece of buggy shit :p
02:32.41Olisono/
02:35.11Repo10raid_checklist: 03Anyia3 * r72 main.lua:
02:35.13Repo* Added /rcl and /raidchecklist chat commands to toggle the checklist with.
02:39.12Repo10charscanner: 03kunda * r59 CharScanner.lua: comment update
02:42.07Repo10charscanner: 03kunda 0440000-1 * r60 : Tagging as 40000-1
02:43.41PrimerWOW! I was just about to gank a horde and as I was about to cast my opening volley, I DC'd
02:44.24Primerand now I can't connect
02:44.35Primerand...I'm dead
02:45.07PrimerI was even waiting for him to finish dealing with his mobs
02:52.20Repo10decursive: 03Archarodim 07master * 2.5.2.2-18-ge6f95ee / (3 files in 2 directories): [+2 commits]
02:52.21Repoe6f95ee: - Reverse the way the new-version detection system works: instead of asking everyone what version they use, each Decursive will now announce its version every 30 minutes when zoning (on PLAYER_ENTERING_WORLD).
02:52.22Repoce7fe23: - Made it clear that Decursive supports all classes with cleansing abilities (in Description.txt)
02:52.55StanzillaArcharodim: why do you even need a version check btw? :P
02:53.02*** join/#wowace Ketho (~Ketho@ip565063bd.direct-adsl.nl)
02:53.29Archarodimbecause else most people won't update
02:56.20*** join/#wowace NeoTron (~neotron@pool-108-17-169-178.sttlwa.fios.verizon.net)
03:04.04Repo10raid_checklist: 03Anyia3 044.0.3 * r73 : Tagging as 4.0.3
03:22.15*** join/#wowace bluspacecow (~bluspacec@60-234-165-167.bitstream.orcon.net.nz)
03:27.26*** join/#wowace Hirsute (~chatzilla@adsl-75-5-243-190.dsl.scrm01.sbcglobal.net)
03:27.31*** join/#wowace Hirsute (~chatzilla@WoWUIDev/Norganna/Developer/Hirsute)
03:29.39*** join/#wowace Sariash (~Cabal@e177173145.adsl.alicedsl.de)
03:36.02*** join/#wowace newbie (~ckknight@c-68-62-172-239.hsd1.al.comcast.net)
03:39.18*** part/#wowace bluspacecow (~bluspacec@60-234-165-167.bitstream.orcon.net.nz)
03:40.14TorhalFoof
03:40.23doom0rneeds a lightweight item linker
03:41.50Torhalpurges doom0r with fire for using the term "lightweight".
03:42.36doom0rlightweight is appropriate: not something that keeps a ridiculous db when linking unseen items will d/c you anyways
03:43.10doom0rfound out that lootlink is causing my instance loads to increase by ~30secs
03:43.40Torhalo.O
03:43.43doom0rwas only using it for the quick chat linking like linkerator
03:44.06doom0ryes, and i don't feel like figuring out why, nor do i need a 5mb db loaded
03:47.17ShefkiWhat is loot link?
03:47.58*** join/#wowace Veight (Veight@c-24-245-39-79.hsd1.mn.comcast.net)
03:48.50TorhalSome gargantuan thing that's been around since before TBC
03:49.40leech2kI would like to store data on other players long term, are there any mods the do this (or something like it) well I should look at as an example?
03:50.08doom0rya, was using linkerator which just used the cache
03:51.08doom0rleech2k: there's several miners, there's also note addons, depends on what you're trying to do exactly
03:52.49leech2kdoom0r: Trying to keep a list of players you have killed and been killed by. But, I don't want to screw it up really bad :-)
03:53.47doom0rlook for kos mods
03:54.02doom0r@project vanas-kos
03:54.04Repodoom0r: http://www.wowace.com/addons/vanas-kos/. Vanas KoS. Game: WoW. Vana (Manager/Author/Maintainer), Raelea (Author/Maintainer), xilcoy (Author/Maintainer). Updated: 28 days ago. Tickets: 4/52
03:54.05*** join/#wowace Mirrormn (~Mirrormn@h182.188.19.98.dynamic.ip.windstream.net)
03:54.06doom0rfor example
03:54.25doom0rthat actually has a cc license
03:55.09leech2kdoom0r: ty
03:55.50*** join/#wowace eblume (~Erich@76.126.58.246)
03:57.52*** join/#wowace stew-a (~Stewart@unafilliated/stewa/x-008753)
04:08.12*** join/#wowace TradeMark (~trademark@c-67-170-75-28.hsd1.wa.comcast.net)
04:12.00*** join/#wowace DarkAudit (~Brian@64.181.5.194)
04:15.18*** join/#wowace Hirsute (~chatzilla@adsl-75-5-243-190.dsl.scrm01.sbcglobal.net)
04:15.23*** join/#wowace Hirsute (~chatzilla@WoWUIDev/Norganna/Developer/Hirsute)
04:16.09TorhalTrela: Boo!
04:16.28TrelaTorhal: AAAHHHHHHHH!
04:16.40TrelaYou know my screen name, shit!  *Hides*
04:17.18Primernevcairiel: Seems I had a LibMapData-1.0 in one of my addon's directory and it wasn't being maintained by CC since it was an SVN checkout
04:17.41TorhalTrela: Indeed. :D
04:17.52Primerreplaced that with a pacakged libs dir and now it's all good (Referring to the issue I mentioned earlier regarding Gathermate2)
04:31.57Ackishey Parnic are you around?
04:32.03AckisTorhal: you're home safe?
04:32.24TorhalAckis: Ayup!
04:32.40Ackisyay
04:32.43Ackisbutt hurt at all?
04:32.45TorhalAckis: Almost didn't make it, but I got out of the Mac room before Trela could scalp me.
04:33.23Ackiswhen you going back?
04:33.37TorhalAckis: Only because I have to get up in about five hours and go to work.
04:33.40TrelaI just wanted to integrate you with out Mac culture!
04:33.44TorhalAckis: Nobody said I was :P
04:33.59Ackisis implying.
04:34.04AckisTrela: can you fix curseforge pls?
04:34.10TrelaAckis: No!
04:34.12TrelaWhat is broken?
04:34.32Ackisshorter to list what works...
04:34.39Ackishides.
04:34.41TorhalD'oh!
04:36.47TrelaD:
04:36.52TrelaNo my department any way!
04:37.07Trela*Not
04:37.11Ackisbah
04:37.17Ackisyou just break DNSes then?
04:37.20AckisZING! :D
04:37.42TrelaThat was not my fault.  :P
04:37.54Ackisthat's what everyone is saying
04:37.56Ackis:)
04:38.58Ackissorry I'm in a grumpy mood kinda, I'm trying to be funny but I'm probably coming off as a dick
04:39.07Torhal...because you -are- a dick.
04:39.11Ackisno
04:39.16AckisI'm an abusive asshole
04:39.21TorhalOh
04:40.09TrelaI will just remember that for later.  :P
04:40.23TorhalHeh
04:40.42Ackisyou forgot what I was Torhal?
04:40.42Trelasends her annoying rogue to annoy Ackis.
04:41.45*** join/#wowace tardmrr (~tardmrr@WoWUIDev/WoWI/Dongle/Tem)
04:41.45*** mode/#wowace [+o tardmrr] by ChanServ
04:41.53TorhalAckis: No, but you're also a bastard so I thought "dick" would fit as well.
04:42.12Ackisnah
04:42.23TorhalPen-fifteen?
04:45.32Ackismy cat has thrown up about 20x today
04:46.21doom0rgive it a laxative
04:49.35Torhal...
04:49.40doom0rdon't you ... me
04:49.45doom0rthey make hairball lax
04:49.47Torhal!!!
04:49.49doom0rit's a gel
04:49.56AckisGot home today and saw about 10 piles of cat vomit.  Hair bands, rubber bands, tape, plastic were all part of it.  Now he's throwing up bile.
04:49.57doom0ryou put a lil on their nose
04:50.15doom0rlubes the inside of their throat to allow hairballs to come out easier
04:52.08AckisTorhal: you'll be happy to hear that my xbox disc drive died
04:54.04TorhalAckis: You'll just buy a bigger one.
04:54.21Ackishow did you know what I was going to do tomorrow night?
04:54.35doom0rpoints at the window
04:55.01TorhalAckis: I have telepathetic powers.
04:59.47Ackisnight folks
04:59.55TorhalAckis: G'night mang.
05:09.26*** join/#wowace Sariash (~Cabal@e177172137.adsl.alicedsl.de)
05:12.53*** part/#wowace Seerah (~Ryan@adsl-226-98-219.mem.bellsouth.net)
05:20.52*** join/#wowace the-golem (~Darrin@c-98-255-201-176.hsd1.ca.comcast.net)
05:51.17*** join/#wowace bien|| (~bien@p4FF47923.dip.t-dialin.net)
05:55.44Repo10utopia: 03Zeksie * r231 / (2 files in 1 directory):
05:55.45RepoRemoved some code that fixes the Blizzard bug with the options not selecting the right bit if you have a lot of addons. Get the BlizzBugsSuck addon instead to fix that for everything.
05:55.46RepoFixed Arcane Brilliance not showing up for spell power slot.
05:55.47RepoAdded some spellIDs to make Mage's Chilled effect show up, but atm it's showing up as whatever spell you casted in the UpTime recorder. Will address that later.
05:57.27Repo10zomgbuffs: 03Zeksie * r186 ZOMGBuffs_SelfBuffs/ZOMGBuffs_SelfBuffs.lua: Fixed some options not working correctly.
05:57.28RepoFixed Mage Armor cycling when clicked through main tooltip.
06:12.42Repo10atlasloot-enhanced: 03Hegarol * r3000 / (3 files in 2 directories): small fix
06:24.44HjalteWhat is up with queuing for a battleground and not being able to join the battle when it pop ups? Nothing happens.
06:25.18WobinHjalte: known issue
06:25.25Wobinto fix: requeue =P
06:25.40Wobin"Have you tried turning it off, and on again?"
06:25.49doom0rheh
06:25.57doom0r<3 that show
06:26.17Wobin"Dear Sir/Madam, Fire. Fire. Help. Fire..."
06:26.19doom0rand i'm american :o
06:28.43HjalteI went inside AV to do the quest Proving Grounds and guess what; I end up in the wrong cave.
06:30.02Wobinjust shows what you've proven =P
06:31.19HjalteI picked the wrong faction quest on wowhead :(
06:39.43*** join/#wowace CrazyBenny (s_m@a02-0602c.kn.vutbr.cz)
06:43.04*** join/#wowace DarkAudit (~Brian@64.181.5.194)
06:46.21*** join/#wowace stolenlegacy|lap (~stolenleg@193.170.222.163)
06:48.04*** join/#wowace Veight` (Veight@c-24-245-39-79.hsd1.mn.comcast.net)
06:52.00*** join/#wowace Dashkal (~dashkal@WoWUIDev/Nexus/dashkal)
07:02.17*** join/#wowace Caleb| (~caleb@fibhost-66-130-150.fibernet.hu)
07:06.14NeoTronI still like my level 22 shaman with 17 days played
07:07.27*** join/#wowace dubf (~quassel@84.53.31.14)
07:07.46*** join/#wowace Caleb| (~caleb@fibhost-66-130-150.fibernet.hu)
07:10.00*** join/#wowace Megalon (Megalon@d86-33-0-156.cust.tele2.at)
07:11.25*** join/#wowace faCe| (~face@p5489B027.dip.t-dialin.net)
07:17.25*** join/#wowace Dashkal (~dashkal@WoWUIDev/Nexus/dashkal)
07:19.02*** join/#wowace Elkano (~elkano@pool014.vpn.uni-saarland.de)
07:19.02*** join/#wowace Elkano (~elkano@WoWUIDev/WoWAce/Elkano)
07:19.02*** mode/#wowace [+v Elkano] by ChanServ
07:33.00*** join/#wowace Skizelli (skizelli@c-76-102-108-254.hsd1.ca.comcast.net)
07:36.56sbumorgen
07:39.11Megalonheute schon gemooooooooooordet?
07:41.46sbumh - sadly the answer is no, stupid people still yelling at 8:30 in the office - wtf :|
07:46.49*** join/#wowace Next96 (Next96@118.32.87.174)
07:51.24*** join/#wowace Aikar (~Aikar@eternia.aicomputerservices.com)
07:51.24*** join/#wowace Aikar (~Aikar@wikia/Aikar)
07:54.48winkanyone got an idea why a "git submodule update" won't pull the latest change?
07:56.15Repo10professionsvault: 03oscarucb * r78 ProfessionsVault.lua: add /pv scan command
08:00.43*** join/#wowace leech2k (~leech@66.119.206.225)
08:06.23*** join/#wowace _EvilGrin_ (~Geoff@87-194-195-47.bethere.co.uk)
08:16.06mitch0git sucks
08:16.38ShirikAgree
08:16.44Shirikunfortunately it's one of the best VCS out there right now
08:17.01mitch0*shrug*
08:17.10YssarilShirik: you should write a better one :P
08:17.15Shirikno I shouldn't
08:17.22ShirikI have enough on my plate already
08:20.27SunTsuwink: what does git submodule status say?
08:23.03*** join/#wowace Higdur (~nike@239-246-96-87.cust.blixtvik.se)
08:23.52winkit looks fine, just that the hashes don't match the head of the submodule repos
08:25.40SunTsuwink: tried updating with --rebase? If I understand correctly checking out a git repository as submodule silently branches it
08:26.05*** join/#wowace TNSe (~evil@198.62-97-238.bkkb.no)
08:26.09winkgonna try, thanks
08:31.55*** join/#wowace Adirelle (~Adirelle@tok69-5-82-235-150-60.fbx.proxad.net)
08:32.21*** join/#wowace Zyn- (~faggotry@h187n4-av-a11.ias.bredband.telia.com)
08:32.24Repo10libdropdown-1-0: 03dhedbor * r3 LibDropdown-1.0/LibDropdown-1.0.lua: Now sort of actually works
08:32.48*** join/#wowace TheDude22 (~joe@24-177-122-255.dhcp.mdsn.wi.charter.com)
08:33.50*** join/#wowace ccKep1 (~Kep@77-21-210-61-dynip.superkabel.de)
08:33.58*** join/#wowace Jyggaa (Jygga@unaffiliated/jygga)
08:33.59*** join/#wowace Yivry (~Dave@145.116.21.104)
08:45.21Repo10professionsvault: 03oscarucb * r79 ProfessionsVault.lua: enUS localization fixes, small auc loading tweak
08:55.42*** join/#wowace Nickenyfiken (~Miranda@192.121.174.5)
09:12.19*** join/#wowace pschriner (~Miranda@xdsl-89-0-178-229.netcologne.de)
09:18.48*** join/#wowace RaydenUni (~rayden@adsl-69-231-125-178.dsl.irvnca.pacbell.net)
09:23.01*** join/#wowace profalbert (~profalber@91-113-3-169.adsl.highway.telekom.at)
09:23.32*** join/#wowace KnThrak (~KnThrak@ip-109-91-140-83.unitymediagroup.de)
09:26.02Repo10big-wigs: 03Pettigrow * r7603 / (6 files in 5 directories): - frFR Update
09:26.03Repo- Bastion/TwilightAscendants: use babble-boss boss name
09:27.01*** join/#wowace Vilkku (Vilkku@dsl-tkubrasgw1-fe0bfa00-122.dhcp.inet.fi)
09:31.58*** join/#wowace nev-mobile (~nevcairie@WoWUIDev/WoWAce/Ace3/nevcairiel)
09:31.58*** mode/#wowace [+o nev-mobile] by ChanServ
09:33.10*** join/#wowace Sintacks (Syntax@173-80-126-1-swby.atw.dyn.suddenlink.net)
09:36.35*** join/#wowace Parnic (user@staff.xbins.org)
09:39.49*** join/#wowace stew_a (~Stewart@unafilliated/stewa/x-008753)
09:47.17*** join/#wowace mort (~mort@nrbg-4d070e32.pool.mediaWays.net)
09:49.06*** join/#wowace Veight (Veight@c-24-245-39-79.hsd1.mn.comcast.net)
10:00.29*** join/#wowace Lysithea (Lyset@c-86aa72d5.017-172-73746f34.cust.bredbandsbolaget.se)
10:00.36*** join/#wowace Diao (vince@adsl-76-254-21-38.dsl.pltn13.sbcglobal.net)
10:03.04*** join/#wowace Vonhinten (~Kiss@c-71-203-110-77.hsd1.fl.comcast.net)
10:08.19*** join/#wowace Wobin (~quassel@124-149-98-9.dyn.iinet.net.au)
10:08.19*** mode/#wowace [+v Wobin] by ChanServ
10:25.03Repo10autoprofity: 03Grayal * r46 / (2 files in 2 directories): prepare for cata
10:32.53*** part/#wowace KnThrak (~KnThrak@ip-109-91-140-83.unitymediagroup.de)
10:55.41Torhal@project libdropdown-1-0
10:55.42RepoTorhal: http://www.wowace.com/addons/libdropdown-1-0/. LibDropdown-1.0. Game: WoW. Antiarc (Manager/Author). Updated: 2 hours ago
11:00.30nev-mobileWhy would anyone touch that. :(
11:01.18nev-mobileYou know what the page needs, an ability to switch an addon to experimental
11:01.41nev-mobileOh there is
11:01.43nev-mobileswitches
11:02.48*** join/#wowace Next96 (Next96@118.32.87.174)
11:06.06nebula169the love for dewdrop runs deep
11:06.35nev-mobileThe hate even deeper
11:06.40nebula169heh
11:14.49*** join/#wowace Elkano (~elkano@wpa-uds102.funklan.uni-saarland.de)
11:14.49*** join/#wowace Elkano (~elkano@WoWUIDev/WoWAce/Elkano)
11:14.49*** mode/#wowace [+v Elkano] by ChanServ
11:16.03*** join/#wowace Natch| (~natch@c-27cde155.25-4-64736c10.cust.bredbandsbolaget.se)
11:26.43*** join/#wowace Skizelli (skizelli@c-76-102-108-254.hsd1.ca.comcast.net)
11:35.18Repo10big-wigs: 037destiny * r7604 / (4 files in 4 directories): koKR Update
11:50.04*** join/#wowace EthanCentaurai (~ethan@92.28.245.148)
11:54.34*** join/#wowace Sliker (~ponies@5add4785.bb.sky.com)
11:54.39Repo10bison: 03Grayal * r156 / (12 files in 1 directory): prepare for cata
12:08.47*** join/#wowace pschriner (~Miranda@xdsl-89-0-178-229.netcologne.de)
12:13.53*** join/#wowace Tuller (~tuller@c-69-143-52-174.hsd1.va.comcast.net)
12:25.01kagaroIll be running an extract for LibMapData this week form the PTR client, i havent seen the zone data change in a while from the beta, lib is already setup to detect the shattering and adjust accordingly
12:25.18kagarotime to head to work
12:25.24Elkanohf
12:29.40*** join/#wowace Elkano_ (~elkano@pool022.vpn.uni-saarland.de)
12:29.40*** join/#wowace Elkano_ (~elkano@WoWUIDev/WoWAce/Elkano)
12:29.40*** mode/#wowace [+v Elkano_] by ChanServ
12:30.37*** join/#wowace Legorol (~legorol.s@cpc8-sgyl28-2-0-cust43.sgyl.cable.virginmedia.com)
12:31.04*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
12:33.15Repo10libguildbankcomm-1-0 (experimental): 03myrroddin * r10 / (4 files in 1 directory):
12:33.16RepoMajor overhaul, with too may changes to keep track. No errors, but doesn't seem to work
12:34.38mitch0heh
12:35.08*** join/#wowace nuoHep (~nuohep@89.222.156.36)
12:36.29*** join/#wowace profalbert (~profalber@91-113-3-169.adsl.highway.telekom.at)
12:37.40*** part/#wowace profalbert (~profalber@91-113-3-169.adsl.highway.telekom.at)
12:48.16*** join/#wowace Veight (Veight@c-24-245-39-79.hsd1.mn.comcast.net)
13:02.27Elkano*random link drop* http://www.youtube.com/watch?v=RyMdOT8YJgY
13:07.42Megalonmost people don't realise that it is a fictinal story though
13:08.31Elkanoyeah, but he's right about the part that many wouldn't wonder if it were to really happen
13:09.46Mirrormnwait, why did I even watch that whole thing if it didn't even happen?
13:09.53Mirrormnthat's so useless -.-
13:10.15Megalonmost things that make you think
13:10.28Megalonseem useless the first time you see them
13:13.48Mirrormnbut the only thing I was thinking during the video was "this doesn't sound like real life, I'm not sure I actually believe this happened"
13:13.50Mirrormnand then it didn't
13:14.39Zasurushehe I was believeing it right up to the end! :D
13:15.19Elkanowell, I was like "why wasn't it in the news if he's already holding talks about it?"
13:17.13mitch0wtb one sentence abstract
13:18.11Megalonvideo of person with boobs
13:18.13Megalonriots
13:18.17Megalondeaths
13:18.19Megalonend
13:18.50Zasuruslol that prity much sums it up
13:21.17Repo10rw2: 03mangeg 07master * 1.42-beta2-13-g8e6f7b8 / (20 files in 7 directories): [+13 commits] (9 truncated)
13:21.17Repo8e6f7b8: Merge branch 'development'
13:21.19Repo9fb0452: Fixed so that auto response messages are not sent to people you are in the same group as when you receive BN whispers from them.
13:21.20Repo98567e9: Fixed error when changing font settings for window titles.
13:21.21Repofb511d2: Switch out dropdowns to new grid select for anchor points for all plugins.
13:22.02mitch0I watched it anyway. it was a mistake
13:22.49Zasurus:-)
13:23.25Repo10atlasloot-enhanced: 03Hegarol * r3001 / (2 files in 2 directories): - textparsing cleanup
13:23.26Repo- small other fixes
13:23.29mitch0it also had some audio artifacts
13:23.32Repo10bison: 03Grayal * r157 / (5 files in 1 directory): prepare for cata
13:25.42nebula169way to rip off the boxxie story
13:25.50nebula169minus the death
13:27.15nebula169interesting show, though!
13:32.19*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
13:34.28Mirrormnthe thing is
13:34.41Mirrormnno one would give a fuck about some random chick singing never gonna give you up
13:35.16Mirrormnnot to the point where anyone would pry themselves away from their computers, anyway
13:41.41*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
13:56.12*** join/#wowace Joddie|wrk (~JoddieWor@77.40.159.34)
14:08.13*** join/#wowace mojosdojo (~mojosdojo@p4FEFD7E2.dip.t-dialin.net)
14:08.58Wobin4chan wouldn't bother
14:09.16Wobina girl singing rastly wouldn't even ping on their radar
14:10.16Repo10atlasloot-enhanced: 03Lag123 * r3002 / (6 files in 3 directories): - Some Options changes
14:10.17Repo- FILTER Add Two hand weapons into the Meele weapons page
14:10.18Repo- Help text can now be changed in the "Info.lua"
14:10.19Repo- DEVTOOLS fix lua error and add Mark all button for TextParsing
14:14.03*** join/#wowace ocularis (~wex@cm-84.208.106.46.getinternet.no)
14:18.32harlhi
14:18.35Zasurushi
14:18.52Zasurusand hi on wowpedia 2 :-P
14:19.10Zasurusoh and wowuidev! ;-)
14:23.55*** join/#wowace Funkeh`` (~funk@82.111.118.231)
14:24.57*** join/#wowace rikai (~rikai@cpe-184-153-144-194.maine.res.rr.com)
14:24.57*** join/#wowace rikai (~rikai@unaffiliated/rikai)
14:25.31MirrormnWobin: exactly
14:25.55Mirrormn4cahn probably wouldn't even bother ordering her a singing telegram, let alone actually show up at her apartment
14:30.51Axodiousthere an addon that can organize guild bank tabs?
14:32.14Mirrormnhey axodious
14:32.17Axodioushi
14:32.25Mirrormndo you mind if I use those screenshots you took of weakauras?
14:32.29Axodiousgo for it
14:33.10Axodiousdid you get the custom actions/triggers working correctly yet? noticed there was a comment about them being broken
14:37.49Mirrormncustom actions were never broken
14:38.00Mirrormncustom triggers are working perfectly now
14:38.07Axodiousk :)
14:38.08Mirrormnwell, almost perfectly
14:38.26Repo10acp: 03sylvanaar * r125 / (2 files in 2 directories): fix slash command issues
14:38.39Reporudimentary fallthrough for invalid commands
14:38.40Repoadd new slash commands /acp disableall, /acp addset N, /acp removeset N
14:38.41Repoadd new slash commands /acp disableall, /acp addset N, /acp removeset N
14:38.52MirrormnI currently trying to decide whether I need to completely redo the trigger/untrigger paradigm
14:39.04Mirrormnor if I can hack the behavior people want into the system I implemented
14:39.09Mirrormnor if I should even change it at all
14:39.31*** join/#wowace sylvanaar (~sylvanaar@unaffiliated/sylvanaar)
14:39.36Axodiouswhich behaviour?
14:40.35Mirrormnwell, right now, a display's untrigger will not be checked unless its trigger already returns false
14:41.12*** join/#wowace stolenlegacy (~stolenleg@chello084115137250.5.graz.surfer.at)
14:41.19Mirrormnwhich allows you to basically define some situations where a display might be displayed or might not be, depending on past information
14:41.53Mirrormnlike for example, if you make a health display that trigger on < 35% health and untriggers on > 50% health
14:42.03Mirrormnthen the display will show when you dip below 35%
14:42.12Mirrormnbut it won't hide if you get healed to 45%
14:42.18*** join/#wowace Zasurus (~Zasurus@78-105-174-15.zone3.bethere.co.uk)
14:42.34Mirrormneven though it wouldn't have been shown if you only got damaged down to 45% health in the first place
14:43.06Mirrormnso the state of being at 45% health doesn't determine whether the display is showing or not - only the past history of what happened before is what is making it still be visible
14:43.29Mirrormnbut people misinterpreted that concept (and I will admit it's quite confusing)
14:43.59Mirrormnand they were trying to do things like have a health display with the trigger set to < 66% health and the untrigger set to > 0% health
14:44.01mitch0how did they misinterpret it?
14:44.17Mirrormnso they basically wanted to use the untrigger as a "and not" situation
14:45.14mitch0do you allow 'and' and stuff in your triggers/
14:45.15mitch0?
14:45.29Mirrormnyes
14:45.38mitch0like, trigger = hp > 0 and hp < 35%, untrigger = hp > 65%
14:45.54Mirrormnit's a little more complicated than that
14:45.57mitch0then what's the issue? the fix is clearly just a documentation update
14:46.02Mirrormnbut you can have multiple triggers that are anded together
14:46.41Mirrormnso you could have one display and give it two triggers, one with a trigger health < 66% and the other with health > 0%
14:46.53*** join/#wowace stolenlegacy|lap (~stolenleg@chello084115137250.5.graz.surfer.at)
14:47.21Mirrormnwell the problem is that I want the behavior to be intuitive
14:47.36mitch0well, make it so
14:47.53Mirrormnand looking back at the current functionality, I can't really think of how anyone but me (knowing the internal mechanisms of the addon) would understand it at first glance
14:47.59mitch0the behaviour is intuitive for me, haven't seen its gui though, so there might be some issue with setting up the "and" part
14:48.15Mirrormnwell, to be quite honest
14:48.26MirrormnI didn't even think of your solution
14:48.27Mirrormnsomehow
14:48.36Mirrormnso that might be good enough
14:48.47mitch0the doc update or the parsing of and , or etc?
14:48.55Mirrormndoc update
14:48.57mitch0;)
14:48.58Mirrormnwell
14:48.59MirrormnI mean
14:49.07Mirrormnusing multiple triggers
14:49.26Mirrormnwas something I didn't think of as being a possible solution until you prompted me to think of it
14:49.48mitch0then I guess it's not documented yet either? :)
14:49.58MirrormnI'm just now writing the first documentation
14:52.22*** join/#wowace kagaro (~kagaro@cpe-173-095-131-224.nc.res.rr.com)
14:52.47*** join/#wowace robokitty (~roboe@50A2E6C0.flatrate.dk)
14:54.01mitch0cat loving folks are touchy. fact.
14:56.28*** join/#wowace Zasurus (~Zasurus@78-105-174-15.zone3.bethere.co.uk)
14:56.33Repo10prat-3-0: 03sylvanaar * r750 / (5 files in 3 directories): Merge  (Message trimmed by 4 lines)
14:56.38Repofor Ackis
14:56.39Repooops forgot to credit the creator of the new chatcopy icons
14:56.40RepoAdded tag 3.4.12 for changeset f3399a628ecc
14:56.41Reporemove debug
14:57.01sylvanaargoddamn rebased on the wrong revision
14:57.05sylvanaarwhatever
14:57.31Mirrormnlol mitch0
14:57.35MirrormnI support your opinions!
14:57.47Ackislol sylvanaar
14:57.53Ackisanyone having issues w/ svn right now?
14:58.24Mirrormnand I supported your opinions by linking http://www.penny-arcade.com/patv/blamimations/108/ after you were kicked (relevant part starts at 0:55)
14:58.32sylvanaarat least it didnt rebuild the tag
15:00.31ZasurusAnyone know what "Sync" on git does exactly?
15:00.55ZasurusUsing TortoiseGIT if it makes any difference...
15:03.05mitch0mirror: "just get rid of him" :)
15:03.14mitch0funny
15:03.23CrazyBennyZasurus: the Sync in tortoiseGit just opens UI, where you can pull, push, etc.
15:03.40Repo10bison: 03Grayal * r158 / (4 files in 1 directory): prepare for cata
15:03.43ZasurusThanks
15:05.02mitch0mirror: awesum video ;)
15:05.03*** join/#wowace Yoshimo (~Miranda@p549987B6.dip0.t-ipconnect.de)
15:05.33Axodiousso if i've got an addon that uses libtourist and libtourist needs libstub (which is in the libtourist dir) how is it suppose to load that
15:05.42MirrormnI don't think Cairenn appreciated it like we cat-haters do
15:06.20mitch0axodious: you load LibStub before LibTourist
15:06.24Mirrormnyou should be loading libtourist by including it in an xml file
15:06.43Mirrormnthe file you specify to include should itself be an xml file (which is provided in the libtourist folder)
15:06.51Mirrormnthat xml file will, in turn, load LibStub
15:07.19Mirrormnor at least it should
15:08.00nevcairielembedded libs dont load libstub them self, you need to do that
15:08.30Axodiousk, do i load the embedded lib through libtourists dir or should i include it in my addons libs as another external/
15:09.16nevcairielmy M&Ms arrived, yay :d
15:09.29Axodiouslol
15:09.37Repo10prat-3-0: 03sylvanaar * r751 modules/CustomFilters.lua: support WHISPER_INFORM in customfilters
15:10.47*** join/#wowace Silowyi (~silowyi_d@99-5-223-222.lightspeed.snantx.sbcglobal.net)
15:11.32Axodiousbasically i'm wondering if it's good practice to load a lib through an embeds directory or if i should include it in my externals
15:11.41*** join/#wowace Hati (kvirc@dslb-092-078-022-203.pools.arcor-ip.net)
15:11.43Mirrormnhrm, yeah I guess I was totally wrong
15:11.47Mirrormnwheeee don't listen to me
15:17.24*** kick/#wowace [mitch0!~Ackis@WoWUIDev/WoWAce/ARL/Troll/Ackis] by Ackis (for your comments early, I've been distracted :P)
15:18.36*** join/#wowace mitch0 (~mitch@drvolomdental.hu)
15:19.08Repo10autoraid: 03Axodious * r10 / (2 files in 1 directory): Fix embeds.
15:24.46Axodiouswhen i commit a file that doesn't do anything other than upload it right? people can't see/download it unless i tag it after?
15:24.57Ackisdepends
15:25.12nevcairielby default, the packager creates zip for every commit
15:25.15Ackiscommiting will create a new package if you have it set to alpha's
15:25.24Axodiousi do not, beta
15:25.33ZasurusThen you need to tag to get package
15:25.37Axodiousk
15:26.09Axodiousand from what i understand in the faq if i tag like "1.1" would mark it as beta as opposed to "1.0" which would be release
15:26.19Axodiousautomagically
15:26.25Zasurusno
15:26.26nevcairielno
15:26.28Ackisno those would both be releases
15:26.37Ackis1.1beta would be beta, 1.1 would be release
15:26.42Zasurusneed to have string other then v or release to beta
15:26.47Axodiousah ok
15:27.03nevcairielyou can, of course, change that status afterwards
15:27.20ZasurusThis helped me: http://kb.curseforge.com/projects/packaging-an-addon/#w-tagging-your-addon
15:27.38Ackiswe need better kb articles IMO
15:27.50Axodiousyeah i've been reading around, so much to read difficult to find it all
15:28.10MirrormnI think it depends on your project settings, which commits are published
15:28.39ZasurusEven after I read that at first I didn't understand it. After I bugged this lot it made more sence but only with that link aswell ;-)
15:29.52Repo10autoraid: 03Axodious 041.1 * r11 : Tagging as 1.1
15:29.53RepoFixed embeds.
15:30.09Axodiousoh blah
15:30.31Axodiousso i just messed that up, it should be 2.1... how would i fix that
15:30.41Mirrormn@describe autoraid
15:30.43RepoMirrormn: http://www.wowace.com/addons/autoraid/. Autoraid. Automatically converts a party to a raid when you attempt to zone into a raid zone without a raid.
15:30.51MirrormnO.o
15:31.01*** join/#wowace Seerah (~Ryan@adsl-226-64-150.mem.bellsouth.net)
15:31.01ZasurusAxodious: You can edit it in the files section
15:31.09Zasurusof wowace/curseforge
15:33.12Axodiousok made that change, will it update the filename?
15:33.33ZasurusGo back to files and look
15:33.39Axodiousit hasn't yet
15:33.42ZasurusOh the file name isn't likely to be updated
15:34.18ZasurusIf you really want to fix that you can delete the file and recreate it.. although I don't know of a way to get the packager to recreate... Ackis?
15:35.28*** join/#wowace Monolit (~postid08@89.112.4.92)
15:35.33AxodiousMirrormn, got tired of forgetting to set the party to a raid when doing classic raids. or when i'm trying to zone into icc only to get blown up by a group of alliance
15:36.10Axodiousrecently changed it a bit based on map coords so if you're within .1 x/y it will convert it before you zone in
15:36.25AckisI have to go pee
15:36.33Ackiswhen I get back just let me know what you need me to fix
15:36.33ZasurusAckies: Good luck...
15:36.36*** join/#wowace sylvanaar_work (~sylvanaar@tut.qvssoftware.com)
15:36.57Mirrormnit would be cool if it automatically whispered every person in your guild who was in a major city asking if they could form a group with you and then auto-invited them if they responded positively or auto-accepted if they invited you
15:37.02Mirrormn^____^
15:37.21ZasurusMirrormn: Make it then
15:37.24Zasurus;-)
15:37.25Axodiouscould probably do that later down the road through comms
15:37.32Axodiousatm still nailing out the basics >_>
15:37.52Axodiouswas already thinking of adding comms if you're not partylead
15:40.24*** join/#wowace Odlaw (ozzy@c-98-245-3-204.hsd1.co.comcast.net)
15:44.07*** join/#wowace pschriner (~Miranda@xdsl-89-0-178-229.netcologne.de)
15:44.34*** join/#wowace Legorol (~legorol.s@cpc8-sgyl28-2-0-cust43.sgyl.cable.virginmedia.com)
15:48.26*** join/#wowace Veight` (Veight@c-24-245-39-79.hsd1.mn.comcast.net)
15:48.58*** join/#wowace Mihau (~asmith@69.73.16.202)
15:50.14Repo10autoraid: 03Axodious * r12 / (2 files in 1 directory): Fix embeds, attempt 2.
15:50.26Axodiousthink i'm starting to get the hang of this ;o
15:51.16Ackisok I'm back what's up?
15:51.46Axodiousi mucked up one of my commits, put the wrong number... but i just comitted another change cause i;m bad at embeds still
15:55.45Axodiousok so for libs ive got libtourist, libstub and libbabble-zone... my addon itself uses libstub (to load libtourist) and libtourist. libtourist needs libbabble-zone, so i have all of these as embeds for my addon. is that correct?
15:56.14Axodiousif a lib needs another lib to run i need to include that as if my addon requires it too?
15:56.26Repo10pokedex: 03stencil * r106 / (5 files in 2 directories):
15:56.27RepoRemoved code related to mount speeds. Ground+Air mounts like headless horseman's are now also considered Swimmers for their useful ability to let you transition right out of the water into flight.
15:56.46*** join/#wowace Baraius_ (~bhuddlest@150.105.84.5)
15:56.52AckisAxodious: you aren't supposed to have to, but I always do
15:57.10Axodiouswhat are you suppose to do then?
15:57.21Ackistake a look at arl's .pkgmeta and embeds.xml for example
15:57.50AckisI think the hard line is that you don't need to embed libstub/cbh as libraries have that, but I always ran into issues so I embedded it
15:58.07Axodiousyeah that's why i just did it
15:59.29ElkanoI'd also say embed/load everything
16:00.36*** join/#wowace newbie (~ckknight@69.73.16.202)
16:00.51Ackisnevcairiel: can you poke Kaelten about that repo I PM'd you about when he shows up, I need to go to the vet hosptial soon
16:01.26*** join/#wowace DarkerAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
16:03.46*** join/#wowace MindWorX` (~Nikolaj.M@188.176.197.82)
16:04.08*** join/#wowace profalbert (~profalber@91-113-14-239.adsl.highway.telekom.at)
16:04.10Axodiousso it's normal to have these libs that i'm embedding also in the dir of the library that needs it (it's ok to be bloated like that)?
16:04.18Axodiousok/normal
16:08.37Parnici wouldn't worry about a few kb worth of libs sitting on a disk that likely holds hundreds of gigabytes :P
16:09.00Axodiousjust curious ;p
16:13.57Axodiouswth, stupid darkmoon fair personality test marked me as a druid
16:15.01durcynthere's still time to kill yourself Axodious
16:15.42*** join/#wowace Ingela (~Ingela@90-230-169-130-no35.tbcn.telia.com)
16:17.54Repo10autoraid: 03Axodious 042.2beta * r13 : Tagging as 2.2beta
16:18.17*** join/#wowace Funkeh` (~funk@82.111.114.146)
16:18.17*** join/#wowace Funkeh` (~funk@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
16:18.17*** mode/#wowace [+o Funkeh`] by ChanServ
16:22.41Repo10ice-hud: 03Parnic * r788 modules/PlayerInfo.lua:
16:22.42Repo- fixed configuration mode error in the player info module when the player had weapon buffs applied (ticket #104)
16:24.34CrazyBennyis there some addon, that displays the quest info from worldmap on zone map?
16:25.38ZasurusI don't know of one but there are map addon's like Mapster that can make the world map resizable (like down to zone map size) ;)
16:27.56CrazyBennyyeah, but the smaller map doesnt seem movable :(
16:28.13ZasurusThey are
16:28.22ZasurusEven the smaller standard map is movable
16:28.27*** join/#wowace stolenlegacy_ (~stolenleg@chello084115137250.5.graz.surfer.at)
16:28.29ZasurusYou need to enable it in the settings
16:28.33*** join/#wowace Slayman (~dejhap08@asaru.net)
16:28.34*** join/#wowace stolenlegacy_|la (~stolenleg@chello084115137250.5.graz.surfer.at)
16:28.45Hati~api Version
16:28.46purl!api Version
16:28.46lua_botDocumentation for '_VERSION' can be found at http://www.lua.org/manual/5.1/manual.html#pdf-_VERSION
16:28.47ZasurusFor standard blizz map anyway
16:29.01CrazyBennyZasurus: doh, I suck :p
16:29.07Zasuruslol
16:29.12nevcairiellol who taught purl that, thats pretty smart
16:29.15ZasurusAre you using mapster?
16:29.36CrazyBennyyep
16:30.14ZasurusThen look in the options it's there also. (sorry I don't have wow open right now and also don't have mapster at the mo as I use Carbonite)
16:30.31CrazyBennyyeah, foudn it:)
16:30.39Zasurus:-)
16:33.47*** join/#wowace Yssaril (~kvirc@99-57-32-25.lightspeed.cicril.sbcglobal.net)
16:35.14*** join/#wowace MoonWitch|Mobile (~Kelly@d54C5456C.access.telenet.be)
16:37.26*** join/#wowace koaschten (~koaschten@188-193-133-170-dynip.superkabel.de)
16:38.18*** join/#wowace ghli (~Ghli@netblock-68-183-229-234.dslextreme.com)
16:39.09Axodiousdo floors have anything to do with zone maps? or is it just instance/raid maps
16:39.27Zasurusyer dalaran
16:39.35Zasurusoh and org in cata
16:39.42ZasurusSo it is all maps :-P
16:39.58ZasurusMost zones don't have floors though.
16:41.46*** join/#wowace Slayman (~dejhap08@asaru.net)
16:44.13sylvanaar_worklol
16:44.28ZasurusSylvanaar_work?
16:44.40nevcairielAxodious: the test made me a druid too, but, i am!
16:44.44sylvanaar_workpurl's api version thing
16:45.11Zasurusoh it corrected Hati! Cool
16:45.36nevcairiel~factinfo api (.*)
16:45.36purlnevcairiel: there's no such factoid as api (.*)
16:45.40nevcairielhm
16:45.42nevcairielwhat was its syntax
16:45.52Hati?
16:45.56Slayman~help factinfo
16:46.01nevcairiel~factinfo api (.+)
16:46.01purlnevcairiel: there's no such factoid as api (.+)
16:46.12sylvanaar_work~api
16:46.24sylvanaar_workit might be a script
16:46.38nevcairielnah, its easy enough to make factoids with parameters
16:46.42nevcairieljust have to remember the syntax
16:46.58nevcairiel~help
16:47.12Hati~8ball
16:47.13purlACTION rolls the eight ball and gets: Reply hazy, try again
16:47.35Axodioushmmm
16:47.52Hati~Grum
16:47.58ZasurusAxodious: What you trying to do?
16:48.00nevcairiel~help literal
16:48.07Hatilooking if his host is in here
16:48.11Hatior me did :x
16:48.27Axodiouswell i've got my addon that converts to raid when you're within .1 map coords of a raid entrance
16:48.40Axodiousi use libtourist to get the entrance coords, but it doesn't contain floors
16:48.44Axodiouswhich is fine... for now
16:49.03Axodiousbut if at some point they put a raid entrance on a different floor in a map i could run into problems
16:49.26ZasurusCan't you just convert to raid when you are in a raid instance?
16:49.44Axodiousyou can't enter a raid unless in a raid group
16:50.25ZasurusArr I see! Sorry thought you ment your addon changes modes not it changes your group to raid :-)
16:50.58ZasurusYou could add exceptions for any raid's that are on another floor in the future (asuming libtourst doesn't start including floors when that happens)
16:51.17Axodiousyeah i was thinking that, would probably help update libtourist
16:51.37ZasurusYer would make more sence if you did that. Then everyone benerfits ;-)
16:51.45sylvanaar_work~factinfo sylvanaar
16:51.45purlsylvanaar -- last modified at Fri Sep  3 03:30:59 2010 by Sliker!~ponies@5ad8b95e.bb.sky.com; it has been requested 10 times, last by Caleb|, 3d 1h 38m 55s ago.
16:51.53Axodiousbut until it comes to that it works atm ;o
16:51.59sylvanaar_workhow do you print it
16:52.07Slikerthat was a long time ago
16:52.10Slikeri can't remember what i did
16:52.28Slikeri think i fixed a typo
16:52.29sylvanaar_work~literal sylvanaar
16:52.29purl"sylvanaar" is "<reply>ERROR: stack overflow.  JK LOL."
16:52.44Slikerok no idea
16:53.08Caleb|~sylvanaar
16:53.08purlERROR: stack overflow.  JK LOL.
16:53.35sylvanaar_work~literal api
16:53.58sylvanaar_work~literal api <.*>
16:53.58purl!api <.*>
16:53.59lua_botCould not find a match for '<.*>'.
16:54.07sylvanaar_workcute
16:56.16nevcairiel~factinfo api (.*?)
16:56.16purlthere's no such factoid as api (.*?), nevcairiel
16:56.19nevcairielhrmpf
16:59.52nevcairiel~factinfo api .*?
16:59.52purlnevcairiel: there's no such factoid as api .*?
17:00.00nevcairieloh well, i give up
17:00.33Axodiousif i want only 1 arg from a string of args do i have to make it a variable?
17:01.10Axodiousie: function returns 3 args, i only want the info from arg1
17:01.21nevcairieljust ignore the other 2
17:01.41Axodiousignore?
17:01.46nevcairiellua> function meh() return 1,2 3, end; local muh = meh(); return muh
17:01.48lua_botnevcairiel: luabot:1: 'end' expected near '3'
17:02.03nevcairiellua> function meh() return 1,2,3 end; local muh = meh(); return muh
17:02.03lua_botnevcairiel: 1
17:02.19nevcairieljust don't care about the two extra :p
17:02.33Axodiousbut you're still setting a variable there
17:02.49nevcairielfor the first return, which you said you want
17:03.00Axodiouscould you just do return 1 without making it a variable?
17:03.13*** join/#wowace Humbedooh (~Humbedooh@unaffiliated/humbedooh)
17:03.13nevcairiel..?
17:03.38Axodiouslua> function meh() return 1 end;
17:03.38lua_botAxodious: No output
17:03.56nevcairielmeh was just the example function with multiple return values
17:04.19Axodiousin the thing i just did i'm looking for that to return 1
17:04.25Axodiouswithout setting it as a variable
17:04.51Axodiouslua> function meh() return 1 end; return meh();
17:04.52lua_botAxodious: 1
17:04.57Axodiousthat make sense?
17:05.10nevcairielyou don't make much sense, no
17:05.26nevcairielIf its the first return value you want, just ignore all others
17:05.36Axodiousi don't need the variable, it's a one time comparison
17:06.39nevcairiellua> function ExampleWithMultipleReturnValues() return 1,2,3 end; if ExampleWithMultipleReturnValues() == 1 then print("Hooray") end
17:06.39lua_botnevcairiel: Hooray
17:06.43nevcairiellike that? :p
17:07.29Repo10libmath: 03Humbedooh * r6 LibMath.lua: added smelly version control
17:07.32nevcairielLike i said, if the first argument is what you're interested in, in 90% of the cases you can just ignore the others
17:07.54nevcairiels/argument/return value/
17:08.26Axodiousmapfiles:Distance(GetCurrentMapAreaID(), 0, ArCoordX, ArCoordY, e_x, e_y) 1 < 500 <-- function returns 3 args, will that comparison mean that arg1 < 500
17:08.45nevcairielyes
17:08.47Axodiousk
17:08.54Axodiousthat's what i meant
17:08.56nevcairielalthough that 1 in there seems rather wrong
17:09.02Axodiousit is
17:09.04Axodiouslol
17:09.46nevcairielnote, however, that local variables are not really considered bad, using them can greatly improve readability, and will not really slow stuff down
17:10.57Axodiousspeaking of local variables here's a noob question: if you do local var = blah; do you need to include "local" if you change it later?
17:11.08Axodiousor can you just do var = change
17:11.08nevcairielno
17:11.15nevcairielits a one time declaration
17:11.17Axodiousk
17:11.24nevcairieldoing local again would create a new variable
17:11.34nevcairielwhich isnt that bad, just not necessary
17:12.18Axodiousyeah, just trying to understand so i don't do something silly like local every var change
17:14.29*** join/#wowace ckknight (~ckknight@WoWUIDev/WoWAce/CurseStaff/CurseForge/ckknight)
17:14.29*** mode/#wowace [+o ckknight] by ChanServ
17:24.09*** join/#wowace Nickenyfiken (~Miranda@c83-255-103-187.bredband.comhem.se)
17:24.58Axodioushttp://paste.wowace.com/2883/ how bad am i doing?
17:26.44Repo10autoraid: 03Axodious * r14 / (3 files in 1 directory): Use LibMapData for distances.
17:27.55Humbedoohseems uhm..fine
17:27.57CrazyBennyAxodious: you should move the local variables inside Autoraid_OnUpdate, if you use it only there
17:28.41Axodiousk
17:28.53CrazyBennynot an issue, just improves readability
17:29.59Humbedoohdoes more than that actually
17:30.07Bapsdata encapsulation is also good practice in general (keep the scope as small as practical)
17:30.20Humbedoohit resets e_x, e_y
17:32.36Axodiousi left partymembers, e_x, e_y before the function
17:32.41Axodiousso it doesn't reset those
17:38.29*** join/#wowace Srosh (~Srosh@d057212.adsl.hansenet.de)
17:43.28Repo10autoraid: 03Axodious * r15 / (3 files in 1 directory): Clean up, fix more embeds.
17:46.23*** join/#wowace KnThrak (~KnThrak@ip-109-91-140-83.unitymediagroup.de)
17:53.00Repo10autoraid: 03Axodious * r16 Autoraid.lua: Move OnUpdateThrottle before Autoraid_OnUpdate.
17:53.01Slaymanwhat's teh link to the newer eu armory?
17:53.48TalrynIs there any documentation on the return from GetGuildRosterLastOnline() and how to use the returned value to compute the actual last online time?
17:54.08Repo10autoraid: 03Axodious 042.3stable * r17 : Tagging as 2.3stable
17:54.25*** join/#wowace rikai (~rikai@cpe-184-153-144-194.maine.res.rr.com)
17:54.25*** join/#wowace rikai (~rikai@unaffiliated/rikai)
17:55.07durcyn!api GetGuildRosterLastOnline()
17:55.08lua_botGetGuildRosterLastOnline: Returns the amount of time since a guild member was last online (http://wowprogramming.com/docs/api/GetGuildRosterLastOnline)
17:55.44TalrynMultiplying the year (assuming 365), month (assuming 30), day, and hour to compute the total number of seconds and subtracting it from time() gets close but it doesn't look perfect.
17:56.11TalrynI believe the Last Updated field on the armory is the last logon and I'm trying to match up with that.
17:56.54durcynlook at Blizzard_GuildUI
17:57.24Humbedoohuse the date() function for that
17:57.30TalrynI did look at their code but they are only printing out the last online in the format the return such as "1 year", "4 months", etc.
17:57.41durcynalso, GetDate() - GetGuildRosterLastOnline()
17:57.46durcynetc
17:58.32Talryn!api GetDate()
17:58.32lua_botCalendarGetDate: Returns the current date (in the server's time zone) (http://wowprogramming.com/docs/api/CalendarGetDate)
17:59.20durcyner GetTime, fuck me
18:00.34Humbedoohlocal years, months, days, hours, t = GetGuildRosterLastOnline(i), date('*t'); t.year, t.month, t.day, t.hour = t.year-years, t.month-months, t.day-days, t.hour-hours; local timestamp = time(t)
18:00.41Humbedoohtada
18:01.20*** join/#wowace sylvanaar_work (~sylvanaar@tut.qvssoftware.com)
18:02.31Humbedoohand then you could do print(date("%c", timestamp)) to print the time they were last seen
18:04.25Humbedoohif fx. the getguildrosterblabla returned  1,2,4,17
18:04.32Humbedoohlua> local y,m,d,h,t = 1,2,4,17, os.date('*t');t.year, t.month, t.day, t.hour = t.year-y, t.month-m, t.day-d, t.hour-h;local timestamp = os.time(t)return os.date("%c", timestamp)
18:04.32lua_botHumbedooh: Tue Sep 15 00:58:18 2009
18:04.53SlaymanGetMastery() it returns your masteryvalue
18:05.07Humbedoohthat'd be today, 1 year, 2 months, 4 days and 17 hours ago
18:06.08Hatidoes anyone know if blizzard plans to limit Justice Point takeover to 85 ?
18:07.57nevcairielits capped at 4000 already
18:08.34Hatik
18:08.36Hatithx
18:10.26Axodiousso, my addon hasn't been approved yet. but i have my repo setup... the help pages i've been reading say you need to be approved first
18:10.52nevcairielonly thing approval changes is to get your stuff to curse.com
18:11.06Axodiousah so this stuffs outdated then
18:12.11Repo10atlasloot-enhanced: 03Lag123 * r3003 / (5 files in 2 directories):
18:12.12Repo- Add a new option that allows to use the standard GameTooltip instead of the custom AtlasLootTooltip
18:17.21durcynno, it's intentionally misleading
18:17.41Repo10hotcandy: 03Nevcairiel 041.6.3 * 077162a /: [new tag] Tag as 1.6.3
18:17.50Axodiousthen the people who made them are jerks!
18:17.53Axodious:P
18:19.23*** join/#wowace Odlaw (~ozzy@c-98-245-3-204.hsd1.co.comcast.net)
18:22.12YssarilAxodious: its so that people don't spend ages working on their project just to find out it won;t be approved :P
18:23.29*** join/#wowace Mera (~WAAAGH@5.20.93-79.rev.gaoland.net)
18:24.13durcynnot approved, that's a good one
18:24.25nevcairielit just gets shoved to curseforge
18:27.02Repo10xperl: 03Zeksie * r497 / (5 files in 4 directories):
18:27.03RepoPrototype for reworked Paladin Holy Power indicators. Player buffs for paladin back on the player frame where they belong instead of hanging in middle of nowhere. Some indicator marks along bottom left of player frame to show holy power. Constructive feedback please.
18:34.27Repo10xperl: 03Zeksie * r498 Images/XPerl_ComboTick.blp: Added missing image file.
18:39.58Talrynlua> local y,m,d,h,t = 0,3,13,7, os.date('*t');t.year, t.month, t.day, t.hour = t.year-y, t.month-m, t.day-d, t.hour-h;local timestamp = os.time(t)return os.date("%c", timestamp)
18:39.58lua_botTalryn: Fri Aug  6 11:33:44 2010
18:40.41TalrynHumbedooh: I checked that first and it doesn't match up with what GetGuildRosterLastOnline() returns.
18:40.53*** join/#wowace p3lim (~p3lim@200.41.202.84.customer.cdi.no)
18:40.54TalrynI believe the correct answer for what I provided is Aug 8, 2010.
18:41.16TalrynThe closest I can get is by multiplying it out
18:41.18HumbedoohTalryn: don't use lua_bot for that
18:41.31Humbedoohlua> os.date("%c")
18:41.31lua_botHumbedooh: Fri Nov 19 18:35:17 2010
18:42.02Humbedoohand no, it would be aug 6
18:42.08Humbedooh13 days ago
18:42.14Humbedoohthat's the 6th
18:42.51Humbedooh19th of november minus 3 months and 13 days = 6th of august
18:43.50Humbedoohthere's absolutely nothing wrong with it :)
18:44.03TalrynI'm trying to make it work in game.  I don't truly know the last time someone logged on so I was looking at the armory.  I believe the Last Updated is the last logon time.
18:44.28Humbedoohnot necesarilly
18:44.37Humbedoohlast update might just be the last time it needed to update
18:44.45TalrynChecking it against my characters, it looked to be accurate.
18:44.50Humbedoohif you log on, do nothing and log off, why update it
18:45.45Humbedoohor it may be that it gets updated because of a server restart or whatever
18:46.57Humbedoohthe bottom line is; the snippet I wrote works perfectly. If anything is wrong, then it's GetGuildRosterLastOnline() that returns bad info
18:48.08TalrynThat could be.  I'm trying to figure out how Blizzard thinks it should work.
18:48.23TalrynI'm thinking it isn't intuitive from what testing I could do.
18:48.28*** join/#wowace Veight` (Veight@c-24-245-39-79.hsd1.mn.comcast.net)
18:53.33PredicateUh...your code doesn't work perfectly, Humbedooh.
18:53.44Humbedoohsure it does ;<
18:53.50PredicateGetGuildRosterLastOnline() has multiple returns; if you put it before date, you only get the first.
18:54.10Humbedoohye ye, that was just an initial mockup
18:54.25Humbedoohyou'd split it up ofc
18:54.34PredicateSo by "perfectly" you meant...
18:54.46HumbedoohI meant the code I sent to lua_bot
18:55.06sylvanaar_workyou know bliz has a time formatting function you can use
18:55.22sylvanaar_workidk if thats useful for what you are doing
18:56.31Humbedoohlocal t,y,m,d,h = os.date('*t'), GetGuildRosterLastOnline(); t.year, t.month, t.day, t.hour = t.year-y, t.month-m, t.day-d, t.hour-h;local timestamp = os.time(t)return os.date("%c", timestamp)
18:56.36Humbedoohhappy now, Predicate? :|
18:57.00PredicateThat should work. :)
18:57.49Humbedoohrequires cookies
18:58.26Predicateoffers chocolate chip or oatmeal raisin.
18:59.33Humbedoohponders...
18:59.50HumbedoohI shall go for the oats and raisin
19:00.02PredicateInteresting. Nobody ever takes those!
19:00.52Humbedoohyou know, original chocolate chip cookies have oats in them as well~
19:01.19durcynoatmeal, what are you, 97 years old
19:01.22Repo10pokedex: 03stencil * r107 globals.lua: added some cata mounts to the table
19:01.36Humbedoohoi, don't dis the oats!
19:02.22*** join/#wowace Nickenyfiken (~Miranda@c83-255-103-187.bredband.comhem.se)
19:05.21Axodioussafe to use WORLD_MAP_NAME_UPDATE when the zone changes (not subzone)?
19:07.47*** join/#wowace _EvilGrin_ (~Geoff@87-194-195-47.bethere.co.uk)
19:11.53Slaymanwhy is the unitID Vehicle the only spelled with a capital 1st letter? according to prog in wow 2nd ed?
19:12.10*** join/#wowace Aeyan (~pancake@cpe-024-163-016-179.triad.res.rr.com)
19:12.16*** join/#wowace Dashkal (~dashkal@WoWUIDev/Nexus/dashkal)
19:18.22PredicateSlayman: They aren't case sensitive, so it's probably just a typo.
19:18.59SlaymanPredicate: that is good to know :D case sensitivity is always dangerous for me
19:26.31Hati!api GetSpellCooldown
19:26.31lua_botGetSpellCooldown: Returns cooldown information about a spell in the spellbook (http://wowprogramming.com/docs/api/GetSpellCooldown)
19:30.00*** part/#wowace Slayman (~dejhap08@asaru.net)
19:31.45*** join/#wowace Kaelten (~Kaelten@WoWUIDev/WoWAce/WoWIFA/CurseStaff/kaelten)
19:31.45*** mode/#wowace [+o Kaelten] by ChanServ
19:32.08*** join/#wowace cralor (~cralor@c-98-217-6-30.hsd1.ma.comcast.net)
19:47.52Repo10grim-reaper: 03Zeksie * r90 / (4 files in 1 directory): Fix DewDrop for now. Will remove it or something later.
19:50.27*** join/#wowace Silker (~ponies@5e03d3b0.bb.sky.com)
19:52.43durcynugh, why is there no combat log event for Impending Doom
19:56.14*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
20:02.19Axodiousis there a way to figure out what part of your addon is causing the most cpu time?
20:04.02Mirrormntwo ways
20:04.16Mirrormna) split it into modules and put them into separate addons
20:04.34Mirrormnb) disabled parts of it at a time and see the relative impact
20:04.39PredicateYou can time various operations, or you can turn on CPU profiling and check the usage of any given function/event/frame.
20:05.01Mirrormnyou can't check the usage of any given function/event/frame... can you?
20:05.19PredicateYep.
20:05.34Predicate!api CPUUsage
20:05.34lua_botFound 7 possible results for 'CPUUsage': GetFunctionCPUUsage, UpdateAddOnCPUUsage, GetFrameCPUUsage, GetScriptCPUUsage, ResetCPUUsage, GetAddOnCPUUsage, GetEventCPUUsage
20:06.47Mirrormnwell shiiiiiiii
20:06.50Mirrormniiips
20:06.58Repo10autoraid: 03Axodious * r18 Autoraid.lua: Attempt one to optimize CPU usage.
20:07.46nevcairieldont trust those functions
20:07.47Repo10cooldownicons-revamped: 03xhatix * r22 / (5 files in 2 directories): fix ticket #14
20:07.48Repofix various bugs mainly related through new GCD fix/unfix stuff (cd resets like Lava Surge, reduces like Feedback)
20:07.51nevcairielyou need to know how to interpret them
20:08.14PredicateThey should be useful for relative comparisons.
20:08.26Repo10cooldownicons-revamped: 03xhatix 04r23-release * r23 : Tagging as 23-release
20:08.38nevcairielnot necessarily
20:18.20*** join/#wowace Slayman (~dejhap08@port-17811.pppoe.wtnet.de)
20:22.26*** join/#wowace mojosdojo| (~mojosdojo@p4FEFF2C6.dip.t-dialin.net)
20:24.07koaschtenit's totally awesome to do cpu profiling nevcairiel ... ace is always at fault *cough*
20:24.32nevcairielkoaschten: eat some m&ms and relax =)
20:24.49koaschtenhavent even opened a bag yet :/
20:24.56koaschtentoo much pizza
20:25.50Slaymanmine aren't here yet, strangely enough they were sent some 26h ago
20:26.00nevcairielgot mine today
20:26.07Hatimeh
20:26.15Megalonyour m&ms
20:26.17Megalonor your pizza?
20:26.22koaschtennevcairiel http://goo.gl/i6RVI
20:26.32Slaymanbut I just finished my dinner taking the form of a delicious Subway Sammich
20:26.43nevcairieli have the same amount, just didnt take a pic
20:26.51Slaymankoaschten: holy shit they are huge
20:27.00Slaymanlol koaschten: expiry date?
20:27.02nevcairielactually, that just looks like 8
20:27.04koaschten10 bags x 335g
20:27.04Adysnevcairiel!
20:27.08nevcairieli have 10 :p
20:27.31nevcairielmust have some hidden on the pic
20:27.36AdysYou stole them from me. :(
20:27.46koaschtenyup, look closely at the first 3 left front row ;)
20:27.50koaschten2 hiding centered behind those
20:28.03pompywhats this m&m craze?
20:28.24Slaymanpompy: amazon practically gave them away for free
20:28.48Slaymanwhile not free per se ridiculously cheap
20:28.50*** join/#wowace the-golem (~Darrin@c-98-255-201-176.hsd1.ca.comcast.net)
20:29.05koaschtenpompy amazon was selling 2 bags of 335g for 3.98 when you have to shop them at the supermarket at 2.99 each
20:29.26koaschtenand 10 bags -> 5x 3.98 -> ~20 so no shipping+handling
20:29.36nevcairielprime ftw
20:29.41nevcairielwho cares about shipping
20:29.44koaschteni didnt pay either ;)
20:29.52koaschteneven though it only was 19.90 and 20 is the cutoff
20:29.58SlaymanI payed 20bucks for prime!
20:30.14Slaymanit's awesome and it's worth it
20:31.34nevcairielindeed is
20:31.38nevcairieli order so much at amazon
20:32.09Slaymanwhen I order shit, it's amazon
20:32.10nevcairielyou also dont worry about shit like collecting stuff until you order
20:32.16nevcairielyou just buy it
20:32.29Slaymanfurthermore you one-click buy it
20:33.46koaschteni dont buy dvds, i rarely buy more than 2 books a year... what should i buy regularly at amazon?
20:33.55Slaymankoaschten: everything
20:34.20Slaymanand would you kindly tell me the expiration date on the m&m's ?
20:35.09koaschtenwhich of the 10 bags?
20:35.20pompym&m doesnt put exp dates on their shit afaik
20:35.21Slaymanjust any one
20:35.29koaschtenJuly next year ;)
20:35.30Slaymanthey have to in germany
20:35.36koaschtenpompy of course
20:35.40koaschtenthey have to in germany
20:35.54koaschtenif you can eat it, it has to have an expiry date
20:35.56Slaymangood, 20 bags should die by then
20:36.06koaschteni calculated with 1 bag / week
20:36.13koaschteni hope i dont have to re-order this year
20:36.19Slaymankoaschten: ROFL
20:36.22sbuwtf :p
20:36.27Megaloneven chocolate has expiration date ;o
20:36.35sbui also got my delivery today :p
20:36.37sbuonly 2 packs ;)
20:36.39koaschtenseriously, 50g chocolate a day isnt much?
20:36.48Slaymanin whereever pompy is from shit doesn't expire
20:37.15sbu17.07.2011
20:37.20*** join/#wowace Talryn1 (~Talryn@mobile-166-137-138-201.mycingular.net)
20:37.20SlaymanIf I look at the M&M's for 5mins a day I gain weight
20:37.43Megalonthen just eat them
20:37.45sbuis the expiration date here
20:37.47Megalonso you don't have to look at them
20:37.53Megalondurr
20:38.04sbuSlayman: and yea, prime IS awesome :p
20:39.12Slaymansbu: some time ago I called amazon asking how I can gift Prime to a dear friend of mine. She said, "Just add him to yours as some cousin" rofl since then all my slots are filled with friends and family :D
20:39.21pompySlayman: maybe im wrong but i could never find one on the packages
20:39.24sbuoh..
20:39.37sbuSlayman: so you dont need to share one address?
20:39.41koaschtenI don't have a bowl that can hold all my M&Ms :(
20:39.45sbuthats cool actually
20:39.48koaschten-> http://www.wolframalpha.com/input/?i=3.35+kg+of+m%26m's scroll down to volume
20:39.58sbulol
20:40.19*** join/#wowace Silker (~ponies@5e03d3b0.bb.sky.com)
20:40.22Slaymanthey have to have an amazon account and you have to know some personal shit about then(birthday me thinks) that's all that's needed (oh they have to know some personal shit about you as well)
20:40.35nevcairiel4 liters of m&ms, eh
20:40.41sbumhh.... thats pretty cool then
20:40.47sbukoaschten: thats just sick :p
20:41.01sbu10 bags.... *sigh* :)
20:41.16pompyis this a deal only in germany?
20:41.22sbui think so, yea
20:41.24nevcairieli bet it expired now anyway
20:41.26nevcairielbut yeah
20:41.57Slayman94g of dietary fiber in 3 kg of M&Ms ^^
20:41.57sbustil available nevcairiel
20:41.59*** join/#wowace Ketho (~Ketho@ip565063bd.direct-adsl.nl)
20:42.14nevcairielwtb dps on beta realms in lfd queue for stonecore-hc .. you dont expect  to wait 10 minutes when queueing with tank and heal in a group
20:42.32koaschtennevcairiel my beta client isnt updated :/
20:42.44Slaymanand I don't have Beta
20:42.48sbuand your gear sucks!
20:43.01Slaymanbut yes you should requeue as tank and heal something's wron
20:43.01Slaymang
20:43.03nevcairiel359er premade ftw
20:43.09koaschtennope i have a 359 premade ;)
20:43.09sbuoh...
20:43.40koaschtennevcairiel my client is updated ... logging
20:43.53sbueh, nevcairiel is alliance
20:43.58nevcairieli am
20:44.01sbufail then :p
20:44.06Slaymanepic fail
20:44.33koaschtenyes and? did they deactivate the random char change/faction change stuff?
20:44.40nevcairielmaybe you get lucky
20:44.44koaschtenhmm awesome, only faction change is on a lvl 80 -.-
20:44.48sbu:p
20:44.49nevcairielheh
20:44.53koaschtenwith 5 premades on the account
20:44.55koaschten>:()
20:46.09Slaymancan't log in to PTR stoopid
20:47.01koaschtennope sry nevcairiel
20:47.11Slaymanmmh Kinect on PC looks mighty entertaining for controlling shit
20:47.54nevcairielno worries
20:47.56nevcairielbut its weird
20:47.59nevcairielno dps in the queue?
20:48.14Slaymanhttp://www.youtube.com/v/M-wLOfjVfVc
20:48.35*** part/#wowace CrazyBenny (s_m@a02-0602c.kn.vutbr.cz)
20:48.44koaschtenhomerj is casting sc2 tournament @ own3d.tv
20:48.44PredicateI can't wait to see someone play WoW with that.
20:48.58*** join/#wowace CrazyBenny (s_m@a02-0602c.kn.vutbr.cz)
20:50.07Slaymandude german commentary on SC2? I think not
20:50.09Repo10drag-em-all: 03emelio 07master * 0.9.3 / (2 files in 1 directory): [+1 commit] Added GM Ticket Frame, Resurrect Frame, Teleport to Graveyard Frame Removed GlyphFrame error message
20:50.10koaschtenSlayman http://www.youtube.com/v/4ROVq5qY9Zo
20:50.39Repo10drag-em-all: 03emelio 040.9.3 * adcc3be /: [new tag]
20:50.40Repo- Added GM Ticket Frame, Resurrect Frame, Teleport to Graveyard Frame
20:50.41*** part/#wowace CrazyBenny (s_m@a02-0602c.kn.vutbr.cz)
20:50.41Repo- Removed GlyphFrame error message
20:50.54HatiSlayman: why not :( ?
20:50.55Slaymanit's a mac koaschten that's bd
20:51.35SlaymanHati: It feels wrong english client german pronounciation of engl. units/structures etc.
20:52.01*** join/#wowace cyndis (cyndis@lakka.kapsi.fi)
20:52.31durcynich bin ein marauder
20:52.43HatiIck bin der Thor
20:53.11Hatiif they can pronounce them it's fine :/
20:53.13Slaymanit's like "how do you translate: GET TO THE CHOPPA!" answer: don't
20:53.30Hatihttp://www.youtube.com/watch?v=tMgnOZTe_64
20:53.52Hatilovely beta <3
20:54.04SlaymanI much rather enjoy watching like lore or HDStarcraft or Husky
20:54.24Megalon:D:D:D
20:54.29Megalonenjoying hd and husky
20:54.34Megalonyou also cut yourself
20:54.41Hatiwell i think i got what you mean
20:54.42Megalon? :<
20:54.56Hatigerman ones trying to figuring out while casting how it is pronounced correctly ?
20:55.09sbuhuh? :o
20:55.20Megalonthe german community is huge
20:55.21*** join/#wowace Adys (~Adys@unaffiliated/adys)
20:55.31Megalonthat's why there are german casters
20:55.34Hatinoticed it ones :D möröder, marader, etc.
20:55.39durcynthey also like to shit all over each other, that doesn't make it a good idea
20:55.41Hatii know iam german too :x
20:55.43Slaymanso was the 3rd Reich it wasn't good
20:55.47Megalonand most englisch ones except people like day9
20:56.07Megalonwould be dead happy if they had viewer numbers like homerj e.g. ;c
20:56.45koaschtenSlayman loosing an argument against a german, throw the nazi gauntlet, YOU FAIL.
20:57.04Slaymankoaschten: lol junge was gehtn? ich glaub ich spinne
20:57.36Megalongodwyn's law never gets old
20:57.51Slaymanneither does occam's razor
20:58.24*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
20:58.45Slaymankoaschten: by that I meant I'm german too, it doesn't mean I enjoy german translation/synchronisation of anything really
20:58.59Hatiis there any fix for firefox missing statusbar yet ??
20:59.22*** join/#wowace Jyggaa (Jygga@unaffiliated/jygga)
20:59.29SlaymanHati: Statusbar missing? the bottom one? didn't experience that
20:59.37Hatiyea
20:59.42Hatiserious buisness
21:00.03Slaymanwhere'd you lose it? you should look there first
21:00.05Hati4.0b7
21:00.26Hatithe evil updaters have eaten it.
21:00.30Hatistole it from me
21:00.37Slaymanah beta
21:00.47Slaymanso it doesn't really matter at all
21:03.08Slayman4.0.3a is sporting the new pets! HOLY shit! need to prepare for engaging the seagull! and some monkey and some bug damn it really is closing in that cataclysm thingy
21:05.21Slaymanand we possibly should reset our hearthstone someplace else
21:07.35durcyns/possibly/definitely/
21:07.51durcyndalaran will be a ghost town in a week
21:08.20Slaymanmmh well except if you raid NR content
21:08.34durcynrings and portals still work
21:08.49durcynjust not outbound, so screw that.
21:08.59Slaymanright, maybe I can make money as a mage with that change
21:11.05Hati~api IsSpellOverlayed
21:11.05purl!api IsSpellOverlayed
21:11.05lua_botIsSpellOverlayed: This function is not yet documented (http://wowprogramming.com/docs/api/IsSpellOverlayed)
21:11.45Hatiahar
21:11.58Hatifound a new function
21:12.13Hatior not
21:16.50*** join/#wowace frontendldr (~queue@207-118-141-37.dyn.centurytel.net)
21:17.47sbukoaschten: wtf is "DAEHAE" :/
21:18.17Mirrormndoes anyone else/has anyone else?
21:18.18koaschtenno idea
21:18.32Mirrormnor maybe does anyone else have anyone else...
21:18.49Mirrormnor perhaps derrr aerr err herr aerr err
21:20.25sbuwtf?
21:20.36sbuits german umlaut "ae" :p
21:21.15Humbedoohdähä?
21:21.28*** join/#wowace mono|strigoy (~postid08@89.112.4.92)
21:21.30sbuyup
21:22.06Humbedoohyou sure it's umlaut and not diaeresis? :p
21:23.34Hatiä
21:29.53*** join/#wowace Ketho (~Ketho@ip565063bd.direct-adsl.nl)
21:32.57*** join/#wowace Dashkal (~dashkal@WoWUIDev/Nexus/dashkal)
21:33.03*** join/#wowace Sliker (~ponies@5e03d3b0.bb.sky.com)
21:33.54Repo10autoraid: 03Axodious * r19 Autoraid.lua: Optimize CPU usage attempt two.
21:37.05SlaymanCowboys and Aliens who'd have thought, me likee!
21:37.45sbuoh, i read about this, is it already out?
21:38.50*** join/#wowace Ketho (~Ketho@ip565063bd.direct-adsl.nl)
21:39.10Slaymantrailer fresh on imdb
21:39.17Slaymanlooked fun to me
21:40.03MirrormnI saw a trailer before harry potter
21:40.15MirrormnI was like "seriously, how does this ever get greenlit?"
21:40.29Mirrormnbut then I saw "red riding hood"
21:40.36Mirrormnand I was outraged 100x more
21:40.59*** join/#wowace Hirsute (~chatzilla@adsl-76-215-208-199.dsl.scrm01.sbcglobal.net)
21:41.04*** join/#wowace Hirsute (~chatzilla@WoWUIDev/Norganna/Developer/Hirsute)
21:41.47Mirrormn(Red Riding Hood is a movie by the director of Twilight involving - you guessed it - a vapid girl with a red cloak who falls in love with a werewolf)
21:41.47Slaymanthere was one RRH movie with sigourney weaver i think playing on the same "twist"
21:42.50PredicateSeriously?
21:42.58PredicateTwilight wasn't bad enough?
21:44.20Mirrormnexactly
21:44.23*** join/#wowace Draake (~kvirc@c-67-164-106-50.hsd1.ca.comcast.net)
21:44.44*** join/#wowace Kalroth (kalroth@d40aa277.rev.stofanet.dk)
21:44.56Mirrormn"herp derp twilight made tons of money, lets see just how gut-wrenchingly terrible we can make a movie and still get stupid teenage girls to pay us for it"
21:45.52Slaymanyou can't even fap to twilight, that's REAL bad
21:46.01Mirrormn>.<
21:46.02sbu:/
21:46.09Mirrormnyou could if you were gay, probably
21:47.25Slaymanare you all aware that in twilight the "becoming a vampire" thing is a metaphor for sex? that disgusted me a lot
21:47.40*** join/#wowace tekkub (~tekkub@WoWUIDev/WoWI/Featured/Dongle/GitHub/Tekkub)
21:47.40*** mode/#wowace [+v tekkub] by ChanServ
21:47.41Mirrormnbut yeah, basically the entire point of Bella's character is that both her physical appearance and personality are totally blank slates
21:48.04sbuyou are talking about those movies, thats gay actually!! :p
21:48.13Slaymanit's not
21:48.13Mirrormnoh no :(
21:48.19Mirrormnyeah it is
21:48.20SlaymanI watched them even
21:48.23MirrormnRule of Lady Gaga =/
21:48.26Slaymanthat was gay!
21:48.49Slaymanthat cunt's face disgusts me as well her nose in particular
21:49.13Mirrormnkristen stewart?
21:49.21AckisSlayman: no c word please
21:49.36*** join/#wowace Veight (Veight@c-24-245-39-79.hsd1.mn.comcast.net)
21:50.04durcynyeah, genitals don't even have faces
21:50.09sbuSlayman: well you watched it with a girl, right? so its boobies for you -> not gay
21:50.24durcynalternatively: ackis has that word on highlight because...
21:50.48MirrormnI could never have sex with a girl who liked twilight =/
21:50.57Ackisno durcyn I just have a script that does s/durcyn/c word/ :P
21:51.02Slaymanwomen genitalia have faces sometimes, pressed against them is more accurate
21:51.32durcynMirrormn: i tried it once, never again
21:52.21sbuwtf :p
21:52.44PredicateMirrormn: does that mean you're open to guys who like Twilight?
21:53.09PredicateBecause I'd imagine that to be even worse.
21:53.24*** join/#wowace Hjalte (~chatzilla@cpe.ge-0-2-0-835.arcnqu2.customer.tele.dk)
21:53.45Mirrormnthe better question is, would I rather have sex with a "normal" man or a girl who liked twilight
21:54.26MirrormnI think I'd go with the girl who liked twilight but it would be close
21:54.49sbuwtf...
21:55.16sbuwhats wrong with twilight girls? :p
21:55.29sbuas long as they dont make you watch this :p
21:55.29Mirrormnis that an abbreviation of "what the fuck" or "what to fuck"
21:55.56Hatithey bite
21:56.11Slaymanand that is all their mouths do
21:56.17Slaymanbesides yabbering
21:56.18PredicateNothin' wrong with a biter, as long as they respect your safe word...
21:56.23MirrormnI'm scared a twilight girl will want me to rip open her placenta with my teeth
21:56.40Mirrormncause that's what happens in twilight -.-
21:57.19sbuyou guys are scaring me even more than Fisker does...
21:57.58Hatifisker is not scary
21:58.12Mirrormnfisker is a bro of the highest caliber
21:58.18Hatihttp://pics.nase-bohren.de/not_your_father.jpg
21:59.39*** join/#wowace Jygga (Teq@unaffiliated/jygga)
22:01.01*** join/#wowace Caleb| (~caleb@fibhost-66-130-150.fibernet.hu)
22:03.01*** join/#wowace VonhintenHOME` (~Kiss@c-71-203-110-77.hsd1.fl.comcast.net)
22:04.18Slaymanlvl 71 until the shattering, that shouldn't be too hard I think
22:04.28Repo10autoraid: 03Axodious * r20 Autoraid.lua: Change how OnUpdate reacts, greatly improved CPU usage.
22:10.06Repo10autoraid: 03Axodious 042.4stable * r21 : Tagging as 2.4stable
22:10.07RepoCPU optimizations.
22:11.49Repo10cooldownicons-revamped: 03xhatix * r24 / (4 files in 2 directories):
22:11.51RepoNew functions: Glow(), UnGlow() - display/hide a glowing circle around the icon like blizzard did for Overpower, Revenge etc.
22:12.02Hatistarting now slay?
22:12.13Slaymanlvl 65 Hati
22:12.57Megalonmy next addon will HorseRanch
22:13.03Hatiso 6 levels in 18 days?
22:13.08Megalonand every tag will be stable
22:13.45Mirrormn-.-
22:13.51Slaymanit's next wednesday or the week after so something like 5-13 days
22:14.00*** join/#wowace Xalem (~xalem@82.245.3.64)
22:14.15MirrormnI love how much I hate you right now, Megalon
22:14.21Hatioh you mean 4.0.3a
22:14.29Slaymanthe shattering yes
22:14.47Hatiyeah the shattering is also known as cataclysm it-self :/
22:14.54Repo10zomgbuffs: 03thelibrarian * r187 ZOMGBuffs_SelfBuffs/ZOMGBuffs_SelfBuffs.toc:
22:14.55RepoRemove old Ace2 optdep from ZOMGBuffs_SelfBuffs (not needed anyway since it will always load after base ZOMGBuffs)
22:15.51*** join/#wowace RaydenUni (~rayden@adsl-69-231-125-178.dsl.irvnca.pacbell.net)
22:18.41SlaymanThe Cataclysm for me is the release of the damned expansion, the shattering is the patch which is called the shattering
22:19.02Axodiousthe shattering cataclysm?
22:19.03Axodious;o
22:19.10Hatithe book was called shattering
22:19.14Hatimy mistake
22:19.28*** part/#wowace KnThrak (~KnThrak@ip-109-91-140-83.unitymediagroup.de)
22:19.50durcyn65-71 is 3 hours, wtf
22:20.00Slaymanit is not durcyn
22:21.18*** join/#wowace Jyggaa (Teq@unaffiliated/jygga)
22:24.28Slaymanwill winamp Ever get to the point where it behaves like a normal application? stupid thing
22:29.49Slaymanplaying wow listening to Funk/Disco is really creating Bliss in between my ears
22:32.08*** join/#wowace MoonWitch|Mobile (~Kelly@d54C5456C.access.telenet.be)
22:32.25AeyanDunno, I've never found a music player I've been completely happy with.
22:32.30AeyanUsing foobar right now
22:33.08durcyni gave up and loaded everything into itunes years ago, it is horrible
22:33.27SlaymaniTunes the BANE of Agony
22:34.11starlonI've made it real simple. I don't listen to music.
22:34.24durcyni've noticed that the software slows down a bit with a 7TiB library, too
22:36.36Slayman7TB ?? I don't even have that much porn!
22:36.39*** join/#wowace Yoshimo (~Miranda@p549987B6.dip0.t-ipconnect.de)
22:37.26durcyn1300+ movies, 350+ tv shows, only 127G is audio
22:38.12AeyanI have iTunes because I have to
22:38.17AeyanBut I don't use it to play music, hehe
22:38.26Slaymanok that is more reasonable
22:39.03PrimerI had a friend ask me how hard it would be to write an addon that would behave like a custom lock/hunter pet summon button
22:39.22Primerwhich made me wonder if something like this didn't already exist
22:39.27durcynthe popout?
22:39.41PrimerBasically a button that would pop out and allow for it to be populated like a bar
22:39.45durcynipopbar is the closest thing that comes to mind
22:39.57durcynthough i use OPie for that sort of thing
22:40.15durcynit's certainly doable, though
22:40.25Primerwell, I had a feeling there'd be something that did this already
22:40.35Slaymanmake a table with cast vw,imp,felguard ... randomly select 1 and cast
22:41.05*** join/#wowace Funkeh` (~funk@82.111.119.87)
22:41.05*** join/#wowace Funkeh` (~funk@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
22:41.05*** mode/#wowace [+o Funkeh`] by ChanServ
22:41.11PrimerHe wants it for mounts and items though
22:41.18Slaymanon a scale of 1 to difficult it's writable on a calculator
22:41.37Slaymanmounted = mounts
22:41.40Primermeh, I don't want to write this
22:41.43durcynPrimer: hm, autobar, lunarsphere
22:41.49PrimerI want to just tell him which addon to download :)
22:42.16Primerbut I'm guessing he doesn't want a bar replacement
22:42.35Primerhe wants this in addition to the bars he already uses, and knowing him, it's already an addon
22:42.53sbuYAY
22:42.56sbukoaschten: VIVA!
22:42.57sbunow
22:43.17koaschtenomg
22:43.22sbuand other germans as well... :p
22:43.23koaschtenhow did you end there?
22:43.38sbu"23:24 <@agw> auf VIVA kommen Technohits aus den 90ern :-)" :p
22:43.50koaschtengo and zap over to BBC Special on Pro7 sbu
22:43.55sbunaah
22:44.38koaschtenhmmm something is wrong, i am munching my 3rd milchschnitte instead of M&Ms
22:46.41*** join/#wowace odt (odt@ns.ericsson.ee)
22:47.43*** join/#wowace Draake (~kvirc@c-67-164-106-50.hsd1.ca.comcast.net)
22:51.03*** join/#wowace Xalem (~xalem@82.245.3.64)
22:54.44odtwhat's a nice way to get my hunter's focus display in big bold letters in the middle of the screen?
22:54.59odtdont need bars or other fanciness
22:55.13odtmaybe a simple script can do that?
22:56.25ShadniXdoes "UPDATE_BATTLEFIELD_STATUS" fires on a win in arena? or is it restricted to battleground status changes?
22:58.09*** join/#wowace Kilroo (~Kilroo@cpe-174-111-058-051.triad.res.rr.com)
23:01.37Fiskerslaps koaschten around a bit with a large trout
23:01.39Fiskerslaps sbu around a bit with a large trout
23:01.46Fisker~seen steev
23:01.47purlsteev <~steev@gentoo/developer/steev> was last seen on IRC in channel #wowace, 1d 6h 20m 42s ago, saying: 'why would that make anyone puke'.
23:01.50koaschtensteals Fisker's cookies. Mwahaha!
23:03.22*** join/#wowace zmigliozzi (~zmigliozz@74-140-50-148.dhcp.insightbb.com)
23:07.02Repo10atlasloot-enhanced: 03Lag123 * r3004 TableRegister/loottables.lua:
23:07.03Repo- Add autoselect for Classic, Wotlk and Cata (only works with cata)
23:08.55*** join/#wowace Axodious (~42h22@96.23.115.106)
23:13.32*** join/#wowace syeren (~syeren@cpc2-salf5-2-0-cust876.10-2.cable.virginmedia.com)
23:13.35*** join/#wowace Tuller (~tuller@c-69-143-52-174.hsd1.va.comcast.net)
23:15.49Slaymanand now 80s Music awesome ^^
23:16.25Megalonwhy so seen Fisker
23:17.55*** join/#wowace Gagorian (~k@104-172.turkunet.fi)
23:18.22*** part/#wowace Aikar (~Aikar@wikia/Aikar)
23:23.51ShadniXhmmm - according to wowprogramming.com, the function "GetBattlefieldArenaFaction()" is marked as deprecated - what am I supposed to use instead?
23:27.10*** join/#wowace BWMerlin (~chatzilla@CPE-60-226-105-114.qld.bigpond.net.au)
23:31.27*** join/#wowace Tuller (~waffles@c-69-143-52-174.hsd1.va.comcast.net)
23:32.07*** join/#wowace Pneumatus (~WiN@unaffiliated/pneumatus)
23:34.55*** join/#wowace sylvanaar (~sylvanaar@unaffiliated/sylvanaar)
23:36.09harlwtf?.. http://www.youtube.com/watch?v=9FMbA3xyPZ0
23:42.38Slaymanharl: still better: http://www.youtube.com/watch?v=FK_CKtYCRIc
23:46.08Megalonhttp://www.youtube.com/watch?v=wSFB2ytWJLQ
23:51.43harloO
23:52.47MegalonFisker disliked this video with his 72 accounts
23:56.06*** join/#wowace stew-a (~Stewart@unafilliated/stewa/x-008753)

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