IRC log for #wowace on 20121229

00:02.34*** join/#wowace mckenziemc (~Mark@adsl-69-106-181-122.dsl.chi2ca.sbcglobal.net)
00:13.44Cavistyhttp://www.ustream.tv/channel/live-dnb-j-anderson
00:20.34*** join/#wowace dano5 (~dano5@208.79-160-124.customer.lyse.net)
00:21.31*** join/#wowace Shirik (~mpdelbuon@WoWUIDev/WoWIStaff/Norganna/StatisticalEngineer/Shirik)
00:21.31*** mode/#wowace [+v Shirik] by ChanServ
00:25.22*** join/#wowace salih1453 (~salihh@78.162.164.220)
00:25.33salih1453irc.freenode.com
00:26.16salih1453http://dersaadetul-salih.blogspot.ru/
00:31.28*** join/#wowace Talryn (~Talryn@unaffiliated/talryn)
00:31.43durcynTHAT LOOKS SAFE, LET'S VIEW IT IN IE 6 FOR GRINS
00:33.12Funkeh`that's how I view all links
00:33.19Funkeh`whats life without a splash of danger
00:34.59durcynwargarbl, staticpopup taint without anything to blame now
00:36.57durcyn12/28 18:24:06.044  Global variable HELP_PLATE_CURRENT_PLATE tainted by Ace3 - Interface\FrameXML\TutorialFrame.lua:1208 HelpPlate_Hide()^M
00:37.00durcynthat's a new one
00:39.29Gnarfozdurcyn: but GC says (repeatedly, vehemently) that taint is always our fault :(
00:39.54durcyngc hasn't been given a clue-by-four yet
00:40.06Funkeh`durcyn, that's the one znf was getting that was blaming BCM because of the AddMessage hook
00:40.17Funkeh`I believe it's some Blizz option he had enabled in the Interface Options
00:40.35durcynsomeone should tweet at him about staticpopups and raw hooks on staticpopups' onaccept functions breaking everything
00:40.39durcyni'm far too lazy
00:40.44Funkeh`click to move maybe?
00:41.18znfI tried replicating that
00:41.21durcynFunkeh`: huh, fuck if i've got tutorials turned on, that's the only thing in taintlog 2 mentioning talentframe, and none of the tutorial shit is touched by any code i'm running, so chatframes make sense
00:41.23znfdidn't work
00:41.55durcynif i recall correctly you left off some details =P
00:41.58Funkeh`it had nothing to do with tutorials
00:42.19Funkeh`znf, I thought you said it was fixed after you disabled some blizz feature?
00:42.49znfyeah, it got fixed /that/ time
00:43.01znfnext day I couldn't replicate it
00:43.01durcynwhat option, is the question
00:46.33znfClick-to-Move
00:46.47znfsorry, was reading between the lines
00:47.24Gnarfozdurcyn: I don't think you'll get a reply that's in any way better than this https://twitter.com/Ghostcrawler/status/278687874059223041 from him - he's just not the guy to talk to about it, and the UI team doesn't exist
00:47.50Gnarfozand the mysterious "fansite program" Cairenn insists exists doesn't help, either
00:48.27Gnarfoz(the program is being overhauled for a couple of years now *shrug*)
00:53.01Fiskercommunity basically died
00:53.36Fiskeror rather Blizzard killed it
00:55.29znfI remember "back then" when you could find popular forum software armory tools
00:55.34znfNow nothing works anymore
00:57.50znfso I got a brawler's invite
00:58.00znfbid as a joke for 10k
00:58.59Gnarfozhttp://imgur.com/gallery/OAXOh
01:02.51*** join/#wowace Mogluk (~Mogluk@c-76-111-22-156.hsd1.va.comcast.net)
01:03.40MoglukIs anyone on who is familiar w/ LibQTip and has some time to answer some questions?
01:03.50sbmehhh
01:03.52sbdisconnect-day
01:07.14Fiskeranyway tell Ghostcrawler to fuck the hell of with his shitty forced memes and pick up a book or atleast STFU if he can't grasp the issue
01:07.30Fiskershould work
01:07.58TorhalMogluk: Hrm?
01:09.00MoglukHey man... I'm new to addon development and am trying to improve on an addon I made that compares an item across all players in a party... sort of like equip compare for a party
01:09.12MoglukSo, I am trying out qtip
01:09.45Moglukit seems that the hook to the tooltipsetitem script is a continual process, and it is leading to my tooltip flickering as it's continually rebuilt
01:09.54MoglukAre there any strategies to avoid this?
01:10.11KalrothFisker: umad?
01:10.23znfis libqtip even "current" anymore?
01:11.36Torhalznf: o.O
01:11.43znfjust asking
01:11.45znfdon't shoot me
01:11.46znf:(
01:11.50TorhalMogluk: TooltipSetItem?
01:11.52Fiskernevermad kalroth
01:12.04Torhalznf: That's what MailMinder uses :P
01:12.08znfthe waiting line for brawler's shit is... annoying
01:12.10znfTorhal, oh, ok
01:12.20MoglukGameTooltip:HookScript("OnTooltipSetItem", TEC_OnTooltipSetItem);
01:12.22KalrothFisker: http://i.qkme.me/3sd9y9.jpg
01:12.42Fiskereven happy about the non-preferential treatment
01:12.46MoglukIf I put a print statement in my function, it fires continually while the mouse is over the item
01:13.19TorhalMogluk: Then you're telling it to
01:13.54MoglukI believe that is the expected behavior, so it will display updated cooldown times, etc
01:14.15TorhalAnd LibQTip doesn't have a TooltipSetItem…the default GameTooltip has an OnTooltipSetItem script though.
01:14.37MoglukCorrect, I am adding a qtip tooltip w/ the GameTooltip as the anchor
01:14.51Moglukand I'm displaying additional information about the GameTooltip item
01:15.58TorhalIf the game is firing that script repeatedly, then your hook is firing repeatedly, which would indeed explain flicker
01:16.12Moglukprecisely
01:16.33Moglukit doesn't appear to be a problem if I use AddLine("value", "value", etc
01:16.48MoglukBut, I'm adding empty lines and then populating it with SetCell
01:17.03Moglukwhich is causing a lot of flickering, and I was hoping there is a strategy to combat that
01:17.34TorhalI'd need to see your code in order to ascertain that
01:18.13MoglukIf you are willing to spend the time, I'd happily provide it to you
01:18.26Torhalpaste.wowace.com
01:20.34Moglukhttp://www.wowace.com/paste/6779/, I'm hardcoding stuff at the moment, so it's pretty brief
01:21.03Moglukand please be kind, this is my first attempt at lua and addon development :)
01:22.12MoglukI have to go tuck the kiddies in bed... be back in a few
01:23.10TorhalMogluk: I'd suggest hooking OnHide instead of OnTooltipCleared
01:23.41TorhalThat way you only release your tooltip when the GameTooltip is hidden instead of when it's updated, which may be several times per second.
01:24.17quiescensmoo?
01:24.50Torhalquiescens: I don't believe it.
01:31.30quiescensmoo~
01:35.05*** part/#wowace mckenziemc (~Mark@adsl-69-106-181-122.dsl.chi2ca.sbcglobal.net)
01:37.39*** join/#wowace Dark_Elf (~Dark_Elf@h75-100-158-200.wdrnin.broadband.dynamic.tds.net)
01:41.24Repobig-wigs: 03funkydude * r9698 Plugins/BossBlock.lua: BossBlock: code tweaks
01:43.31GnarfozFisker: happy my parents' wedding anniversary
01:44.07StanzillaHELLO GUISE
01:45.30*** join/#wowace durcyn (~durcyn@WoWUIDev/Durcyn)
01:48.08MoglukTorhal: I did try onhide, but I believe it exhibits the same behavior
01:51.18Torhal:/
01:51.52MoglukI will keep at it... thanks for the time!
01:52.02TorhalSomething to experiment with, then. Definitely something to do with the default UI though.
01:52.12Torhalnp, wish I could have pinpointed it for you
01:52.28Torhalreboots into Windows to play Borderlands.
01:52.30MoglukAbsolutely, I was really surprised that the tooltip behaves that way... certainly isn't very efficient
01:52.40TorhalNo, it isn't. :)
01:53.48pompy:(
02:06.15quiescensgives pompy a cookie
02:11.10pompyznf: Omni Mystics today .. \o/
02:11.29znfwhat?
02:11.34pompyshadopan
02:11.45znf"ok"
02:36.17Stanzillaoh god
02:36.18Stanzillahttps://github.com/omega1970/AddOns/commit/399169fa176437a6028d96c67fe8895a066623c2
02:36.23Stanzillataint fixing hilarity again
02:39.54sbhm
02:40.03sbexplain!
02:40.12Stanzillanothankyou
02:40.22sbyou think im dumb?!?!?!?!
02:40.43Stanzillamaybe
02:40.46Stanzillabut I'm drunk
02:40.49Stanzillaand need to shleep
02:42.39sbgoto sleep then
02:46.00*** join/#wowace Trela (~Alexia@c-71-207-245-20.hsd1.al.comcast.net)
02:53.38chielhaste: ah yes, i found that shortly after, but i couldn't quite figure it out, i was having some trouble with things scaling differently though
02:53.42chieli figured out what caused it
02:53.52chieli was creating a frame but not inserting it into the UIParent >.<
02:55.22chielnow i just need to figure out why i am not getting back the correct value for the amount of keys in a table. :D
02:56.28chieli thought it was just #tbl
02:56.44chielbut that is giving me back 1, even though i am 100% sure there's two keys in the table
02:56.49chielwhen i loop them it even shows me them
03:03.45quiescenswhat are you using for your loop?
03:03.49quiescensor what are the keys supposed to be
03:05.08quiescensshould note that # is not for a generic "number of keys/values in table" so much as last non nil value assuming an array
03:05.41chieli'm checking which groups i need to show
03:05.56chielby looping all people in my raid, checking which subgroup they are in, and then showing/hiding relevant groups
03:06.31quiescensnot entirely sure that helped
03:06.51quiescenslua>a={} a["test"]=1 print #a
03:06.51lua_botquiescens: luabot:1: '=' expected near '#'
03:07.16quiescenslua>a={} a["test"]=1 print(#a)
03:07.16lua_botquiescens: 0
03:07.28chielah right sorry, i have a table called `activeGroups` and then for each subgroup i do `activeGroups[subgroup] = true`
03:07.52chieli've solved it in a different way now, just seemed kinda weird
03:07.53quiescensso yeah, # might not neccesarily mean what you expect it to mean
03:08.23quiescenslol
03:08.30quiescensto be clearer, what are the keys for your table?
03:08.41chiel1, 2, 3.. etc :)
03:08.48chielraid group numvers
03:08.50chielnumbers*
03:09.21chielwhat i expected, i suppose, is for # to count the amount of keys in a table
03:09.35quiescensits not
03:09.45chielyeah, figured as much :D
03:09.55quiescensas you could probably see from the lua thingy above, that table clearly does not have 0 keys
03:10.08quiescensohwells
03:11.18quiescensblame haste imo
03:11.47chielhaha xD
03:12.36chieljust trying now to make a buff filter for my monk :)
03:30.45chielman
03:30.53chieli am tempted to just set UIParent scale to 1
03:30.59chielmakes everything so much easier :p
03:33.34chieli mean if making everything pixel-perfect is hwat you care about
03:33.38chiel(which i kinda do :p)
03:39.51quiescenspixel perfect is too much effort
03:40.11chielnot if you set the UIParent scale I think
03:40.11quiescensthrow everything into random corners of the screen
03:40.15chielxD
03:40.21quiescens\o/
03:40.32quiescensyou know you want to
03:40.35chieltrying to figure out what the best time is to "initiate" the addon more or less
03:40.57chielsome stuff you do during ADDON_LOADED gets overwritten later it seems
03:40.59quiescensnevar~
03:41.53chielxD
03:41.59chieli guess PLAYER_LOGIN might be better
03:43.35chielhm yeah that seems to work
03:43.36chielsplendid
03:46.18chielhm, is there no frame that surrounds all chat windows?
04:02.25*** join/#wowace Seerah (~RyanNL@adsl-74-226-98-201.mem.bellsouth.net)
04:07.29durcynchatframes are children of uiparent
04:09.14chielyeah
04:09.19chielbut everything is :p
04:09.35chieli was curious if there was no parent for just the chatframes
04:09.40chielso I can scale them collectively
04:11.38chieli suppose i can stuff them into a frame myself and go from there
04:11.51chielbut then i'd need a way of checking how many chatframes a player has
04:18.15*** join/#wowace Fastfire (jorgens@239.163.202.84.customer.cdi.no)
04:38.15znfmeh
04:38.18znfbrawler's rank 7 already
04:38.31chiel:p
04:38.52znfin one night
04:40.54chieli need to get some transmog gear for my monk... suggestions?
04:41.14znfwtf
04:41.21znfMy equipment sets disappeared
04:41.28chielyeah that happens to me too sometimes
04:41.31chielvery fucking annoying
04:53.32*** join/#wowace kurapica (~kurapica@58.247.109.243)
05:00.21chielwhat is the earliest event that signifies when information about talent is available?
05:07.13kurapicaPLAYER_SPECIALIZATION_CHANGED maybe, I use this to load the action bar's config.
05:08.28chielhmm yeah, was just testing PLAYER_LOGIN, seems to be available there at least. does PLAYER_SPECIALIZATION_CHANGED also fire on initial login/reload?
05:09.20kurapicayes
05:09.27chielcool, will check that out thanks :)
05:09.58chielhmm
05:10.02chielfires for everyone though
05:10.21chieli was uing ACTIVE_TALENT_GROUP_CHANGED before as well
05:10.30kurapicabut maybe not fire when your Specialization is 1 or null
05:10.31chielfor dual spec swaps
05:10.55kurapicaso i use GetSpecialization() or 1 for PLAYER_LOGIN for default.
05:11.21chielcan GetSpecialization() sometimes be nil on PLAYER_LOGIN?
05:11.33chielI was testing a bit just now but it seemed to consistently be available at that point
05:11.36chielhmm
05:11.39kurapicawhen you don't have talent
05:11.41kurapicalvl <10
05:11.48chielah yeah
05:11.49chielfair enough
05:32.22*** part/#wowace Seerah (~RyanNL@adsl-74-226-98-201.mem.bellsouth.net)
07:35.22*** join/#wowace Xinhuan (~xinhuan@WoWUIDev/WoWAce/xinhuan)
07:35.23*** mode/#wowace [+v Xinhuan] by ChanServ
07:41.42*** join/#wowace AKX (~akx@dsl-tkubrasgw3-50dd93-71.dhcp.inet.fi)
07:58.16*** join/#wowace Megalon (Megalon@d86-32-5-45.cust.tele2.at)
07:59.07*** join/#wowace Groktar (~gr@c-67-182-2-220.hsd1.ca.comcast.net)
08:16.19Reporaidbuffstatus: 03oscarucb * r593 / (2 files in 1 directory): clean up and streamline the combat event handler
09:05.40Fiskerthanks Gnarfoz
09:05.44Fisker;(
09:09.05quiescenso.o
09:11.21*** join/#wowace Yoshimo (~Miranda@p5B04C2C4.dip0.t-ipconnect.de)
09:15.29Fiskerhey quiescens
09:15.33Fiskerwhat happened to your face?
09:28.43*** join/#wowace profalbert (~profalber@194-166-99-158.adsl.highway.telekom.at)
09:30.18profalbert~wowalert
09:30.18purlhttp://launcher.worldofwarcraft.com/alert (US); http://status.wow-europe.com/en/alert (EU) [NB: Returns empty content unless there is an active alert]
09:32.07*** join/#wowace isman (~drag@mna75-2-82-67-196-34.fbx.proxad.net)
09:35.05*** join/#wowace mckenziemc (~Mark@adsl-69-106-181-122.dsl.chi2ca.sbcglobal.net)
09:43.37*** join/#wowace profalbert (~profalber@194-166-99-158.adsl.highway.telekom.at)
09:45.32*** join/#wowace MysticalOS (~Myst@h125.113.90.75.dynamic.ip.windstream.net)
10:28.23Reposerenity-now: 03calahil * r52 SerenityNow (11 files in 4 directories):  (1 line trimmed from commit message)
10:28.23Repo-code cleanup
10:28.24Repo-fixed some classpower issues
10:28.24Repo-added a player casting bar, it supports channeling tick marks
10:28.25Repo-added the frame mover for the casting bar
10:29.12*** join/#wowace gix (~gix@p5DC1E2DD.dip0.t-ipconnect.de)
10:56.13*** join/#wowace Kalroth (~Kalroth@d40aa5af.rev.stofanet.dk)
11:20.22Repobig-brother: 03nebula169 06ace3dev * r299 / (4 files in 2 directories):
11:20.22Repodon't spam on ready checks in LFG instances and locale string updates
12:01.24*** join/#wowace Megalon (Megalon@d86-32-5-45.cust.tele2.at)
12:35.49znffuckin' hell
12:35.53znfinternet still not fixed
12:46.23Repobig-brother: 03nebula169 06ace3dev * r300 / (6 files in 2 directories):
12:46.23Repo-hide buffs you can't get from your group in the buff window
12:46.24Repo-add a raid buff check function and include it in quick checks
12:46.25Repo-bunch of clean up
12:52.20znfmmmm
12:52.27znfcan anyone even connect on EU?
12:53.28znfI've tunelled trough 3 places by now and can't get past the loading screen
12:54.49ZaB|SHC|_if it's a problem with their infrastructure, tunneling won't help
12:55.28znfD3 works :(
13:07.54Repobig-brother: 03nebula169 06ace3dev * r301 BuffWindow.lua: fix inactive buff icons
13:10.37nebula169znf: i can get on, but I live in the US
13:10.53nebula169(i can log into EU servers)
13:12.52nebula169ok, well i lied, sat at a full blue bar for a few minutes then got disconnected
13:13.11ZaB|SHC|_this is what all in EU get
13:14.34nebula169thats unfortunate
13:15.37ZaB|SHC|_time to read something about githooks :D
13:36.01ZaB|SHC|_how do you deal with line endings in your code? keep it native or adjust it to redmond?
13:50.41*** join/#wowace Ressy (~Ressy@unaffiliated/ressy)
13:56.08znfadjust to redmond?
13:56.36ZaB|SHC|_crlf (microsoft/redmond) vs. lf (unix/mac)
13:59.44*** join/#wowace Yoshimo (~Miranda@p5B04C2C4.dip0.t-ipconnect.de)
14:07.26nebula169svn and git default to saving as lf and auto converting to whatever your os uses, so i just leave it to them
14:08.19nebula169never had to deal with something that was overly sensitive to line endings so never felt the need to force them one way or the other
14:08.58*** join/#wowace Elkano (~elkano@WoWUIDev/WoWAce/Elkano)
14:08.58*** mode/#wowace [+v Elkano] by ChanServ
14:11.54ZaB|SHC|_i just had the issue that a friend wanted to edit something and then got the whole file on one line. okay, he was using notepad which iirc doesn't understand lf. i'll keep it as is.
14:22.22znftell people to not use notepad
14:22.25znfnotepad++ at least
14:23.55ZaB|SHC|_he's not too much into programming. so i guess also wordpad is fine (which should understand lf). he was just helping with adding some localization.
14:27.56znfdear god, no
14:43.01Stanzillagood morning ladies
14:47.39znfhey penis
14:55.55*** join/#wowace Hatraz (~krios@99-60-72-43.lightspeed.frokca.sbcglobal.net)
14:57.02Funkeh`Stanzilla is znf's penis?
14:57.08Funkeh`no wonder he's always mad
15:01.20durcynyou'd be pissed off too if you were 3 inches tall
15:01.42znfI'm pissed that I can't play WoW now :(
15:02.03znfalso, my ISP is down
15:03.16Repobig-wigs: 03funkydude * r9699 Loader.lua:
15:03.16RepoLoader: another drycoded fix for disabling when leaving LFR group.
15:29.34*** join/#wowace dano5_away (~dano5@208.79-160-124.customer.lyse.net)
15:35.01*** join/#wowace znf (~ibm86@188.173.175.180)
15:42.17sbgiev servers
15:42.26sbalso, morning
15:44.55*** join/#wowace mckenziemc (~Mark@adsl-69-106-181-122.dsl.chi2ca.sbcglobal.net)
15:45.43Fiskerhey Funkeh`
15:46.41*** join/#wowace stolenlegacy (~stolenleg@unaffiliated/stolenlegacy)
15:48.02quiescenso.o
15:48.37Fiskeryou should have that face checked out
15:49.22Fiskerso
15:49.31Fiskerany of you guys know anyone awesome with a birthday today?
15:49.41quiescens):
15:50.05Fisker:)?
15:52.54quiescensgo sleep~
15:55.06Fisker:(
15:55.16Fiskereveryone, especially znf, hates me :(
15:55.47durcyni bet he'd still give you a birthday grudge handy if you asked
15:56.17quiescensznf sekretly hates everyone
16:22.50*** join/#wowace ShadniX (shadow1st@b045.apm.etc.tu-bs.de)
16:35.23Reporaidbuffstatus: 03oscarucb * r594 Core.lua: fix a regression on death warnings
16:41.48StanzillaFunkeh`: I'm like..huge
17:01.01Reporaidbuffstatus: 03oscarucb 045.4.0 beta 1 * r595 : Tagging as 5.4.0 beta 1
17:36.36*** join/#wowace Talryn (~Talryn@unaffiliated/talryn)
17:39.39wink"As the game grows, and constantly evolves, it just feels like rogues have been left behind, like a relic of the past. Perhaps we should be made into transmog gear too."
17:39.58winkFirst wowinsider comment in a few years that made me laugh (and not from facepalming)
17:49.26*** join/#wowace Seerah (~RyanNL@adsl-74-226-98-201.mem.bellsouth.net)
18:03.15*** join/#wowace mimmo53 (~mimmo53@net-93-150-103-181.cust.dsl.vodafone.it)
18:05.31znfthey should delete rogues
18:05.36znfpvp would be a better environment
18:06.10*** join/#wowace [1]Archarodim (HydraIRC@78.203.114.95)
18:09.32znfImagine being blizzard now and having to call the techies from vacation to fix stuff
18:10.01RessyThey'd never have all of them on vacation at once.
18:10.53RessyHell, even the US & EU CMs are on rotation right now.  A few EU goes on vacation for a few days, followed by US for a few days.  So right now, EU & US CMs are doing double duty handling both boards
18:14.04Stanzillaomg insider infos, Ressy
18:14.11winkwho cares about pvp?
18:14.39winkznf: I thought it was a hosting/routing problem
18:14.45winkwhy'd they need Blizz techs
18:15.39znfI doubt it's a routing problem, really
18:17.48znf*YP(*@H{OUABS(PDN@!MPODJASPOJ
18:17.55znfMy ISP just "recovered"
18:18.06znfNow the cable signal is at 9%
18:18.15znfcan't watch an HD program properly :(
18:18.47RessyIs the problem affecting everyone, or just some ISPs?
18:18.55znfMy friend list is empty.
18:19.50znfI tried tunelling trough shitloads of places
18:21.36znfit's either World Server is Down, Character Not Found or simply disconnecting on the loading screen
18:38.51*** join/#wowace quiescens (~quiescens@gateway/tor-sasl/quiescens)
18:51.38*** join/#wowace Jitta (Jitta@91-65-40-230-dynip.superkabel.de)
19:02.03Fiskerhey znf
19:02.07Fiskerhope you don't die
19:03.46znfWoW EU working
19:10.45*** join/#wowace Fastfire (jorgens@239.163.202.84.customer.cdi.no)
19:22.54sbznf:  15min late :P
19:23.03znfD3 was more fun!
19:38.22*** join/#wowace the-golem (~Darrin@c-98-255-33-113.hsd1.ca.comcast.net)
20:04.31Stanzillabitches
20:06.12FiskerStanzilla
20:07.55StanzillaFisker: happy birthday
20:08.02Fiskeryep
20:08.13Fiskeri hope you don't die
20:08.17Fiskerand not just today!
20:09.16Stanzillayay
20:09.19Stanzilladid you get something cool?
20:09.50znfI hope I die
20:10.09Fiskernope Stanzilla
20:10.13Fiskeri don't get nice things :(
20:10.26Fiskeri just get moneys and buy shit
20:10.30Fiskerboring as that may be
20:14.24Stanzillawell better than what I got for xmas :D
20:16.20Fiskeri only give out stuff for christmas these years
20:16.58*** join/#wowace LibertineLush (~Libertine@unaffiliated/libertinelush)
20:19.58Stanzillawhat did you gift?
20:23.12winkHappy birthday, Fisker.
20:23.18winkFinally 18?
20:24.40Fiskernope wink
20:38.15znfI'd rather have money than crappy gifts :P
20:50.19*** join/#wowace mckenziemc1 (~Mark@adsl-69-106-181-122.dsl.chi2ca.sbcglobal.net)
20:55.52*** join/#wowace harl (harl@dslb-092-073-084-209.pools.arcor-ip.net)
20:56.40StanzillaFunkeh`: how is your ace3 patch coming along or do I have to slap nevcairiel for using mine? :D
20:56.46Stanzilla*into
20:58.44Funkeh`I haven't made it yet, what's the urgency?
20:59.02Megalonit's Stanzilla, he IS the urgency
20:59.25Stanzillathat and taint needs to gone from the world
20:59.48Funkeh`it doesn't make a popup until an addon shows one
21:01.58nebula169yea, i even made ace3 have its own non-staticpopup and still get random ace3 addons getting blamed for taint, so i dunno
21:02.57Funkeh`acehook?
21:03.02Fiskerhey Funkeh`
21:03.12Funkeh`hi
21:03.22Fiskerblinks and smiles
21:03.38Funkeh`smiles?
21:03.43Funkeh`did you have sex or something
21:03.54Fiskeryou wish
21:03.55nebula169silverdragon gets blamed most of the time, don't think it uses acehook, only other popup i saw was in aceconfigdialog
21:04.01Fiskergot something to tell me Funkeh` ?
21:04.24Funkeh`you smiling sounds unusual!
21:06.04Fiskerthey are hints Funkeh`
21:06.17Funkeh`you're pregnant?
21:07.04Fiskernope
21:07.29Fiskermy mom was, about 9 months from this day, though
21:11.04Repobig-brother: 03nebula169 06ace3dev * r302 / (2 files in 1 directory): use a different default buff icon for crit
21:13.41Funkeh`Fisker, nice
21:13.54Fiskeryep
21:14.12Funkeh`I'd stick a your mother joke in there but seeing as it's a happy day for you n all
21:14.59Fiskerit's all good
21:22.05Kemayonebula169: For what it's worth, I've gone over SD pretty thoroughly, and it doesn't touch the tainting stuff.
21:22.15mckenziemc1so you're 0, Fisker?
21:23.10nebula169Kemayo: yea, i came to the conclusion it was an embed
21:23.34Fiskernope mckenziemc1
21:24.55mckenziemc1negative 18 months?
21:25.16Fiskernope mckenziemc1
21:25.48mckenziemc10.01?
21:26.53nebula169fisker is actually 0/0
21:27.07Fiskernope and nope
21:27.31Reposimplehalo: 03Starinnia * r21 Options/Options.lua: -another tweak to default options frame size
21:46.27Repocombo-points-redux: 03Starinnia * r306 Icons/TouchofKarma.tga: -cleanup the Touch of Karma icon
22:16.01Repobadboy_guilded: 03funkydude * r176 BadBoy_Guilded.lua: more ads
22:16.59Repobad-boy: 03funkydude * r1090 / (2 files in 1 directory): anti-spam update
22:17.29Repobadboy_guilded: 03funkydude 04v2.88 * r177 : Tagging as v2.88
22:18.15Repobad-boy: 03funkydude 04v11.424 * r1091 : Tagging as v11.424
22:26.53chielif i spawn headers with oUF, what is the easiest way to resize them (out of combat) once they have been created?
22:40.31StanzillaFunkeh`: interested in doing ulduar again?
22:44.09Funkeh`Stanzilla, I'll pass, gonna try have an early night tonight
22:44.49chielhaste: pint
22:44.51chielping* even
22:45.38Stanzillahokay
22:53.30StanzillaLFM ULDUAR 25 HC (EU ALLIANCE) / Fragments locked, Mount FFA
22:53.32Stanzilla:o
22:54.05chielis it possible to do cross-realm?
22:54.22chieloh.. through battle tag/real id I guess?
22:54.44sbdont go, its a trap - also alliance bitches :(
22:54.58chielyeah i'm horde anyway, just curious :pp
22:55.19nebula169i should do more of those to gear up my herald toon ;[
22:55.36chielyou can't gear for herald with 25hc
22:55.43chiel10hm at best
22:55.51nebula169like hc adds one piece of 239 gear to loot
22:56.02nebula169or whatever ilvl it was
22:56.20chielonly weapons are allowed to be higher ilvl
22:57.23nebula169aware, you can use toc weapons, can still use 226 (25man ilvl gear)
23:00.44chielyeah
23:00.51chieli thought you were going for the hm gear, my bad :)
23:01.25chielman.. why can't quartz just anchor to the center like (almost) every other addon? :P
23:26.01*** join/#wowace Talryn (~Talryn@unaffiliated/talryn)
23:30.10*** join/#wowace Slayman1 (~dejhap08@port-22161.pppoe.wtnet.de)
23:59.19*** join/#wowace profalbert (~profalber@194-166-99-158.adsl.highway.telekom.at)

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