IRC log for #wowace on 20110225

00:03.37Repo10alttab: 03Ackis 07master * v1.8-Beta-2-gdddbb58 AltTabber.lua: [+2 commits]
00:03.38Repodddbb58: Hooked the wrong functions for PVP queues.  Sound plays when you open the bg frame which is bad.  Found a constant string to search for the function tomorrow.
00:03.39Repo1c6cb1f: Fix the self references.
00:08.38*** join/#wowace alcaras (~chatzilla@c-71-232-37-188.hsd1.ma.comcast.net)
00:09.00alcarasanyone have experience using both dominos and bartender at once?
00:09.07alcarasis it possible? i'd like to have bartender not use the blizzard action bars
00:09.13alcarasi'd use macaroon but it isn't compatible with inlineaura
00:12.00*** join/#wowace tekkub (~tekkub@WoWUIDev/WoWI/Featured/Dongle/GitHub/Tekkub)
00:12.00*** mode/#wowace [+v tekkub] by ChanServ
00:14.48Repo10big-wigs: 03funkydude * r8211 Plugins/Proximity.lua: Plugins/Proximity: Only call facing when we need to.
00:20.05Repo10big-brother: 03nebula169 06ace3dev * r267 Locales/zhTW.lua:
00:20.06RepozhTW update. I really need to start my own project so I can manage these easier
00:21.34Repo10icu: 03Xiiph * r15 ICU.lua: Last modification to ready checking broke something ...
00:21.35RepoNow its fixed and ready checking is working as intended.
00:25.52*** join/#wowace Motig (~Motig@dhcp-077-249-165-250.chello.nl)
00:31.21*** join/#wowace Next96 (Next96@118.32.87.210)
00:35.05Arrowmaster`alcaras: what would it use if it didnt use the blizzard action bars......
00:35.19alcarasArrowmaster: good point; i'll messa round with macaroon
00:35.32Arrowmaster`hint, its not possible in bartender
00:37.43alcarasaye, i figured, thank you
00:38.05*** join/#wowace groktar (~gr@206.sub-174-253-225.myvzw.com)
00:38.26groktarhaha, the interwebs died at work
00:38.35groktarall my coworkers are connecting to my phone now
00:43.45*** join/#wowace Bruners (lasseb@colargol.tihlde.org)
00:51.53cralorSo I'm running into an issue with Festering Strike and my Rune addon. It correctly changes the Blood rune to a Death, but not the Frost. Here's the relevant code: http://pastey.net/146490
00:53.11*** join/#wowace groktar (~gr@212.sub-174-253-240.myvzw.com)
00:53.42cralorNow, of note is the first blurb. I've actually made the Unholy rune type = 3 and frost = 2. But If I simply reverse these in the Update function, it won't make the frost a Death rune, and it will mess up the runes upon removal of the death rune :S
00:54.23groktarslaps his phone
00:55.07cralorWhile debugging (see that print line code) it prints "1, 1" (first rune, blood) and "3, 2" (3rd rune, unholy) and then "1, 4 (first, death) and "3, 2"
00:55.51cralorIf I don't swap the rune with RuneSwap() then the Unholy changes to a death.
00:59.58*** join/#wowace Bruners (lasseb@colargol.tihlde.org)
01:09.57*** join/#wowace Thrae (~ircuser@generalmx-1-pt.tunnel.tserv13.ash1.ipv6.he.net)
01:27.31*** join/#wowace Dotted (~Dotted@95.209.211.16.bredband.oister.dk)
01:27.51*** join/#wowace Iblise (Iblise@d75-152-180-141.abhsia.telus.net)
01:29.47*** join/#wowace Groktar (~gr@c-76-20-77-109.hsd1.ca.comcast.net)
01:35.20Gnarfozconnects to the internet using Groktar's phone
01:38.48Groktarhehe
01:39.16Groktari was impressed with the range on it
01:39.24Groktarit reached all the way to teh support office
01:51.09*** join/#wowace Aux (470dd52e@gateway/web/freenode/ip.71.13.213.46)
01:53.40Auxis there anyway to have a lua function run when the ESC key is pushed?  I tried using frames and such but all keypresses went right to the frame and the character stopped moving :P
01:55.21*** join/#wowace Megalon (Megalon@d86-33-0-159.cust.tele2.at)
01:56.01Auxor really even a way to make the game menu pop up, I'm essentially just trying to run a function before the player attempts to logout
01:56.26vhaarrAux: "attempts"?
01:56.34vhaarror just at logoug
01:56.37vhaarrlogout*
01:56.38*** join/#wowace Sliker (~ponies@91.125.134.89)
01:56.48Auxwell, AT logout I dont think is possible because in a city its going to be instant
01:56.55Auxso really when the game menu pops up
01:57.12vhaarryou're wrong
01:57.15vhaarrwhat is it you want to do?
01:58.17Auxthe overall goal is to run a LUA function before the user attempts to logout.  which is usually the case when they hit ESC (to make the menu pop up)
01:58.32vhaarrorly
01:58.36vhaarrand what is it you want to do?
01:58.56Auxcheck if the user has any daily quests they have yet to turn in
01:59.00Auxwhich works, I just dont have an event to call it
01:59.09vhaarrand remind them if so?
01:59.13Auxcorrect
01:59.22AuxI have that working, I just dont have a trigger to call the function
01:59.27vhaarrright, then you'll have to hook GameMenuFrame OnShow
01:59.53vhaarrGameMenuFrame:HookScript("OnShow", function() print"oO" end)
01:59.56Auxmm do you have a quick example and/or a reference so I can play around with it?
01:59.59Auxoh there we go
02:00.58SunTsuAux: SickOfClickingDailies does exactly that
02:01.25SunTsuAux: you can look inside and see how it's done there
02:01.56vhaarrI wouldn't use SOCD for reference, I don't think the author is any good
02:02.32SunTsuvhaarr: maybe, but he at least seems to know what to hook for this goal
02:03.03vhaarrwell there are several things I can name without even investigating for a minute
02:03.13vhaarrLogout, GameMenuFrame.OnShow and the QUIT and LOGOUT staticpopups
02:03.48vhaarralthough Logout is probably not required since the staticpopups will show regardless
02:03.59vhaarrif a reminder is possible
02:05.01SunTsusocd does just that. Stops you from logging out when you have finished dailies in your log. You can override it by logging out a second time
02:05.19Auxoh well, what vhaarr posted works perfectly
02:05.30Auxexactly what I wanted
02:46.08Iblisewhat would be causing my grid range check to not fade when updating to the most recent version
03:03.19*** join/#wowace Sapu (~Sapu94@24-205-239-250.dhcp.snlo.ca.charter.com)
03:13.13*** join/#wowace kandarz (~kandarz@c-67-183-240-167.hsd1.wa.comcast.net)
03:13.51*** join/#wowace webturtle0 (~webturtle@c-24-56-201-77.customer.broadstripe.net)
03:20.28*** join/#wowace ckknight (~ckknight@c-68-62-172-239.hsd1.al.comcast.net)
03:21.00*** join/#wowace ckknight (~ckknight@WoWUIDev/WoWAce/CurseStaff/CurseForge/ckknight)
03:21.00*** mode/#wowace [+o ckknight] by ChanServ
03:27.45*** join/#wowace Draake (~kvirc@c-67-164-106-50.hsd1.ca.comcast.net)
03:27.54*** part/#wowace Draake (~kvirc@c-67-164-106-50.hsd1.ca.comcast.net)
03:32.18Repo10mendeleev: 03ananhaid * r315 locales/zhCN.lua: Mendeleev:
03:32.19Repo- zhCN update.
03:34.03*** join/#wowace Venara (~Venara@86-41-89-181-dynamic.b-ras2.chf.cork.eircom.net)
03:38.03*** join/#wowace quiesense (~quiescens@203-217-28-61.perm.iinet.net.au)
03:58.53*** join/#wowace Yith (~Yith@d199-74-183-31.try.wideopenwest.com)
04:01.17*** join/#wowace Draake (~kvirc@c-67-164-106-50.hsd1.ca.comcast.net)
04:52.49*** join/#wowace Terra (~top@c-71-201-3-22.hsd1.il.comcast.net)
05:17.02*** join/#wowace the-golem (~Darrin@c-24-23-41-179.hsd1.ca.comcast.net)
05:36.08*** part/#wowace Seerah|away (~Ryan@adsl-226-64-44.mem.bellsouth.net)
05:37.57*** join/#wowace Archarodim (~Archarodi@lev92-4-88-164-134-95.fbx.proxad.net)
05:39.04*** join/#wowace DarkAudit (~Brian@64-181-5-194.unassigned.ntelos.net)
05:42.02*** join/#wowace bien|| (~bien@p57B63E97.dip.t-dialin.net)
05:42.28Repo10prat-3-0: 03sylvanaar * r791 / (42 files in 3 directories): update copyright dates
06:03.20*** join/#wowace DarkerAudit (~Brian@64-181-5-194.unassigned.ntelos.net)
06:07.09*** join/#wowace Vilkku (Vilkku@dsl-tkubrasgw1-fe0bfa00-122.dhcp.inet.fi)
06:25.45*** join/#wowace quiescens (~quiescens@203-217-28-61.perm.iinet.net.au)
06:32.03*** join/#wowace quiesense (~quiescens@203-217-28-61.perm.iinet.net.au)
07:16.47*** join/#wowace dubf (~quassel@84.53.31.14)
07:19.39*** join/#wowace Skizelli (skizelli@c-67-169-162-154.hsd1.ca.comcast.net)
07:20.13*** join/#wowace Aens|Superiority (~a@75-119-241-135.dsl.teksavvy.com)
07:31.06*** join/#wowace Dotted^ (~Dotted@94.191.194.229.bredband.3.dk)
07:35.35Repo10gnomeworks: 03lilsparky * r138 Queue.lua:
07:35.36Repodrycode fix to doubled up reagent issue (accidentally called a function i shouldn't have)
07:38.30*** join/#wowace copystring (11794copy@o0o.o0o.o0o.o88-51-51-6o9.co.uk)
07:47.04*** join/#wowace hell (~Hell@216.26.112.92)
08:26.05*** join/#wowace Caleb| (~caleb@fibhost-66-83-191.fibernet.hu)
08:32.30*** join/#wowace Monolit (postid08@178.162.37.246)
08:39.02quiescensmoo?
08:40.44hastemoo moo moooo moo
08:41.59quiescensmoo.
08:42.24TrelaMoo!
08:43.28quiescensmoo moo
08:47.11*** join/#wowace mitchnull (~opera@catv3EC944A1.pool.t-online.hu)
08:48.48Repo10big-wigs: 037destiny * r8212 Blackwing/Locales/koKR.lua: koKR Update
08:49.48*** join/#wowace TNZe (~evil@198.62-97-238.bkkb.no)
08:50.43*** join/#wowace Kalroth (~kalroth@mail1.retailplanit.com)
08:53.41*** join/#wowace Nickenyfiken (~Miranda@192.121.174.5)
08:54.08Repo10libtourist-3-0: 03Odica * r115 LibTourist-3.0.lua: Fixed ticket #18
09:01.05*** part/#wowace mitchnull (~opera@catv3EC944A1.pool.t-online.hu)
09:01.27*** join/#wowace mitchnull (~opera@catv3EC944A1.pool.t-online.hu)
09:01.54*** part/#wowace mitchnull (~opera@catv3EC944A1.pool.t-online.hu)
09:16.39*** join/#wowace vhaarr (~folk@ti0013a380-3188.bb.online.no)
09:16.39*** join/#wowace vhaarr (~folk@WoWUIDev/WoWAce/Rabbit/vhaarr)
09:16.39*** mode/#wowace [+o vhaarr] by ChanServ
09:55.22*** join/#wowace Elkano (~elkano@asapool1316.vpn.uni-saarland.de)
09:55.22*** join/#wowace Elkano (~elkano@WoWUIDev/WoWAce/Elkano)
09:55.22*** mode/#wowace [+v Elkano] by ChanServ
10:01.41Repo10decursive: 03Archarodim 07master * 2.6.1_beta_3-10-g5ddafc7 / (16 files in 1 directory): [+4 commits]
10:01.42Repo5ddafc7: - Added links to WoWHead near talent checks to be able to verify them easily against current talent trees
10:01.43Repo57baf7a: - Renamed and updated WhatsNew.md.txt for 2.6.1_beta_4 release
10:01.44Repoc6d5a59: - Removed an old deprecated Global (DcrC) used in XML - Re-indented Decursive.xml
10:01.45Repo8b8bd02: - Fix MUFs' handle and tool tip repositioning if the 'Vertical display' option is unchecked and MUFs are placed at the top of the screen.
10:05.10*** join/#wowace tlund (~tlund@envy.nxs.se)
10:08.51*** join/#wowace Megalon (Megalon@d86-33-0-159.cust.tele2.at)
10:09.11Repo10libtourist-3-0: 03Odica * r116 .pkgmeta:
10:09.12Reporefined relationship to LibStub to get rid of some test files
10:10.14Repo10decursive: 03Archarodim 07master * 2.6.1_beta_4 WhatsNew.md.txt: [+1 commit] - Actually updated WhatsNew.md.txt for 2.6.1_beta_4 release
10:10.20Repo10decursive: 03Archarodim 042.6.1_beta_4 * ede5ecc /: [new tag] Tagging as 2.6.1_beta_4
10:17.58*** join/#wowace mojosdojo- (~mojosdojo@p4FE63F8B.dip.t-dialin.net)
10:26.43*** join/#wowace Dezzimal (~queue@207-118-155-190.dyn.centurytel.net)
10:41.03*** join/#wowace harl (harl@dslb-088-076-055-229.pools.arcor-ip.net)
10:41.28*** join/#wowace dubf (~quassel@84.53.31.14)
10:49.16Repo10big-wigs: 03mojosdojo * r8213 Blackwing/Locales/deDE.lua: deDE update.
11:03.08*** join/#wowace faCe| (~face@p5489EFBB.dip.t-dialin.net)
11:07.14*** join/#wowace Rokiyo (~Rokiyo@ppp59-167-157-109.static.internode.on.net)
11:14.01*** join/#wowace Xinhuan (~xinhuan@WoWUIDev/WoWAce/xinhuan)
11:14.01*** mode/#wowace [+v Xinhuan] by ChanServ
11:18.15*** join/#wowace Thaoky (Thaoky@26.152-245-81.adsl-dyn.isp.belgacom.be)
11:23.03*** join/#wowace Sliker (~ponies@91.125.134.89)
11:36.33Repo10dr-damage: 03Gagorian * r1609 / (2 files in 2 directories): - Fixed error in Mangle (Cat) calculation
11:39.01*** join/#wowace Rokiyo (~Rokiyo@ppp59-167-157-109.static.internode.on.net)
11:47.06*** join/#wowace Goht (~Gooht@p5DDE7C3E.dip.t-dialin.net)
11:55.50Repo10libperiodictable-3-1: 03mojosdojo * r352 / (4 files in 4 directories):
11:55.51Repo* InstanceLoot: Mine all remaining dungeons, raids and re-mine a few low level ones.
11:55.52Repo* Misc: Add remaining tier currencies.
11:58.08*** join/#wowace Slayman (~dejhap08@asaru.net)
12:00.35*** join/#wowace Repo (~supybot@68.64.47.56)
12:00.43*** join/#wowace stolenlegacy (~stolenleg@chello213047049072.5.graz.surfer.at)
12:06.07Slaymanso what's you guys' opinion on 4.1? I for one am not that fond of ZA and ZG, in the first I never was able to obtain a bear and the latter i ran up to Exalted back in the day
12:07.10mojosdojo-That's why they are changing them ;)
12:07.33Repo10mendeleev: 03mojosdojo * r316 / (8 files in 2 directories):
12:07.34RepoAdd a fully featured Cataclysm instance module. Label tier token.
12:27.30*** join/#wowace Caleb| (~caleb@fibhost-66-83-191.fibernet.hu)
12:41.44*** join/#wowace Sliker (~ponies@91.125.134.89)
12:51.59Repo10big-wigs: 03jongt23 * r8214 Blackwing/Locales/esES.lua: esES Update
12:58.26*** join/#wowace Elkano (~elkano@WoWUIDev/WoWAce/Elkano)
12:58.26*** mode/#wowace [+v Elkano] by ChanServ
13:01.48*** join/#wowace Yoshimo (~Miranda@p54998EAB.dip0.t-ipconnect.de)
13:07.08Repo10classtimer: 03Stanzilla * r360 Bars (5 files in 1 directory):
13:07.09Repospell updates for DKs, Druids, Hunters, Paladins and Warlocks
13:07.36*** join/#wowace Chosi (osxchosi@choseh.de)
13:07.48Repo10classtimer: 03Stanzilla 042.3.40000.5 * r361 : Tagging as 2.3.40000.5
13:14.11*** join/#wowace robokitty (~roboe@50A2E66C.flatrate.dk)
13:17.47*** join/#wowace Ketho (~Ketho@ip565063bd.direct-adsl.nl)
13:25.48*** join/#wowace Lysithea (~o@h172n7-far-a12.ias.bredband.telia.com)
13:32.06*** join/#wowace mitchnull (~opera@catv3EC944A1.pool.t-online.hu)
13:39.48*** join/#wowace stolenlegacy (~stolenleg@chello213047049072.5.graz.surfer.at)
13:50.51*** join/#wowace Gagorian (rw3@104-172.turkunet.fi)
13:54.18*** join/#wowace stolenlegacy (stolenlega@chello213047049072.5.graz.surfer.at)
14:01.11*** part/#wowace Slayman (~dejhap08@asaru.net)
14:07.36*** join/#wowace ShadniX (shadow1st@b045.apm.etc.tu-bs.de)
14:08.53*** join/#wowace Chosi (osxchosi@choseh.de)
14:15.52*** join/#wowace TNSe (~evil@ti0042a380-4731.bb.online.no)
14:18.02*** join/#wowace Skizelli (skizelli@c-67-169-162-154.hsd1.ca.comcast.net)
14:18.13*** join/#wowace groktar (~gr@209-234-197-181.static.twtelecom.net)
14:18.42groktarpounces
14:22.16*** join/#wowace evl` (~evl@c85-196-101-98.static.sdsl.no)
14:22.40*** join/#wowace Slayman (~dejhap08@port-6198.pppoe.wtnet.de)
14:25.49*** join/#wowace stew-a (~Stewart@unafilliated/stewa/x-008753)
14:26.34Repo10atlasloot-enhanced: 03Hegarol * r3328 LootTableModules/ (2 files in 2 directories): TCG update
14:34.49*** join/#wowace evl (~evl@c85-196-101-98.static.sdsl.no)
14:35.34*** join/#wowace Baraius (~bhuddlest@150.105.84.5)
14:35.44*** join/#wowace WowBot (WowBot@armory.bot.nu)
14:38.45*** join/#wowace mojosdojo- (~mojosdojo@p4FE63F8B.dip.t-dialin.net)
14:41.02*** join/#wowace Funkeh`` (~funk@5ad4d5e2.bb.sky.com)
14:42.14*** join/#wowace evl (~evl@c85-196-101-98.static.sdsl.no)
14:42.47*** join/#wowace Olison (olison@fukdruidsgrr.org)
14:45.12*** join/#wowace bluspacecow (~bluspacec@60-234-165-167.bitstream.orcon.net.nz)
14:45.15*** join/#wowace ShadniX (~shadow1st@b045.apm.etc.tu-bs.de)
14:50.25*** join/#wowace evl (~evl@c85-196-101-98.static.sdsl.no)
14:55.28Axodiousnoo they cancelled two and a half men
14:56.04Axodiousoh just the rest of the season
14:56.24quiescensoptimist
14:56.29Ackiswould this code work: local frame = StaticPopupDialogs["CONFIRM_BATTLEFIELD_ENTRY"] self:HookScript(frame, "OnShow", PlayPVPSound)
14:56.36Axodiousi know :(
15:02.24*** join/#wowace yaroot (~yaroot@114.92.240.168)
15:06.48*** join/#wowace ShadniX (shadow1st@b045.apm.etc.tu-bs.de)
15:08.15Repo10alttab: 03Ackis 07master * v1.8-Beta-3-g457ce09 AltTabber.lua: [+1 commit] Apparently the old code worked, I just wasn't doing anything.  I now hook instead of trying to add a net new OnShow to CONFIRM_BATTLEFIELD_ENTRY.
15:13.34*** join/#wowace Funkeh` (~funk@5ad4d5e2.bb.sky.com)
15:13.34*** join/#wowace Funkeh` (~funk@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
15:13.34*** mode/#wowace [+o Funkeh`] by ChanServ
15:17.09*** join/#wowace Mihau (~asmith@69.73.16.202)
15:25.08*** join/#wowace sylvanaar_work (~sylvanaar@tut.qvssoftware.com)
15:35.25*** part/#wowace mitchnull (~opera@catv3EC944A1.pool.t-online.hu)
15:41.55*** join/#wowace mckenziemc (~Mark@dialup-4.246.251.66.Dial1.SanJose1.Level3.net)
15:45.31Repo10basic-chat-mods: 03funkydude * r272 / (2 files in 1 directory):
15:45.32RepoBasicConfig: add BN whisper/conversation to the sticky dropdown.
15:51.15Repo10pocket-gnome: 03Humbedooh * r8 PocketGnome.lua: - Ticket #3: Fixed a visual bug where long equations (>23 characters) would bug out the result window.
15:51.17Repo- Made the result window 1 line longer.
15:53.24*** join/#wowace [Ammo] (~wouter@connected.dnd.utwente.nl)
15:53.45*** join/#wowace olafski (~egrimm@dream.student.utwente.nl)
15:57.37*** join/#wowace pentium166 (~pentium16@d24-235-229-73.home1.cgocable.net)
15:57.50*** join/#wowace kandarz (~kandarz@c-67-183-240-167.hsd1.wa.comcast.net)
16:13.35*** join/#wowace copystring (11794copy@o0o.o0o.o0o.o88-51-51-6o9.co.uk)
16:21.01*** join/#wowace [Ammo] (~wouter@WoWUIDev/WowAce/ammo)
16:21.01*** mode/#wowace [+o [Ammo]] by ChanServ
16:22.02*** join/#wowace Sapu (~Sapu94@24-205-239-250.dhcp.snlo.ca.charter.com)
16:23.47*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
16:26.12*** join/#wowace silentiu1 (~silentium@dslb-088-066-020-240.pools.arcor-ip.net)
16:31.30*** part/#wowace mckenziemc (~Mark@dialup-4.246.251.66.Dial1.SanJose1.Level3.net)
16:34.46*** join/#wowace rbarreiros (~rbarreiro@87.196.70.153)
16:41.28*** join/#wowace Sapu (~Sapu94@24-205-239-250.dhcp.snlo.ca.charter.com)
16:46.32*** join/#wowace Lisimba (~Lisimba@s537510ef.adsl.wanadoo.nl)
16:46.56*** join/#wowace kadrahil (~kad@216.84.39.28)
16:47.36*** join/#wowace kadrahil (~kad@216.84.39.28)
16:47.46*** join/#wowace isman (~drag@mna75-2-82-67-196-34.fbx.proxad.net)
16:50.59*** join/#wowace silentium (silentium@dslb-088-066-041-168.pools.arcor-ip.net)
16:51.54*** join/#wowace kadrahil (~kad@216.84.39.28)
16:51.54*** join/#wowace kadrahil (~kad@unaffiliated/kadrahil)
16:56.00*** join/#wowace Slayman1 (~dejhap08@port-11607.pppoe.wtnet.de)
16:57.48*** join/#wowace ckknight (~kvirc@WoWUIDev/WoWAce/CurseStaff/CurseForge/ckknight)
16:57.48*** mode/#wowace [+o ckknight] by ChanServ
16:57.56*** join/#wowace ckknight_ (~ckknight@c-68-62-172-239.hsd1.al.comcast.net)
17:12.07*** join/#wowace kadrahil (~kad@216.84.39.28)
17:12.08*** join/#wowace kadrahil (~kad@unaffiliated/kadrahil)
17:14.38*** join/#wowace Venara (~Venara@86-41-89-181-dynamic.b-ras2.chf.cork.eircom.net)
17:15.00*** join/#wowace Srosh (~Srosh@d018252.adsl.hansenet.de)
17:19.04*** join/#wowace Monolit (postid08@178.162.37.246)
17:26.20*** join/#wowace stolenlegacy (stolenlega@chello213047049072.5.graz.surfer.at)
17:31.19*** join/#wowace stolenlegacy_ (stolenlega@chello213047049072.5.graz.surfer.at)
17:34.04*** join/#wowace Odlaw (~ozzy@2001:470:1f05:1f4:2907:5de1:ebf:82a4)
17:35.20*** join/#wowace daev` (~bleh@pool-71-188-132-215.aubnin.fios.verizon.net)
17:42.15*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
17:42.34*** join/#wowace Ingela- (~Ingela@90-230-170-118-no35.tbcn.telia.com)
17:52.50*** join/#wowace silentium (silentium@dslb-088-064-186-156.pools.arcor-ip.net)
17:53.55*** join/#wowace PProvost (~PProvost@97-118-160-62.hlrn.qwest.net)
17:54.47*** join/#wowace PProvost (~PProvost@WoWUIDev/WAU/Admin/Pprovost)
17:54.47*** mode/#wowace [+v PProvost] by ChanServ
18:13.23*** join/#wowace stew-a (~Stewart@unafilliated/stewa/x-008753)
18:15.02*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
18:23.37Repo10ouf_adirelle: 03Adirelle 07master * 1.6-beta-9-2-g705fce0 / (2 files in 2 directories): [+2 commits]
18:23.38Repo705fce0: Fixed anchoring of player's experience bar.
18:23.39Repo3878480: Do not display Argaloth's Meteor Slash..
18:29.18*** join/#wowace hell (~Hell@216.26.112.92)
18:31.16*** join/#wowace cralor (~cralor@c-98-217-6-30.hsd1.ma.comcast.net)
18:48.15Repo10basic-chat-mods: 03funkydude * r273 / (2 files in 1 directory): bump toc version
18:49.00Repo10basic-chat-mods: 03funkydude * r274 / (2 files in 1 directory): rename dont_disable > Core
18:49.53Repo10basic-chat-mods: 03funkydude * r275 BasicChatMods.toc: ...and load it
18:51.10*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
18:54.28Funkeh`woo new lonely island song http://www.youtube.com/watch?v=tLPZmPaHme0
19:00.27Repo10basic-chat-mods: 03funkydude * r276 BasicChatMods.toc: actually call it BasicCore for consistency.
19:01.03Repo10basic-chat-mods: 03funkydude * r277 / (2 files in 1 directory): rename
19:04.01Repo10atlasloot-enhanced: 03Dynaletik * r3329 Locales (2 files in 1 directory): - locale fix?
19:05.56prencherthought you said new
19:11.00Funkeh`pfft
19:11.03Funkeh`new to me anyway#
19:20.33*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
19:21.06Axodiousis there a macro argument for stealth?
19:21.44quiescenslike
19:21.47quiescens[stealth]?
19:22.37Axodious.. yeah i'm dumb, put in stealthed instead of stealth
19:34.33Repo10ouro-guild-alts: 03Farmbuyer 04v4.0.6-1 * r17 :
19:34.34RepoTagging as v4.0.6-1, now with localization and slightly better debugging.
19:35.46Repo10basic-chat-mods: 03funkydude * r278 BasicConfig.lua:
19:35.47RepoBasicConfig: If LSM is available, list it's fonts in the dropdown.
19:36.36*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
19:39.01Repo10ka_raid-tracker: 03Celess * r276 / (2 files in 1 directory):
19:39.02Repo- possible fix for attendance list issue, causing nil index exception
19:39.03Repo- bump
19:40.00Repo10atlasloot-enhanced: 03TrAsHeR * r3330 Locales/constants.fr.lua: frFR update
19:41.07Repo10ka_raid-tracker: 03Celess * r277 RaidTracker.lua: - comment out conditional debug line
19:42.14Repo10ka_raid-tracker: 03Celess 042.3.8 * r278 :
19:42.15Repo- possible fix for attendance list issue, causing nil index exception
19:42.16Repo- bump
19:48.49*** join/#wowace ThiefMaster (~thief@AAnnecy-158-1-78-247.w90-52.abo.wanadoo.fr)
19:48.49*** join/#wowace ThiefMaster (~thief@unaffiliated/thiefmaster)
19:55.09*** join/#wowace Hjalte (~chatzilla@cpe.ge-0-2-0-835.arcnqu2.customer.tele.dk)
19:58.30Repo10basic-chat-mods: 03funkydude 04v6.20 * r279 :  (Message trimmed by 2 lines)
19:58.31RepoTagging as v6.20
19:58.32RepoFont: If SharedMedia is available, use it's fonts in the Font module
19:58.33RepoSticky: Add Real ID whisper/conversation to the sticky dropdown
19:58.34RepoEditbox: Change to classic mode (hidden) when using this module
20:00.10Ackis!api castspellbyname
20:00.10lua_botCastSpellByName: Casts a spell specified by name (optionally on a specified unit) (http://wowprogramming.com/docs/api/CastSpellByName)
20:05.43*** join/#wowace Kalroth (~Kalroth@d40aac62.rev.stofanet.dk)
20:06.18Ackis!api castspell
20:06.18lua_botFound 4 possible results for 'castspell': CastSpellByID, SetMultiCastSpell, CastSpell, CastSpellByName
20:06.47Ackis!api castspellbyid
20:06.47lua_botCastSpellByID: Casts a spell specified by id (optionally on a specified unit) (http://wowprogramming.com/docs/api/CastSpellByID)
20:37.29*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
20:42.24*** join/#wowace Goht2 (~Gooht@p5DDE6C32.dip.t-dialin.net)
20:47.56*** join/#wowace the-golem (~Darrin@c-24-23-41-179.hsd1.ca.comcast.net)
20:57.25*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
21:06.48*** join/#wowace Nickenyfiken (~Miranda@c83-255-103-187.bredband.comhem.se)
21:21.57*** join/#wowace ShadniX (shadow1st@b045.apm.etc.tu-bs.de)
21:24.01Stanzillaany resto druid here?
21:26.20sylvanaarrerolling paladin
21:26.42StanzillaI just want to know if tree of life is still a valid stance in macros :p
21:26.50*** join/#wowace DarkerAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
21:27.15sylvanaarno clue, not enough time to really notice
21:27.36sylvanaarits a stance though, so you'd assume so
21:28.13Stanzillayeah still works, was just unsure because it's a short time buff now
21:29.00nebula169lock meta works like that, too
21:31.21Gnarfozcan anyone recall "bethink" as an addon author on wowace?
21:32.18nebula169i've seen him committing to bossnotes, i think
21:33.28nebula169yar
21:33.32nebula169@project boss-notes
21:33.33Reponebula169: http://www.wowace.com/addons/boss-notes/. Boss Notes. Game: WoW. Bethink (Manager/Author), DrKazza (Author). Updated: 13 days ago. Tickets: 6/29
21:34.56*** join/#wowace cyndis (cyndis@lakka.kapsi.fi)
21:35.09*** join/#wowace krka (krka@bronzon.pi.se)
21:35.31*** join/#wowace hell (~Hell@216.26.112.92)
21:37.57*** join/#wowace TradeMark (~trademark@c-24-22-209-99.hsd1.wa.comcast.net)
21:56.15Gnarfozhrm
21:56.23Gnarfozis probably the same guy I'm looking for, but apparently not active on IRC
22:07.34*** join/#wowace nebula169 (~nebula@c-75-73-235-102.hsd1.mn.comcast.net)
22:10.05*** join/#wowace mascondante (~kvirc@pool-72-71-110-210.atl01.dsl-w.verizon.net)
22:12.16*** join/#wowace Yoshimo (~Miranda@p54998EAB.dip0.t-ipconnect.de)
22:13.33*** join/#wowace tekkub (~tekkub@WoWUIDev/WoWI/Featured/Dongle/GitHub/Tekkub)
22:13.33*** mode/#wowace [+v tekkub] by ChanServ
22:16.58Repo10mendeleev: 03StingerSoft * r317 locales/ruRU.lua: ruRU update
22:33.40*** join/#wowace nebula169 (~nebula@c-75-73-235-102.hsd1.mn.comcast.net)
22:34.32Repo10alttab: 03Ackis 07master * v1.8-Beta-4-g7e6b846 AltTabber.lua: [+1 commit] Secure hook was needed, not just normal hook.
22:34.52Repo10alttab: 03Ackis 04v1.8 * cb27183 /: [new tag] Tagging as v1.8
22:40.19*** join/#wowace Yith (~Yith@d199-74-183-31.try.wideopenwest.com)
22:42.16*** join/#wowace the-golem (~Darrin@c-24-23-41-179.hsd1.ca.comcast.net)
22:42.59Repo10gridstatusemphasize: 03slaren * r22 GridStatusEmphasize.toc:
22:43.00Repo- Fixed .toc problem that could cause problems when updating from older versions
22:46.20Mikk@describe gridstatusemphasize
22:46.21RepoMikk: http://www.wowace.com/addons/gridstatusemphasize/. GridStatusEmphasize. Grid module to emphasize units based on some configured conditions
22:46.25*** join/#wowace nebula169 (~nebula@c-75-73-235-102.hsd1.mn.comcast.net)
23:02.58*** join/#wowace BWMerlin (~chatzilla@CPE-60-226-105-114.qld.bigpond.net.au)
23:03.13*** join/#wowace mascondante (~kvirc@pool-72-71-110-210.atl01.dsl-w.verizon.net)
23:04.45*** join/#wowace Goht (~Gooht@p5DDE6C32.dip.t-dialin.net)
23:05.17*** join/#wowace Skizelli (skizelli@c-67-169-162-154.hsd1.ca.comcast.net)
23:18.59*** join/#wowace Torhal_ (~torhal_wo@69.73.16.202)
23:18.59*** mode/#wowace [+o Torhal_] by ChanServ
23:22.53*** join/#wowace marshen (~marshen2@ip-109-90-68-214.unitymediagroup.de)
23:22.53*** join/#wowace marshen (~marshen2@unaffiliated/marshen)
23:26.03*** join/#wowace Funkeh` (~funk@5ad4d5e2.bb.sky.com)
23:26.03*** join/#wowace Funkeh` (~funk@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
23:26.03*** mode/#wowace [+o Funkeh`] by ChanServ
23:33.31*** join/#wowace NeoTron (~neotron@pool-108-17-169-178.sttlwa.fios.verizon.net)
23:34.23*** join/#wowace NeoTron (~neotron@pool-108-17-169-178.sttlwa.fios.verizon.net)
23:36.50*** join/#wowace NeoTron (~neotron@pool-108-17-169-178.sttlwa.fios.verizon.net)
23:37.18*** join/#wowace NeoTron (~neotron@pool-108-17-169-178.sttlwa.fios.verizon.net)
23:42.48*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
23:46.51*** join/#wowace stolenlegacy (stolenlega@chello213047049072.5.graz.surfer.at)
23:51.41*** join/#wowace Caleb| (~caleb@fibhost-66-83-191.fibernet.hu)
23:53.01Primerthis is the third time I'm engaging a boss with a broken bow/gun
23:53.26Primerall because the bow/gun is fucking OFF SCREEN in the durability dude
23:54.20SunTsuPrimer: then move it
23:54.28PrimerI can't
23:54.35PrimerMoveAnything can't move it
23:56.15SunTsuI didn't log in since a few days before christmas, but them SmootDurability did that just fine

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