IRC log for #wowace on 20121203

00:09.28durcynchat filter taint now, seriously?
00:12.07*** join/#wowace Adys (~adys@unaffiliated/adys)
00:19.49*** part/#wowace profalbert (d5210f5b@gateway/web/freenode/ip.213.33.15.91)
00:22.44*** join/#wowace ggjgj (~Denial@unaffiliated/windaria)
00:25.49Repobad-boy: 03funkydude * r1057 / (2 files in 1 directory): more fake rbg ads
00:52.16*** join/#wowace Hjalte (~Hjalte@62.242.38.50)
00:58.38*** join/#wowace Slayman1 (~dejhap08@port-5721.pppoe.wtnet.de)
01:24.32Repobad-boy: 03funkydude * r1058 BadBoy.lua: tweak
01:24.41*** join/#wowace profalbert (~profalber@213-33-15-91.adsl.highway.telekom.at)
01:24.52Repobadboy_guilded: 03funkydude * r160 BadBoy_Guilded.lua: more ads
01:32.28durcynTorhal: where's the LibDialog documentation? :|
01:32.47quiescenso.o
01:34.53Repobasic-chat-mods: 03funkydude * r411 / (5 files in 1 directory):
01:34.53RepoReplace static popup with our own small popup frame, removing any chance of staticpopup taint.
01:45.51pompy1durcyn: non-existant
01:46.17Funkeh`Stanzilla, what was that bnet broadcast event in the end?
01:46.24pompy1@project libdialog-1-0
01:46.24Repopompy1: [WoW] LibDialog-1.0 (Updated Sep 19, 2012 at 11:24 UTC) - http://www.wowace.com/addons/libdialog-1-0/
01:56.31*** join/#wowace Dark_Elf (~Dark_Elf@h69-131-220-105.wdrnin.broadband.dynamic.tds.net)
01:58.49Repobasic-chat-mods: 03funkydude * r412 urlcopy.lua: urlcopy: make links in broadcasts clickable.
02:01.44Repobetterpowerbaralt: 03nebula169 * r27 BetterPowerBarAlt.toc: bump toc
02:03.45Repobetterpowerbaralt: 03nebula169 041.4.1 * r28 : Tagging as 1.4.1
02:10.38pompy1creates bettererpowerbaralt
02:11.05Repologgerhead: 03durcyn * r145 / (3 files in 1 directory):
02:11.05Repouse LibDialog instead of FrameXML StaticPopup, please report any issues in IRC.
02:17.50pompy1expect them from znf!
02:20.56Repologgerhead: 03durcyn * r146 LoggerHead.lua:
02:20.56Repofallback to english localization for dialog prompt string until such time as the wowace localization entries are updated
02:21.12durcynif rsmozang ever shows his face, i'm going to break it
02:23.01durcynStanzilla: mark me as maintainer on loggerhead so i can fix the locale system, i'm too lazy to open a ticket
02:29.06nebula169i suppose i should just commit my rewrite of loggerhead somewhere, its like 50 lines of code and completely locale independant
02:29.11nebula169>.>
02:31.26Repologgerhead: 03durcyn * r147 LoggerHead.lua:
02:31.26Reporevert prompt localization to full string so we don't break source checkouts, localization app still needs to be updated
02:31.42durcyneh, that one's clean enough now :)
02:33.21nebula169i still hate that someone thought it would be a good idea to start transcriptor when you automatically start logging
02:33.36durcyni'm considering ripping that out
02:33.39nebula169do it
02:34.18nebula169nothing like someone sending you have four hour long transcription
02:36.36Repologgerhead: 03durcyn * r148 LoggerHead.lua:
02:36.37Reposay goodbye to the Bad Idea(tm) that is transcriptor toggling
02:36.59pompy1:O
02:39.56Funkeh`fuck, where is my walking dead
02:44.09durcynstill airing, Funkeh`
02:44.32Funkeh`trying to stay awake :/
02:44.50durcyn720p encodes will be a bit after it ends anyway
03:04.38Repobasic-chat-mods: 03funkydude * r413 BasicChatMods.toc: actually load itIT & ptBR
03:26.50Repoprat-3-0: 03Talyrius * r898 / (8 files in 3 directories): Removed BATTLEGROUND / BATTLEGROUND_LEADER
03:26.50RepoAdded INSTANCE_CHAT / INSTANCE_CHAT_LEADER
03:27.15Repologgerhead: 03durcyn * r149 .pkgmeta: fix .pkgmeta, SOME THINGS ARE CASE SENSITIVE DAMMIT
03:33.00pompy1talyrius? :o
03:34.05pompy1durcyn: SoMe ThInGs ArE cAsE sEnSiTiVe DaMmIt would have been cooler!
03:34.12durcynno, die
03:34.18pompy1:(
03:36.25Funkeh`here I was thinking prat wasn't abandoned
03:37.54quiescenso.o
03:38.03*** join/#wowace kurapica (~kurapica@58.247.109.243)
03:38.21Funkeh`sometimes I thik you're an owl, quiescens
03:39.04quiescensmoo
03:52.25pompy1now he's a cow
03:58.48*** join/#wowace Gibbs (~Gibbs@ppp59-167-222-68.qld.adsl.internode.on.net)
04:19.45*** join/#wowace znf (~ibm86@188.173.175.180)
04:31.22GibbsAnyone able to help me with an addon?
04:31.25GibbsTrackerFunctions = { }
04:31.25Gibbslocal Tracker = CreateFrame("Frame", nil, UIParent)
04:31.25GibbsTracker:RegisterEvents("UNIT_SPELLCAST_SUCCEEDED")
04:31.25GibbsTracker:SetScript("OnEvent", function (_,e) TrackerFunctions[e]() end)
04:31.25Gibbsfunction TrackerFunctions.UNIT_SPELLCAST_SUCCEEDED(unitID, spell, rank, lineID, spellID, ...)
04:31.26Gibbsprint("You casted ", spell, " - ", spellID)
04:31.26Gibbsend
04:31.50GibbsResult: You casted nil - nil
04:31.59GibbsAny ideas why?
04:32.58nebula169Gibbs: you're not passing those params to your local function on the OnEvent
04:33.16nebula169do something like  function (_,e, ...) TrackerFunctions[e](...) end)
04:33.50nebula169in the*
04:34.21GibbsAh thanks will gove that a go now
04:34.25Gibbsgive*
04:36.56GibbsThat works well, thanks for the help
04:48.28*** join/#wowace kurapica (~kurapica@58.247.109.243)
05:19.13Primernevcairiel: 1x Prat-3.0-r898\addon\locales.lua:63: Locale key Instance Channel is not provided.
05:21.07pompy1Primer: why nevcairiel?
05:21.45pompy1some guy talyrius ninja committed that!
05:22.49Primererr I meant the other dude
05:23.00PrimerI got confused
05:23.04Primersilvanaar
05:23.10PrimerI guess he's not here
05:23.29Dark_Elflol
05:38.51pompy1@ping
05:38.51Repopompy1: pong
05:41.13Repobetterextraactionbutton: 03nebula169 * r21 BetterExtraActionButton.lua: some more refactoring
05:42.31nebula169Primer: its because he added locale strings, but even the enUS locale is pulled from wowace
05:42.49nebula169pompy1: you should add said locale string to the system :D
05:43.28pompy1i did that
05:43.34pompy1now just tortoisehg being eh
05:43.35pompy1sec
05:43.41pompy1its aborting the push
05:43.45nebula169<3
05:43.47pompy1prolly ssh crap
05:43.53pompy1ssl
05:44.16nebula169you wouldn't need to change the code base any, its a packager/localization app thing
05:44.27nebula169oh, right.
05:44.31pompy1i know\
05:44.36pompy1just addeda  space in a random file
05:59.17*** part/#wowace Seerah (~RyanNL@adsl-74-226-73-144.mem.bellsouth.net)
06:13.37sbmorning
06:14.06Reposerenity-now: 03calahil * r27 SerenityNow (23 files in 6 directories):
06:14.07Repo-Finally fixed the moving and storing of frames...cross my fingers
06:14.07Repo-Added Dual Spec support.
06:14.07Repo-Removed the powerbar for now (will work on it on the side.)
06:14.52StanzillaFunkeh`: "CHAT_MSG_BN_INLINE_TOAST_BROADCAST"
06:16.25Reposerenity-now: 03calahil 04v1.04 * r28 : tagged as release
06:17.40Reposerenity-now: 03calahil 04v1.04 * r29 : woops
06:18.00Reposerenity-now: 03calahil * r30 SerenityNow/SerenityNow.toc: -updated toc to 1.04
06:19.21Reposerenity-now: 03calahil 04v1.04 * r31 : -tagged as release
06:22.28pompy1i guess i have to set up the ssh with tortoisehg
06:22.31pompy1but its really confusing
06:23.11Reposerenity-now: 03calahil * r32 tags/ (2 files in 2 directories): -tagged as 1.05
06:35.44*** join/#wowace soulcarver (636fdec1@gateway/web/freenode/ip.99.111.222.193)
06:35.55soulcarvercan anybody tell me how to create an array of string
06:36.07quiescenso.o
06:36.09Stanzilladurcyn: done
06:36.16soulcarveras in
06:36.19soulcarverand aray
06:36.24soulcarverstrin[0]
06:36.27soulcarverstring[1]
06:36.31soulcarverstring[3]
06:36.37soulcarver?
06:36.40Stanzillaand I liked transcriptor toggling :(
06:37.07soulcarvereh?
06:37.35StanzillaI was talking to durcyn, sorry :p
06:39.44soulcarverany idea how i go about it?
06:40.32StanzillaI think you want a list :O
06:40.46Stanzillaor table
06:40.50Stanzillabut I don't have a clue
06:41.19Stanzilla~pil
06:41.19purlProgramming in Lua, a book written by the authors of the Lua programming language. The first edition is available free online at http://www.lua.org/pil and covers Lua 5.0. The second edition is available in print from most online bookstores, and covers Lua 5.1.
06:43.28Stanzilladurcyn Funkeh` also I have no idea why that bnet broadcast url clicking does not work for me, maybe I have some addon fucking with it
06:45.06Stanzilla(in chatter)
06:48.16*** join/#wowace gix (~gix@dslb-088-065-238-189.pools.arcor-ip.net)
06:49.00durcyni'll take a gander at it
06:49.21Stanzillalove you
06:49.24Stanzillagotta run now
06:53.14durcynStanzilla: it was impossible to segment it, now what really needs to be done is a transcriptor option to start a new segment on bigwigs engage callbacks
06:56.08soulcarverhow do i reference variables created in a preceding lua file?
07:02.19durcynthese days i'd recommend using the private table
07:02.36durcynlocal ADDON_NAME, ADDON_TABLE = ... at the top of the file will get you what you want
07:02.53durcynyou can name them whatever you want, but the first is a string with the addon's name, and the second is said private table
07:03.15pompy1Primer, nebula169: inc
07:04.58Repoprat-3-0: 03pompachomp * r899 addon/locales.lua: dummy commit to catch the changes to the loc app... "Battleground Channel" to "Instance Channel"
07:05.05pompy1cheers
07:05.18pompy1nebula169, Primer: ^
07:06.47nebula169thanks :p
07:08.13pompy1np
07:19.40*** join/#wowace Elkano (~elkano@pool012.vpn.uni-saarland.de)
07:19.40*** join/#wowace Elkano (~elkano@WoWUIDev/WoWAce/Elkano)
07:19.40*** mode/#wowace [+v Elkano] by ChanServ
07:21.20soulcarverhow do i out put text to current chat channel?
07:24.01Primerthanks
07:31.21kurapicaIf not to other players, just print(…), to others see http://wowprogramming.com/docs/api/SendChatMessage
07:48.09soulcarvercan anybody tell me how I go about running a function every so many seconds?
07:51.35ZaB|SHC|http://www.wowace.com/addons/ace3/pages/api/ace-timer-3-0/
07:52.05soulcarveris it pretty safe?    I see a couple non ace example... but they just look like infinite recursive loops
07:55.23ZaB|SHC|safe in which sense?
07:56.58durcynthey are loops, until they aren't
07:57.48*** join/#wowace Megalon (Megalon@d86-32-5-45.cust.tele2.at)
07:59.53durcynsoulcarver: onupdates fire every frame, so you throttle your execution.  http://wowprogramming.com/docs/scripts/OnUpdate
08:02.32Repogrid-status-party: 03phanx 045.1.0.56 * r56 : Tagging as 5.1.0.56
08:13.32Repologgerhead: 03durcyn * r150 / (13 files in 2 directories): add esES, esMX, ptBR translations
08:14.42Repologgerhead: 03durcyn * r151 / (7 files in 1 directory): move locale files into subdirectory for no good reason
08:20.33Repologgerhead: 03durcyn * r152 LoggerHead.lua: remove localization override
08:27.08Repologgerhead: 03durcyn * r153 LoggerHead.toc:
08:27.08Repo5.1 toc, also touch for locale regen, since newline escape sequences get munged by the localization app, ugh
08:30.28Repologgerhead: 03durcyn 045.0.154 * r154 : Tagging as 5.0.154
08:34.23Repoarl: 03Ackis 07master * 2.4.2-18-gd5a5ccf Database/Recipes/Tailoring.lua: [+1 commit] Add Bipsi's Gloves to Tailoring.
08:35.18mitch0moo
08:35.20durcynAckis: now fix lower ranks embroidery upgrades showing up as unlearned
08:35.33durcynmitch0: i've met quiescens, you're no quiescens
08:35.45mitch0moo
08:36.35*** join/#wowace EthanCentaurai (~EthanCent@host-2-97-218-191.as13285.net)
08:40.30*** join/#wowace gix (~gix@dslb-088-067-075-045.pools.arcor-ip.net)
08:41.07*** join/#wowace Brybry (~Brybry@unaffiliated/brybry)
08:47.54Repogrid: 03phanx 045.1.0.1553 * r1554 : Tagging as 5.1.0.1553
08:54.35soulcarverso does bartender get upgraded any more?    Theres an issue during boss fighters where if you get transformed .... it will remove all actions from bar one
08:54.37soulcarvereh
08:55.00nebula169un'sok? works fine
08:55.16nebula169make sure you have a bar set as the possess bar
09:04.34znfsoulcarver, works fine
09:09.00sboh amazon, i hate you
09:26.18znfso
09:26.20znflet's see
09:26.30znfHow to get that 10% rep buff
09:26.39EthanCentauraiwhee!
09:26.48znfyeah :P
09:27.57sbcheating again znf? :P
09:28.06znf...
09:28.12znfwhy are you being an asshole? :(
09:28.39sbbecause you didnt tell which 10% rep buff? :|
09:28.51znfread mmo-champ?!
09:28.58sbcant read :(
09:29.06sbah, darkmoon
09:29.25znfdamn it
09:29.34sboh, works with quests, thats nice
09:29.35znflight of the cosmos would have been even a better upgrade than chi-ji
09:29.46sbmh?
09:30.08sbyu'lon, right?
09:30.26znferm, yes
09:30.38sbdont think so
09:30.50znfmr. robot says so!
09:30.53sblight of cosmos will be replaced with heroic light of cosmos soon
09:30.59znfwish I had HC trinket :(
09:31.25znfwe'll do 10M tonight
09:31.28znf10m HC :-/
09:31.41sbwhy is this bad?
09:31.52*** part/#wowace kurapica (~kurapica@58.247.109.243)
09:31.54sbmh, is there a "find best upgrade" button?
09:32.05znfno there isn't
09:32.14znfbut you can manually click thingies to see how they rank
09:32.18sbyup
09:33.22sbi think its safe to go for upgraded light hc and upgraded dmc
09:33.26znfyeah
09:33.37sbbecause you wont get hc essence for a while
09:33.46znfI hate the fact that you can't refund partially the upgrade cost :-/
09:33.55sbunless you are StanzillaDick :(
09:34.29znfman, I haven't even killed Empress on normal...
09:34.45znfwe took her down to 10% last night on 1st try
09:34.50znf(or 2nd?)
09:34.53znfthen we fucked around all night
09:34.56sbwhatrs the problem with doing 10m?
09:35.06sbmhhh - failing on what? tanks? adds?
09:35.16znfpeople dying on the explosions
09:35.26sbhuh??
09:35.39znfdisks go boom?
09:35.47sbyep, but they wont kill ppl
09:35.52sbunless they explode at the same time
09:35.58znfThey do kill people...
09:36.07Stanzillahey dicks
09:36.15sbhey Stanzilla
09:36.15znfin 25m they do if the healers are too slow to react
09:36.27sbi see
09:36.45sbstill with your gm-gf-healer?
09:37.13znfnah, he was on his way back to italy so he didn't join
09:37.13Stanzillahttps://fbcdn-sphotos-a-a.akamaihd.net/hphotos-ak-ash4/414734_473522602688974_1501873249_o.jpg
09:37.15znfjust people fuckin' around
09:37.16StanzillaI was outside!
09:37.40sbugh Stanzilla
09:37.48sbwhy are you walking on the streets?
09:37.52sbits dangerous
09:38.04Stanzilladon't you see the dirty car window? :D
09:38.16sbis this n4 picture? doesnt look good :(
09:38.20Stanzillayes
09:38.34Stanzillaat 60km/h
09:38.39*** join/#wowace Kalroth (~md@mail1.retailplanit.com)
09:40.32sbgoogle: find stan fb profile, NOW!
09:40.46Stanzillayou know my name, just type it in :D
09:42.44sbthat would be to easy
09:43.17quiescenso.o
09:43.48quiescensgo sleep
09:44.07sbalso it doesnt work :D
09:45.06znfanyone seen these drop? http://www.wowhead.com/item=86192#comments
09:46.06sbno, only mail + plate healer
09:46.46znfhaven't seen any yet :-/
09:46.49znffuckin' 10mans
09:47.24sbbetter do 10m with good ppl than 25m with 5 "i dont know what im doing at all" ppl!?!
09:47.46*** join/#wowace Bribri (~Brybry@unaffiliated/brybry)
09:48.02znfdunno why, but the trash drops in 10m are insane...
09:48.19znfwe split our main raid once and went MV with 2x10M groups
09:48.25znfwe had a total of 15 patterns drop
09:48.33sbyup, pattern drops are crazy
09:48.44znfin 25m it took us weeks to get them all
09:48.49sbi think i got all cloth patteron on my rogue now
09:59.53*** join/#wowace profalbert (~profalber@178.191.62.167)
10:16.37sbStanzilla, Gnarfoz, nevcairiel: (if you dont know it already) http://www.youtube.com/watch?v=IjZ1pPM2eKY (also http://www.youtube.com/watch?v=ZSMw-QcZBpo - first part)
10:28.31*** join/#wowace gix (~gix@dslb-088-066-107-194.pools.arcor-ip.net)
10:35.27Stanzillasb: https://fbcdn-sphotos-b-a.akamaihd.net/hphotos-ak-ash4/414724_473510549356846_1810372769_o.jpg nexus 4, too
10:35.38sbznf: but yes, next upgrade will be light of cosmos heroic for me - but i need coins :(
10:35.43sbStanzilla: videos!
10:35.48Stanzillanope
10:35.55sbyes
10:38.06Repochinchilla: 03ethancentaurai 04v2.5.9 * 147d249 /: [new tag] Created tag v2.5.9.
10:43.39Fiskerso Stanzilla
10:43.45Fiskersomeone pocketed my N4
10:43.46Fiskeri guess
10:43.53Fiskerdick moves
10:44.03Fiskeror hermes is worse than shit
10:45.07Stanzillalol what
10:45.22Fiskerit's almost been a week now
10:45.37Fiskershould've atleast started doing something yesterday
10:45.57Stanzillamaybe they cant find denmark
10:46.39Fiskermaybe
10:46.53Fiskergiven that it apparently takes a day just to get it to their sorting facility makes me worried
10:46.56znfseriously
10:47.09znfblizzard is terrible at quests spawn rates
10:47.10Fiskerusually that's what it takes for anything here to get sent
10:47.11znfmobs for quests
10:47.16Fiskeryour mom is terrible
10:47.55znfyour nexus4 is
10:48.22durcynten points to Stanzilla for troling fisker for weeks straight
10:49.28Stanzilla:D
10:52.24znflet's dump 500 people in a CRZ area and let's make the NPCs spawn every 5 minutes!
10:52.27znfthat will teach them!
10:52.46Fiskergetting to kill garrosh hellscream will be nice
10:57.23Stanzilladurcyn: did you get a chance to look at chatter yet?
10:57.44Stanzillaalso nevcairiel you could make reporting taint errors an option in bugsack
10:57.51Stanzilla(grabber)
10:57.55phyberznf: they used the same approach for CRZ mining nodes too.
10:59.01znfthis is the biggest bullshit ever: https://twitter.com/Ghostcrawler/status/267423927893110784
10:59.53Fiskerit's funny though znf
11:00.11Fiskerevery time players used that argument against Blizzard CM's they just went "Well no you can just choose not to"
11:00.43Fiskeri don't mind weekly valor cap though
11:00.44znfFisker, exactly
11:00.46znfI do
11:00.50znfespecially now
11:00.58Fiskerjust wish i didn't have to do tons of dailies and heroics to get it
11:01.00znfdidn't before
11:01.05znfnow it's annoying that I have to upgrade gear
11:01.10Fiskernot to mention eventually needing to do dailies for the coin
11:01.26znfI have 951 coins left
11:01.32znfI'm good for 2 more month
11:01.42znfbut, the valor shit is annoying now that I can upgrade gear!
11:01.46Fiskerupgrading gear is just a bonus you get along the way, no reason you need to have it done right away
11:02.30znfuhm, with that logic, you don't need to get gear at all...
11:03.11Fiskerindeed you don't
11:03.28Reposign-on: 03ethancentaurai 07master * v2.3.15-4-g714e505 / (12 files in 1 directory): [+4 commits]
11:03.29Repo714e505: Bump Interface number to 50100.
11:03.29Repofe26316: Apply profalbert's patch.
11:03.30Repoc4f801d: Update git attributes.
11:03.30Repob0ffcf2: Disable manual changelog.
11:03.33Fiskerbut even less so do you need upgrades
11:03.55profalbertEthanCentaurai: thanks
11:04.01znfIf you cap earn the Valor cap (1000 / week), it would take you 24 weeks (SIX MONTHS!) to upgrade every single item.
11:04.33Fiskerthat's a different issue
11:04.35EthanCentauraisomething to keep you going >.>
11:05.12znfEthanCentaurai, I wouldn't have an issue with that
11:05.19znfBUT, there's a total cap of points...
11:05.30znfremove the fuckin' cap so I can save my VPs for when I get BiS shit
11:07.52profalbertthe "total"-cap is really annoying.
11:08.36profalbertno point in saving them for future content anyway, as the next content-patch would cause point-conversion anyways
11:09.45znfno, I just want to save them for when I get better gear
11:09.53znfright now, if I get 3 pieces of gear in a single week, I can't upgrade them all
11:26.19Repolibperiodictable-3-1: 03muffinmanken * r417 / (2 files in 2 directories): More cleanup on  Misc.Usable.Quest and StartsQuest items
11:27.29Reposign-on: 03ethancentaurai 07master * v2.3.15-5-g72e0ef5 Core.lua: [+1 commit] Fix a copy/paste fail.
11:29.33znfFisker, it's like 100 penises told you: "no nexus 4 for you lol"
11:29.40Fiskerhey znf
11:29.40Fiskermad?
11:29.51znfI'm not the one waiting for my Nexus4 :D
11:30.02znffor, what? 3 weeks now? :P
11:32.11*** join/#wowace Dridzt (~Miranda@athedsl-193270.home.otenet.gr)
11:32.47hasteI am
11:35.39Fiskerhey haste
11:36.37*** join/#wowace harl (harl@dslb-092-073-109-124.pools.arcor-ip.net)
11:37.16hastehey Fisker
11:37.25Fiskerhey
11:37.28Fiskerare you mad?
11:38.54hasteno
11:39.04hastebut I'm having a hard time reading the screen, if that counts
11:43.10Repolibperiodictable-3-1: 03muffinmanken * r418 / (2 files in 2 directories): More cleanup on  Misc.Usable.Quest
11:50.26Repoxperl: 03asixandur * r797 XPerl_Party/XPerl_Party.lua: Revert "Fix for party showing erratically"
11:50.26RepoThis reverts commit 36afb5f81720f753175e537dfbcc63c3120d34a1.
11:50.32Repoxperl: 03asixandur * r798 XPerl_Options/localization.itIT.lua: Improved a few itIT strings
11:50.39Repoxperl: 03asixandur * r799 / (16 files in 16 directories): Toc itIT strings for titles and notes
11:52.26Repoxperl: 03asixandur * r800 XPerl_Usage.lua: Fixed "Unknown addon chat type" (now really).
12:33.10Fiskerbtw Stanzilla
12:33.23FiskerDO NOT throw the battery in municipal waste. The symbol of the crossed out wheeled bin indicates that the battery should not be placed in mu­nicipal waste.
12:33.28Fiskerisn't that great advice?
12:35.49Reposign-on: 03ethancentaurai 07master * v2.3.15-10-g48b561a / (9 files in 1 directory): [+5 commits] (1 truncated)
12:35.50Repo48b561a: Don't use the :random flag by default.
12:35.50Repo90369d3: Random text colouring is now trully random.
12:35.50Repo7e5655a: Make use of the namespace Blizzard provides.
12:35.51Repoac0b84c: Add an About panel.
12:38.54StanzillaFisker: yes thank you
12:39.08Fiskeryou should instead send your battery to me
12:39.12Fiskerbut using dhl express this time
12:41.39sbhe could also just send your phone (and not wait another 2 weeks)
12:42.36Fiskerhey sb
12:42.38Fiskerbattery is internal
12:43.03sb"challenge accepted"?
12:44.24*** join/#wowace Olison (Olison@fukdruidsgrr.org)
12:49.36znfWoah
12:49.50znfDid Fisker just get his N4? :o
12:50.32Stanzillano
12:50.36znfmeh
12:51.05durcynand he never will
12:52.37sbStanzilla knows because he hasnt sent it yet, right? :p
12:56.40durcynStanzilla: i haven't been able to test it yet, so no
12:56.50Stanzillaok
12:57.06Stanzillafinding someone to spam real id messages is difficult, too
12:58.22Fiskerspam me Stanzilla
12:58.24Fiskerbtw
12:58.29Fiskerthis is hilarious
12:58.34Fiskernot enough space in bug reports
12:58.44Fisker"submit a suggestion to have it expanded"
12:58.45Fisker:D
12:58.57EthanCentauraigiggity
13:01.40Reposign-on: 03ethancentaurai 07master * v2.3.15-12-g9187872 / (8 files in 1 directory): [+2 commits]
13:01.40Repo9187872: Remove unused translations.
13:01.40Repo79ea27e: Remove AceAddon-3.0.
13:11.39*** join/#wowace TNZe (~evil@198.62-97-238.bkkb.no)
13:12.57Reposaved_instances: 03oscarucb * r206 SavedInstances.lua: add a timer to the daily tooltip
13:14.32*** join/#wowace Elkano (~elkano@pool015.vpn.uni-saarland.de)
13:14.32*** join/#wowace Elkano (~elkano@WoWUIDev/WoWAce/Elkano)
13:14.32*** mode/#wowace [+v Elkano] by ChanServ
13:48.06durcynTorhal: fffffffff
13:48.14*** join/#wowace Ingela (~Ingela@213-66-222-210-no37.business.telia.com)
13:49.26sb@project sign-on
13:49.27Reposb: [WoW] SignOn (Updated Dec 03, 2012 at 13:02 UTC) - http://www.wowace.com/addons/sign-on/
13:50.00durcynfiltering CHAT_MSG_SYSTEM, ballsy
13:51.46EthanCentaurailet's see you do better
13:55.39Funkeh`EthanCentaurai, I got nonsensical taint issues when filtering system in badboy_levels, ended up going back to an addmessage hook
13:58.47EthanCentauraiyou'd think the hook would cause more taint than the filter >.>
14:00.00Funkeh`for some reason I can do the darkmoon preffesion quests again today :s
14:02.38nevcairieli have been usnig addmessage hooks myself for quite some time, and i never had taint issues because of that, always guessed its fine
14:04.58EthanCentauraiI've always filtered and never had issues :/
14:05.21EthanCentauraistill
14:05.31EthanCentauraiI'll keep it in mind if something happens
14:05.45durcynsomeone wake Torhal up so i can stab him in the eyeball for libdialog editboxes being shit
14:07.19Funkeh`make your own!
14:08.19Repoxperl: 03asixandur * r801 XPerl_Options/XPerl_FrameOptions.xml: Enable HoTs in XPerl_Options for Monks
14:08.56Fiskerhey Funkeh`
14:14.19*** join/#wowace Ressy (~resa1983@unaffiliated/ressy)
14:26.01Repochatter: 03durcyn 07master * v.1.3.5-25-gb06c440 / (41 files in 3 directories): [+4 commits]
14:26.02Repob06c440: toc/pkgmeta: add LibDialog for UrlCopy module
14:26.02Repo5a9b9a7: Localization: use ... for addon name where appropriate
14:26.02Repo0301991: Modules: stop using Chatter global to reference the main addon
14:26.03Repo4e095bc: UrlCopy: use LibDialog instead of FrameXML StaticPopup
14:26.14*** join/#wowace Mihau (~Mihau@76.164.170.2)
14:26.42durcynStanzilla: oh, and i think i included a change to highlight to ignore urls in there
14:26.56sb"i think"? :D
14:27.37durcynokay, I did.
14:27.41Repochatter: 03durcyn 07master * v.1.3.5-26-g600db92 Chatter.lua: [+1 commit] Chatter.lua: discontinue SETGLOBAL Chatter now that we no longer reference said global in modules
14:27.55durcynit's 0830 and i haven't slept in about 36 hours, you'd forget things too =P
14:29.18RessyDoes this mean chatter will finally stop bugging out?
14:29.36durcyni'm going to need a slightly more verbose bug report than that
14:29.39Ressylol.
14:30.08Fiskerso Stanzilla gotten my invite yet?
14:30.37RessyI'll check at home tonight durcyn, and submit a proper bug report if this round of fixes hasn't fixed it.
14:31.00durcynthe curseforge ticket system sucks in every way possible, just highlight me in irc
14:31.24Ressygotcha
14:42.07Reposign-on: 03ethancentaurai 07master * v2.3.15-13-g7ffc90b SignOn.toc: [+1 commit] Fix path to tekKonfigAboutPanel.
14:46.10Funkeh`an entire lib for a simple popup :p
14:46.12Repobasic-chat-mods: 03funkydude * r414 BasicCore.lua: popup frame visual tweak
14:46.37Repoitemguard: 03ethancentaurai 07master * v1.0-3-gd2b4d1c / (5 files in 1 directory): [+3 commits]
14:46.37Repod2b4d1c: Update readme.
14:46.38Repobce3e69: Fix paths to missing libraries.
14:46.38Repo58c9326: Update git attributes.
14:46.55durcynwriting your own popup code, tsk?
14:47.44Funkeh`a frame with an editbox on top
14:47.47Funkeh`ohnoez
14:48.27Repotradeskill-info: 03ethancentaurai * r510 TradeskillInfo.toc: Fix path to tekKonfigAboutPanel.
14:48.37durcyni mostly didn't want to dick with positioning, he worked out placement around existing staticpopups
14:49.10durcynthen proceeded to document absolutely nothing
14:49.52Funkeh`heh
14:50.52mitch0durcyn: good code is self-documenting :P
14:52.53durcynhis code's actually pretty clean, i'm mostly annoyed he's not here for me to bust his balls about having a .docmeta but not actually creating the wiki page it's supposed to update
14:54.42Repogathermate2: 03ethancentaurai 07master * 1.23.1-1-gfcda473 Bindings.xml: [+1 commit] Remove duplicate binding header.
14:55.07*** join/#wowace pompy (~Mike@68.38.56.4)
14:58.23Repoautoequipquestitem: 03ethancentaurai 07master * v1.2.4-10-g277b55b / (2 files in 1 directory): [+2 commits]
14:58.23Repo277b55b: Bump Interface number to 50100.
14:58.23Repodf50250: Make that function more better.
14:59.28EthanCentauraiok I'm done for now
15:00.53mitch0@project liblordfarlander-2-0
15:00.53Repomitch0: [WoW] LibLordFarlander-2.0 (Updated Dec 02, 2012 at 03:02 UTC) - http://www.wowace.com/addons/liblordfarlander-2-0/
15:01.07mitch0best project ever
15:01.18EthanCentauraihah
15:01.29EthanCentauraieven my code is better than his
15:05.50Torhal|workdurcyn: You bitching about LibDialog?
15:06.10durcynTorhal|work: digging it, actually, just go create the wiki page for your .docmeta, dammit =P
15:06.23Torhal|workHaha
15:26.54*** join/#wowace sb (~sb@sb.db6.org)
15:38.41*** join/#wowace Acenth (~Acenth@76.164.170.2)
15:41.27quiescensmoo
15:45.16EthanCentauraimeow
15:48.33quiescensmoo?
15:49.49EthanCentauraishoves quiescens over and makes a run for it.
15:50.31*** join/#wowace sb (~sb@sb.db6.org)
15:52.19*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
15:53.12quiescensdies.
15:56.39*** join/#wowace Acenth (~Acenth@76.164.170.2)
15:57.15AcenthStanzilla: The CC button centering is fixed, will be in this week's live update.
15:59.25*** join/#wowace sb (~sb@sb.db6.org)
16:06.46Funkeh`Acenth, with folder removal? :D
16:07.09Megalonremoves the Funkeh` folder
16:09.40EthanCentauraifunkeh munkeh
16:10.06Fiskerit is cold Funkeh`
16:10.23Funkeh`just a bit
16:28.44AcenthFunkeh, that'll have to wait until Dec, but it will happen
16:29.46Funkeh`it is dec Acenth :p
16:30.15Funkeh`I know it doesn't feel like it
16:30.45AcenthIt totally doesn't feel like it.
16:34.10*** join/#wowace Kalroth (~Kalroth@212.10.165.175)
16:43.36*** join/#wowace groktar (~gr@50.59.13.66)
16:46.18*** join/#wowace sb_ (~sb@sb.db6.org)
16:50.18*** join/#wowace Torhal_ (~torhal@c-71-207-224-241.hsd1.al.comcast.net)
16:51.51*** join/#wowace acethebunny (Syntax@173.80.112.167)
16:54.08*** join/#wowace Zyn- (~skreeee@h187n4-av-a11.ias.bredband.telia.com)
17:12.23*** join/#wowace stolenlegacy (~stolenleg@unaffiliated/stolenlegacy)
17:14.24nevcairielanyone else experiencing terrible lag?
17:28.42*** join/#wowace isman (~drag@82.67.196.34)
17:28.57EthanCentauraiyes
17:30.44Funkeh`not the only one then
17:32.32Reposimplehalo: 03starinnia 041.0.1 * r16 : Tagging as 1.0.1
17:39.39znfI laughed too hard: http://i.imgur.com/XIUcr.jpg
17:39.40znf:-/
17:52.52*** join/#wowace Elkano (~elkano@pool025.vpn.uni-saarland.de)
17:52.52*** join/#wowace Elkano (~elkano@WoWUIDev/WoWAce/Elkano)
17:52.52*** mode/#wowace [+v Elkano] by ChanServ
17:53.45Gnarfozsb_: ballz.de guy? :O
18:00.04sb_Gnarfoz: yep
18:00.13Gnarfozahmygawd
18:01.05sb_funny thing is, i know him because of wow, not because of ballz.de :|
18:03.50znfballz.deep?
18:07.57znfhmm
18:08.04znfI should read up a bit about HC differences in MV 10m :-/
18:09.07*** join/#wowace ZaB|SHC| (~Zaphod_Be@ip-88-152-122-214.unitymediagroup.de)
18:14.20znfhttp://www.youtube.com/watch?v=QA4BqwNGSoc&hd=1
18:14.39Fiskeri'm gonna have a bad time znf
18:14.45znfWhy?
18:15.20Repolibfail-mop: 03Maat * r23 LibFail-MoP.lua: add sonic blade
18:15.23Fiskeroh finally znf
18:15.31Fiskeronly took them 5000 years
18:15.32Fiskerbeen looking for that since years
18:15.35*** join/#wowace profalbert (~profalber@178.191.62.167)
18:15.36znfYeah...
18:15.36*** join/#wowace Yoshimo (~Miranda@p5B04C7A8.dip0.t-ipconnect.de)
18:15.43znfHope I don't have to buy it again
18:15.47znfI used to LOVE Swype.
18:15.50Fiskerfirst thing i thought when i tried swype
18:15.53znfBut they fucked up the romanian layout
18:15.59Fisker"Why can't i use spacebar in swipe?"
18:16.01Fiskerbam
18:16.17znfThey put âășțî on the layout, which nobody fuckin' uses in Romania...
18:16.19Fiskeranyway i was invited to some 10 man raid tonight
18:16.26Fiskerso i'm going to have to cap my remaining points tomorrow
18:16.32Fiskerincluding 2 LFR's
18:16.37Fiskeri'm going to have a bad time
18:16.47Fiskeror do 5 heroics instead
18:17.07znfI've actually done plenty of heroics on my druid
18:17.11znfcapped VPs there
18:17.16znfand had the buff for my priest
18:17.51Fiskeri remember a fun thing znf
18:17.59Fiskerwhen they first announced MoP
18:18.20Fisker"You can get progression nomatter if you raid, quest, dungeons, or whatever"
18:18.27znfyeah, right
18:18.28znfhaha
18:18.39Fiskerbut instead it turns out to be you can only get it if you raid, quest and do dungeons
18:18.46Fiskerturned*
18:19.11znfThey should just award +50% more VPs on everything at the moment.
18:19.16Megalonso 'whatever' is not an option anymore :/
18:19.29znfIt didn't feel like a chore with the buff on my priest to cap them.
18:19.31Fisker:( Megalon
18:20.02Megalonguess i can just park my druid somwhere again then
18:20.06Megalonat least he's 86 now
18:20.06Fiskerdoing X should award points up to weekly valor cap
18:20.23Fiskerwhether that be raids only, dungeons only, quests only or a combination of all 3
18:20.52Megalondoing what you like to hit the cap sounds like a nice idea ;<
18:21.01Fiskeryep
18:21.02Megalonor what you least hate in most cases
18:22.09Fiskerthey hsould almost have something equivalent of the arena system
18:22.11Fiskershould*
18:27.44*** join/#wowace grokse (~gr@50.59.13.66)
18:38.02MegalonFisker Karma Production Halted by Battery Supplier’s Bankruptcy
18:38.10Megalonwow, the "fisker karma", what a name
18:38.21pompyhttp://store.steampowered.com/news/9495/
18:43.09Megalonbig picture is that thing to use steam on a tv like a console?
18:43.47Megalonclicked that buttons once out of curiosity and and was like "OH MY GOD, STAHP" :<
18:44.04znfMegalon, it's pretty cool, tbh
18:44.14znfwait, what do they mean "available now"?
18:44.21Megalonout of beta?
18:44.22Megalon;D
18:44.28Megalonhohoho!
18:46.53pompyhttp://store.steampowered.com/sale/big_picture_release
18:46.59pompyyar
18:47.42Megalonhm, magicka, castLE crash0rs
18:47.46Megalonif only i had friends!
18:47.51pompyAccess to the complete Steam store is included, as is the Steam Community. Big Picture is available worldwide in over twenty languages, including German, French, Russian, Korean, and Portuguese.
18:48.46Fiskerhey znf
18:48.59Megalonhey Fisker
18:49.04Megalonhow's your nonexistant n4
18:49.09pompy78mb steam client update
18:49.11Fiskerhey Megalon
18:49.13Fiskerit's awesome
18:49.54pompy"- Games managed by the new content system can select alternate installation locations other than the Steam folder (Windows)"
18:50.24Fiskerhttp://i.imgur.com/YGScf.jpg <-me
18:51.00Megalonhehe
18:52.14Megalonoh, a steam update, hope that it won't prompt me to install the October 23, 2012 update once a day now
18:52.59pompyso i dont think galleon spawned at all this week...
18:53.02pompymessed up!!
18:58.56pompyawesome, testing big picture on the pc ... its awwesome.
19:03.39pompynoicee http://www.cisionwire.com/warner-bros--digital-distribution/r/warner-bros----machinima-press-release----mortal-kombat--legacy-2--web-series-to-debut-worldwide-exc,c9343084
19:10.31znf3rd /rl for talents...
19:11.19znf4
19:11.25pompy5 6 7 8 9
19:11.41pentium176rogue rogue
19:11.48znf5th...
19:11.53znfGOD DAMN IT
19:12.04pompynebula169, Primer: did that commit last night fix the error?
19:14.40PrimerI didn't play after updating
19:14.45Repolibtourist-3-0: 03Odica * r157 / (2 files in 1 directory):  (1 line trimmed from commit message)
19:14.45Repo- updated TOC to 5.1
19:14.45Repo- corrected battle pet levels for most zones
19:14.45Repo- added entrance portal coordinates for The Temple of the Jade Serpent
19:14.46Repo- added entrance portal coordinates for Stormstout Brewery
19:15.12PrimerI'll try now
19:15.17*** join/#wowace Wobin (~quassel@124-171-121-214.dyn.iinet.net.au)
19:15.18*** mode/#wowace [+v Wobin] by ChanServ
19:22.52nebula169pompy: i'd already fixed it so i didn't even check. the r899 version of the file has string in it, so it should be fixed
19:23.00nebula169has the*
19:25.58pompywhat did you do to fix it on your end?
19:26.28nevcairielwhat addon do people use these days as disenchant helper?
19:26.43nebula169deleted all the locales in the file except the debug one with the updated string :p
19:29.14pompylol
19:29.50nebula169nevcairiel: i've always used http://fizzwidget.com/disenchantpredictor/
19:30.02nebula169or you mean to actually de?
19:30.14nevcairielactually de
19:30.26nevcairielautomatically turn on auto-loot, one-click DEs, the works!
19:35.32nevcairieli suppose i could macro the autoloot
19:36.20nebula169i just use http://wow.curseforge.com/addons/molinari/ for actually de'ing, hold alt and click on things, never thought about autolooting, but that seems useful
19:37.20nevcairieli usually have auto-loot off
19:37.26nevcairielwhen disenchanting, its not that ideal
19:38.38winkI could not play without autoloot
19:38.49winkit's like walkign SW-IF without a mount. twice. backwards
19:39.23nebula169i have it off by default, its just habit when i go to loot something i hold shift
19:48.49nevcairielsame
19:49.15nevcairieli actually had it on in the beta accidentally, and i wondered why it didnt auto-loot because i pressed shift of course
19:49.36Repobad-boy: 03funkydude * r1059 / (2 files in 1 directory): anti-spam update
19:50.24Funkeh`old habits die hard
19:50.29Funkeh`took me about a month to stop pressing shift
19:51.54nevcairieli could just turn off shift
20:00.05*** join/#wowace Dark_Elf (~Dark_Elf@h75-100-158-7.wdrnin.broadband.dynamic.tds.net)
20:08.37Repobadboy_guilded: 03funkydude * r161 BadBoy_Guilded.lua: more ads
20:24.31*** join/#wowace Aens|Superiority (~a@24.212.233.165)
20:25.02Funkeh`Urg, some people. You PM them to make a minor change to their toc and in turn they want you to register to some bug tracker and make 1 ticket for something that takes 1 second to do
20:25.06Funkeh`how about f off
20:25.42Funkeh`or stop being such a rebel and use the curse/wowace ticket tracker like everyone else
20:26.16winkgithub!
20:27.49znfFunkeh`, tekkub? :P
20:28.00Funkeh`no
20:28.33Repobroker_bagfu: 03phyber 07master * 50100-1-1-g0f02e5b / (3 files in 1 directory): [+1 commit] Multiple changes.
20:29.33Funkeh`http://www.wowace.com/addons/skada/tickets/305-cannot-report-to-instance-chat-in-5-1/
20:29.43Funkeh`sounds like it should stay that way
20:29.52Funkeh`fuckers that spam in LFR
20:30.11nevcairielhaha yeah, best "bug" ever :p
20:30.33phyberthose guys that are #1 on DPS because of some AoE need their epeen moments.
20:32.42nevcairielshould setup a chat filter that detects the first line of a skada or recount report, and then ignore that person for 5s
20:34.10Funkeh`fuck that, add it to badboy tbh :P
20:35.23znfFunkeh`, I considered fixing that :D
20:35.28znfThen I tought I shouldn't :D
20:35.40Funkeh`oh that reminds me
20:37.14Repobig-wigs: 03funkydude * r9608 Plugins/Broadcast.lua: kill broadcasting in LFR
20:37.30Funkeh`well technically 5.1 broke it but yeah
20:40.55*** join/#wowace Bibi (~Bibi@unaffiliated/bibi)
20:40.55*** mode/#wowace [+v Bibi] by ChanServ
20:57.26Fiskerhugs Funkeh`
20:58.32Stanzillahello
20:58.47Fiskernot you Stanzilla
20:58.50Fiskeri h8 you :(
21:00.39Stanzillayeah sorry
21:02.15*** join/#wowace Gibbs (~Gibbs@CPE-121-223-71-203.lnse2.woo.bigpond.net.au)
21:06.05sb_what happend?
21:06.12sb_still herpesing around?
21:06.39nevcairielwe told you not to use herpes
21:06.51nevcairielthey suck at national, must be worse at international :p
21:12.01GibbsCan someone help me with an addon?
21:12.06Gibbsfunction DamageReduction:CombatLogEvent(_,timestamp, eventtype, hideCaster, srcGUID, srcName, srcFlags, srcRaidFlags, dstGUID, dstName, dstFlags, dstRaidFlags, ...)
21:12.06Gibbsif eventtype == "SWING_DAMAGE" then
21:12.06GibbsDamageReduction:MeleeDamage(timestamp, eventtype, srcGUID, srcName, srcFlags, dstGUID, dstName, dstFlags, amount, overkill, school, resisted, blocked, absorbed, critical, glancing, crushing)
21:12.06Gibbsend
21:12.06Gibbsend
21:12.06Gibbsfunction RecountDamageReduction:MeleeDamage(timestamp, eventtype, srcGUID, srcName, srcFlags, dstGUID, dstName, dstFlags, amount, overkill, school, resisted, blocked, absorbed, critical, glancing, crushing)
21:12.06Gibbsprint("Amount: ", amount)
21:12.07Gibbsend
21:12.17GibbsResults in: Amount: nil
21:12.23Gibbsany idea why?
21:12.39GibbsI believe I am passing the correct parameters
21:12.44nevcairielyou are not
21:12.58phyberlooks at pastebin url in topic
21:12.59Gibbswhat am I missing?
21:13.22nevcairielthe first function has "..." in its parameters, where would the stuff like amount, overkill, school, etc come from? :p
21:13.56Gibbsthe eventtype?
21:14.00znfFunkeh`, now put that in DBM, too :(
21:14.19Funkeh`znf, dbm should be "borken" by 5.1 too
21:14.25Funkeh`there is no raid warning channel for lfr
21:14.35Funkeh`broken*
21:14.44GibbsI'm using code from Recount and the amount etc seem to come from the eventtype
21:15.11Gibbsdoesn't "..." mean all other parameters?
21:15.28znfFunkeh`, oh, cool
21:16.37EthanCentauraithere is no "amount" parameter in the first function
21:16.41EthanCentauraiso it's passing nil
21:16.47Fiskerpls nevcairiel
21:17.03Fiskerwhen i get it'll probably be damaged AND stolen
21:17.04Fisker:o
21:17.14nevcairielmost certainly the second
21:17.15Fisker+it
21:17.22nevcairielbecause i did it
21:18.05nevcairielGibbs: you cant use an "amount" variable which doesnt exist, obviously its nil
21:18.16Repoatlasloot-enhanced: 03celellach * r4024 / (3 files in 3 directories): Added new Darkmoon Faire items
21:19.25nevcairielyou have to use the "..." either to extract the parameters you want and assign them to variables, or directly use it in the function call
21:20.36Gibbshmm recount has something like this:
21:20.37Gibbslocal EventParse =
21:20.37Gibbs{
21:20.37Gibbs["SWING_DAMAGE"] = Recount.SwingDamage,
21:20.37Gibbs}
21:20.37Gibbsfunction Recount:CombatLogEvent(_,timestamp, eventtype, hideCaster, srcGUID, srcName, srcFlags, srcRaidFlags, dstGUID, dstName, dstFlags, dstRaidFlags, ...)
21:20.38Gibbsparsefunc = EventParse[eventtype]
21:20.38Gibbs
21:20.39Gibbsif parsefunc then
21:20.39Gibbsparsefunc(self, timestamp, eventtype, srcGUID, srcName, srcFlags, dstGUID, dstName, dstFlags, ...)
21:20.40Gibbsend
21:20.40Gibbsend
21:20.41Gibbsfunction Recount:SwingDamage(timestamp, eventtype, srcGUID, srcName, srcFlags, dstGUID, dstName, dstFlags,amount, overkill,school, resisted, blocked, absorbed, critical, glancing, crushing)
21:20.41Gibbsprint("Amount: ", amount)
21:20.42Gibbsend
21:20.44Gibbswhat are they doing right?
21:20.52Torhal|workDude, use a paste site like paste.wowace.com
21:20.58Torhal|workSeriously, don;t spam the channel.
21:21.02nevcairielthey are not pasting code into irc is what they are doing right
21:21.02Gibbssorry
21:21.05Torhal|workIt's unreadable like that anyway
21:21.26nevcairielTorhal|work: only if you have a crappy client that collapses whitespace
21:21.32nevcairiellooks fine here :p
21:21.43Torhal|work:P
21:21.57nevcairielGibbs: it does exactly what i just told you, use the ...
21:22.39Gibbsso use ... on my DamageReduction:MeleeDamage function?
21:30.47*** join/#wowace LibertineLush (~Libertine@unaffiliated/libertinelush)
21:31.00Fiskerso nevcairiel
21:31.06Fiskergotten a brawler's guild invite for me?
21:31.19nevcairieli dont invite stinky horde players
21:32.00nevcairielnot that i have an invite myself
21:33.35Megaloncollapses onto nevcairiel
21:36.33Kalrothhey Fisker you http://i.imgur.com/0Wgj6.gif
21:46.43Fiskernope i'm not bouncing jello
21:51.08*** join/#wowace Seerah (~RyanNL@adsl-74-242-165-51.mem.bellsouth.net)
21:54.47*** join/#wowace Telshin (~textual@76.164.170.2)
21:57.39Repoatlasloot-enhanced: 03ananhaid * r4025 Locales (2 files in 1 directory): - zhCN/zhTW update.
21:57.40Repoatlasloot-enhanced: 03ananhaid * r4025 Locales (2 files in 1 directory): - zhCN/zhTW update.
21:58.33Fiskerumad Kalroth ?
22:11.52*** join/#wowace Jitta (Jitta@91-65-40-93-dynip.superkabel.de)
22:12.16znfand I'm back at reloading 10 times
22:12.19znffor a talent
22:12.32*** join/#wowace quiescens (~quiescens@gateway/tor-sasl/quiescens)
22:12.44durcynWHY, ZNF
22:12.57durcyni'm going to yell at you until you fix it
22:13.02znfAce3 has been blocked bla bla bla
22:13.09znfor whatever the wording is
22:16.37Slayman1simulationcraft is simming Arcane Mage in T14H to have the best DPS, that looks wrong-ish
22:16.42*** join/#wowace TradeMark (~trademark@c-24-22-242-118.hsd1.wa.comcast.net)
22:17.39Gnarfozznf: ACTION HAS BEEN BLOCKED
22:17.46znfyes, whatever
22:17.47znf>_<
22:17.56Gnarfoznope, AGAIN!
22:17.59Gnarfozblockkkkked
22:18.11Gnarfoznothing you do helps! blocked!
22:18.12Gnarfozarghh
22:18.32Gnarfozit's changing between TradeSkillMaster and Ace3 for me, now
22:19.20durcynbet you a dollar it's a TSM hook then
22:20.40GnarfozI aint got no dollars
22:20.51Gnarfozalso, why would it be ace3 some times, then?
22:20.53Slayman1I can lend you one
22:21.21durcyni've only seen ace3 getting blamed for acehook lately
22:22.04znfIt's always Ace3 for me
22:24.13durcynthough i suppose it could also bee aceconfigdialog addtoblizoptions
22:24.49durcyn-e
22:25.19Gnarfozhow to know? fucking taintlog, how does it work?
22:25.37durcynbecause of http://www.wowace.com/addons/ace3/tickets/137-ace3-taints-interface-options-in-combat/ , which someone just linked in #wowuidev
22:27.23durcynthat's the source of most of the MultiBar / CompactRaidFrame taint errors anyway
22:31.34Gnarfozthose would be awesome to get rid of, too
22:36.04Funkeh`I was to stab something
22:36.07Funkeh`what a shit LFR
22:36.08Funkeh`wow
22:36.09Stanzillahey
22:36.12Funkeh`people with 10k dps
22:36.32Repobig-wigs: 03funkydude * r9609 HeartOfFear/Shekzeer.lua: Shekzeer: Enable berserk on LFR
22:36.36Funkeh`yup, we hit it, fml, now 15min again
22:36.41Stanzillaso durcyn I haven't looked at all the diffs but you just replaced the popups, right?
22:36.48durcynStanzilla: among other things
22:36.56Stanzillawas bnet url copy in it?
22:37.04durcynpossibly
22:37.33EthanCentauraiwho the hell opens config in combat anyway
22:37.34EthanCentaurai>.>
22:37.35durcynlooks like i committed it when i was cleaning up the addon namespace stuff, yeah.  test.
22:37.35EthanCentaurai<.<
22:37.37Stanzillatime to test
22:37.47StanzillaFunkeh`: spam a url in your real id message pls
22:38.22Stanzilladidn't work
22:38.26Stanzillanow with http://?
22:38.48durcynthe parser doesn't require a protocol
22:39.29durcynand, no, i didn't commit it, now that i look ;)
22:39.38Stanzillahaha ok
22:45.53GnarfozEthanCentaurai: everyone!
22:54.01sbStanzilla, Gnarfoz - wtf is wrong with you
22:54.16Stanzillawhy?
22:54.26sbthere.
22:55.48Stanzillawhat?
22:56.24sbsad panda, bad panda, mad panda
22:56.27sbpanda panda
22:56.52Stanzillaone of my guildies did "sad panda" and he is a badie, so I did "bad panda"
22:57.04Stanzillathen it took off and all other people posted something
22:57.10sb:(
22:57.49sbfisker is like "n4 panda"
22:59.18Repochatter: 03durcyn 07master * v.1.3.5-29-g0dc35a9 Modules (4 files in 1 directory): [+3 commits]
22:59.19Repo0dc35a9: parse CHAT_MSG_BN_INLINE_TOAST_BROADCAST
22:59.19Repo3ecac88: use CHAT_MSG_foo GlobalStrings rather than our own silly localizations
22:59.20Repoaf06136: use INSTANCE for all IsInGroup(LE_PARTY_CATEGORY_INSTANCE) situations, remove BATTLEGROUND
22:59.57durcynStanzilla: try that i guess, i didn't do anything but add the event yet
23:00.08durcynwhich should be all that's required, but you said you already attempted ti?
23:00.12Stanzillaif my theory is right it will not work
23:00.13Stanzillabut yeah
23:00.30durcynthat's the fun thing about words like "should"
23:02.16*** join/#wowace groktar (~gr@108-237-102-52.lightspeed.frsnca.sbcglobal.net)
23:03.16*** join/#wowace Groktar[cyloncop (~gr@108-237-102-52.lightspeed.frsnca.sbcglobal.net)
23:03.18durcynyeah, just had someone set one, parsed correctly
23:04.30StanzillaFunkeh`: pls
23:05.07Stanzillaor sb Gnarfoz
23:05.09Stanzillaone of you!
23:05.09Gnarfozwhat
23:05.11Gnarfozthe hell
23:05.12Gnarfozis going ON
23:05.16Stanzillaput
23:05.16Stanzillaa
23:05.17Stanzillaurl
23:05.19Stanzillain real id notice
23:05.29durcyndon't do it
23:05.46Stanzillaworks
23:05.47Stanzillawtf
23:07.35Gnarfozwtf man, which one of those is Funkeh
23:07.38Gnarfozor is he invisibul
23:07.53Repochatter: 03durcyn 04v1.3.1 * ef3e158 /: [new tag] v1.3.1
23:08.04durcynwait, fuck, these tags are a mess, was that a duplicate?
23:08.18durcynthere are  v1 and v.1
23:09.08Repochatter: 03durcyn 04v1.4.0 * 90405ed /: [new tag] v1.4.0
23:15.22StanzillaI really don't understand why it didn't work for me
23:22.25Torhalentangles Stanzilla's particles with those of Megalon.
23:24.29Groktar[cyloncopgross.
23:26.54Stanzillaindeed
23:30.44Megaloncould have been worse, I read 'testicles' first time
23:42.32GroktarD:
23:50.05Megalonyeah, Groktar would have enjoyed that one. you pervy perv :(
23:54.24sbStanzilla: help!
23:54.30MegalonSTAHP
23:54.50Stanzillasb: what
23:54.51sb12/4 00:53:40.923  An action was blocked because of taint from epgp_lootmaster_ml - RemoveTalent()
23:54.53sb12/4 00:53:40.923      Interface\AddOns\Blizzard_TalentUI\Blizzard_TalentUI.lua:10 OnAccept()
23:54.56Stanzillago away
23:54.57sb12/4 00:53:40.923      Interface\FrameXML\StaticPopup.lua:3897 StaticPopup_OnClick()
23:54.59sb12/4 00:53:40.923      StaticPopup1Button1:OnClick()
23:55.02sbcan i fix that? :P
23:55.09Stanzillayes
23:55.56Megalonhey Stanzilla
23:55.58Megalongo fix that
23:56.00sb<PROTECTED>
23:56.03sbhmmm
23:56.53Gnarfozuse 4, not sure why anyone suggested 3 when there's 4 around

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