IRC log for #wowace on 20090328

00:00.46NeoTronanswer: http://ace.pastey.net/111083
00:01.24NeoTronhmm
00:01.32NeoTronthat probably will break on beta with the color blind option
00:01.36Catreinano no no
00:01.41CatreinaI dont want to scan tooltips
00:01.51CatreinaI want to know from a function call!
00:01.53NeoTronme neither
00:01.57Catreinapouts
00:02.08NeoTronfunction mod:GetBindOn(item)  <-- function call ;-)
00:02.36CatreinaI see that
00:02.37Catreinalol
00:03.04Catreinabut I wanted to not scan tooltips. that was part of the reason I was not using CraftyGnome!
00:03.05Catreinalol
00:03.12NeoTronwell see you can't avoid it
00:03.25CatreinaI see =(
00:03.30NeoTronthere's quite a bit of info only available via tooltip scanning
00:03.39NeoTronlike I want to know if a player can use an item
00:03.46NeoTronseems like the only way to know is tooltip scanning
00:03.59Catreinawell I could, but it would take alot larger db (with a list of the soulbound items not to save)
00:04.02NeoTronI mean for token items
00:04.56Catreinawell, it looks like the only thing I cant get from the tooltip for this is indeed whether it is BoP or not
00:05.19Catreinabecause everything else looks like it is in GetItemInfo in some form or another
00:05.51Catreinabah
00:07.00vhaarryou can't escape the gnome
00:07.03vhaarr;P
00:07.35NeoTronyou'd think that there would be query to see if _I_ can use the item or _I_ can equip it
00:07.54NeoTronbut it seems the query methods just says whether the item itself is usable or equipable
00:08.05NeoTronfor someone out there
00:08.19taledenis there any way to tell curse that my file is supposed to be compatible with 3.1?  it sync'd automatically from wowace and defaulted to 3.0.9
00:10.04CatreinaI can indeed =)  
00:10.26CatreinaNeoTron just provided me a nice little 2 function snippet I can use to scan the damn tooltip =/
00:11.48vhaarrdoesn't work, you need to scan the whole tooltip
00:12.12NeoTronvhaarr: works for me.. on live right now
00:12.22vhaarryeah, "right now" is the key phrase :p
00:12.37NeoTronsee this: 17:01 < NeoTron> that probably will break on beta with the color blind option
00:12.41vhaarrah
00:12.46vhaarryeah you're right, it will break
00:12.49NeoTronsince it then is the next roww
00:13.20NeoTronit seems like for usable or not I just scan for... the red color code!
00:14.00vhaarr"A new project launched by Google's Python engineers could make the popular programming language five times faster."
00:14.03NeoTronrather, equippable. I want MagicDKP Client to auto-pass if the player can't use it
00:14.30NeoTronaka we use python a lot, let's see how we can save a bazillion dollars by making it more efficient
00:14.34Catreinaok, why would I have to scan the whole tooltip?
00:15.05NeoTronCatreina: on the PTR the BoE thing  isn't on line 2 but line 3. now I don't know any case where it would be on any other line though
00:15.13Catreinaohhhhh
00:15.17vhaarrNeoTron: you don't need that, you can use IsEquippableItem
00:15.18Catreinagoddamnit
00:15.23NeoTronvhaarr: incorrect
00:15.28vhaarrbecause?
00:15.30NeoTronthat returns true on items _I_ can't equip
00:15.34NeoTronlike a shield on a DK
00:15.41vhaarryeees ?
00:15.43NeoTronit just means the item itself is equippable by someone
00:15.59CatreinaI just need to know if the item is bind on friggin pickup
00:16.08Catreinajc-only items ya know
00:16.08NeoTronvhaarr: => I want MagicDKP Client to auto-pass if the player can't use it
00:16.23NeoTronconsidered using a hardcoded list of jc only items?
00:16.29NeoTronnot automagic but cleaner?
00:16.47Catreinacleaner but requires a little more vigilance with updating
00:16.51vhaarrNeoTron: ah right, it's not per-character
00:16.54NeoTrondoesn't change that often
00:17.22NeoTronvhaarr: also I don't think it'd return true for an armor token which has Class: X, Y, Z
00:17.31vhaarrindeed
00:17.36NeoTronI'll probably have a class => item type mapping
00:18.09NeoTronto avoid tooltip scanning 99% of the time
00:18.24NeoTronalthough as I said might be easier just to scan for the color code used for "not usable" on the tooltip
00:19.29Catreinaand I suppose theres no way to scan the whole tooltip in one call for a single piece of info?
00:19.49vhaarrsure there is
00:20.00vhaarrdepends how you define "one call"
00:20.02NeoTroneither manually loop through the lines -  you want to look at LibGratuity-3.0
00:20.03Catreina.... CG right?
00:20.17vhaarrCG scans the whole tooltip in one go
00:20.21NeoTroneither to just look to see what it does or to use it if it fits your needs
00:20.29Catreinalawls
00:20.31vhaarrjust look at CG, ignore gratuity
00:20.39Catreinacant escape that leper gnome
00:20.39NeoTronzign
00:20.40Catreinalol
00:20.43NeoTronzing
00:20.47Catreinathat crafty leper gnome
00:21.26Catreinayour scanItem code?
00:21.29vhaarryes
00:21.34vhaarrthe whole do ... end block
00:21.46NeoTronin the end it's a mess that you're required to use tooltips for this shit
00:21.47CatreinaI was looking at that earlier
00:21.51Catreinavery very concise
00:22.08Catreinahad me confused until someone told me about how it is in there to be in its own namespace
00:22.19Catreinawith scanItem being... upvalue?
00:22.21vhaarryes
00:22.46Catreinaso yeah.
00:23.19Catreinathat is one nifty piece of code
00:23.53Catreinaloops through everything in the tooltip, concatenates it all, then you can do a search on the whole string.
00:24.03CatreinaNeoTron - you could do that too
00:24.10Catreinalol
00:24.22Catreinapromote the gnome
00:24.22vhaarrif you're just looking for the BoP string, you shouldn't do that
00:24.35Catreinathen what?
00:24.36vhaarrthen you'd just loop through the strings and check each string, don't concat them all
00:24.53vhaarrin the |for i = 1, scanner:NumLines() do| loop
00:25.09vhaarrand you'd only have to scan for the left line
00:25.18vhaarrerr, nvm that
00:25.22vhaarrthen do
00:25.25vhaarrlocal left, right = lcache[i]:GetText(), rcache[i]:GetText()
00:25.38vhaarrif left == ITEM_BIND_ON_PICKUP or right == ITEM_BIND_ON_PICKUP then return true end
00:25.55vhaarrand call the function isItemBoP
00:25.58vhaarrfor example
00:26.09Catreinaso the only time I actually run through the whole tooltip would be if the BoP line was the very last
00:26.16Catreinainteresting
00:27.21NeoTronright
00:27.30NeoTronand yeah I need to change mine
00:31.17*** join/#wowace kagaro (n=kagaro@cpe-098-026-067-218.nc.res.rr.com)
00:31.46Catreinacan you have a local function inside a function?
00:32.13NeoTronyes
00:32.30Catreinaawesome
00:32.38NeoTronand you can have a local function in the function local function too if you so wish!
00:33.23*** part/#wowace kagaro (n=kagaro@cpe-098-026-067-218.nc.res.rr.com)
00:34.15Catreinanice
00:34.30taledenyou can even define a function, call it in-place, and let it immediately disappear to be garbage-collected
00:40.15Catreinawhat the?!?  There are LOTTERY Functions?!?
00:41.22*** join/#wowace aestil (n=chatzill@cpe-76-95-132-88.socal.res.rr.com)
00:42.30Kilroo1The more I learn about Lua
00:42.46Kilroo1the more it feels like coding in Javascript with SQL syntax
00:45.10Catreinawhoah
00:45.15Catreinamemory leak
00:45.36*** join/#wowace Koben (n=doot@ip68-97-178-133.ok.ok.cox.net)
00:45.54Catreinamemory allocation error: block too big
00:45.55Catreinalol
00:46.09KobenHey uhm.. maybe it's just my imagination, but all of a sudden all the font outlines in WoW seem really jagged and ugly.
00:47.29*** join/#wowace xemacs (n=xemacs@stress-kind.de)
00:47.55Arrowmastertheyve always been jagged and ugly
00:48.54KobenI guess I've just noticed then..
00:48.54Catreinawow
00:49.19Catreinatwo opens of the JC panel with my mod running and I jump from 1mb to 1.5
00:49.41Arrowmaster"08:31:46p (Catreina) can you have a local function inside a function?"
00:49.42Arrowmasterdont do that
00:50.03Arrowmasterunless youre absolutly sure about what you are doing
00:50.39Catreinahmmm
00:50.42NeoTronKoben: seems to happens sometimes to me
00:51.16Repo10arl: 03Jim-Bim * r1615 ARLFrame.lua: AckisRecipeList:
00:51.19Repo- fixed obtain/general frame width and some comments (Ticket 461)
00:52.08Catreinawell I'll be damned
00:52.33Catreinataking the tooltip scanning code that vhaarr suggested i look at seems to have stopped the leak
00:52.49KobenThey definitely seem more jaggedy and blocky than usual.
00:52.55Catreinawhy not embed functions within functions?
00:53.46ckknightCatreina: each closure takes up memory. It's 16 bytes + 4 bytes per unchanged upvalue + 16 bytes per changed upvalue
00:55.20KobenI guess they always have been
00:55.54Catreinawhats a closure, for those of us (me) who have only been at this a day.
00:56.49ckknighta closure is an instance of a function, basically
00:56.56ckknighte.g.
00:57.19ckknightlua> local function make() return function() end end; print(make(), make(), make())
00:57.20lua_botckknight: function: 0x80844e0, function: 0x80844c8, function: 0x8084760
00:57.31ckknightthey're all the same function, but separate closures
00:58.58ckknightthe function itself takes up a static memory, which isn't a big deal, but each closure takes up new memory on each creation
00:59.14Catreinaok
00:59.22Catreinaso how do you clean that up?
00:59.47ckknightby moving the internal one out of the other function
00:59.56ckknightso it's declared once
01:00.08*** join/#wowace Pizik_afk (n=Pizik@planeshift/gamemaster/Pizik)
01:00.28ckknightlua> local function f() end; local function make() return f end; print(make(), make(), make())
01:00.29lua_botckknight: function: 0x8084420, function: 0x8084420, function: 0x8084420
01:01.33Catreinaso this => http://paste.wowace.com/400/  being the code vhaarr has in CraftyGnome for tooltip scanning (modified for Jeweler/JCList) is bad?
01:01.41Catreinawell, not bad, but not efficient?
01:02.03vhaarrthat's bad
01:02.14Catreinawhat did I do that I shouldnt have done?  =)
01:02.24KobenWell this is irritating. I'm not able to change the font over people's heads despite replacing the font that does it in the Fonts\ folder. I know it's possible..
01:02.26CatreinaI should take the functions out right?
01:02.35vhaarryou create a new scanner on each invoke of :isBOP
01:02.38vhaarryes
01:02.42GnarfozKoben: replaced all 4 instances in the font folder?
01:03.01KobenArial and Friz.. I was told it was Friz.
01:03.04GnarfozKoben: or rather 'placed', not replaced, since no Fonts\ folder exists
01:03.07KobenFRIZQT__.ttf
01:03.10Catreinathats the memory leak I saw occur when spamming the rescan button
01:03.14KobenIt replaced it for other things
01:03.14Catreinait crashed wow for me =)
01:03.23Kobenbut not the font over people's heads
01:03.39Gnarfoztry making all 4 copies of the same font
01:03.41Gnarfozit should change
01:04.00Gnarfozyou can go back and return them to their originals one-by-one and see which one it is
01:04.14vhaarrCatreina: http://paste.wowace.com/401/ this is what you want
01:04.35Catreinayeah
01:04.39Catreinathats what I was just doing
01:04.54vhaarryou see, stop running from the gnome, embrace it
01:05.19KobenI just replaced all four fonts and the font used above people's heads is still the same..
01:05.31vhaarrKoben: did you restart wow?
01:05.35KobenYes
01:06.01vhaarrARIALN.ttf  FRIZQT__.ttf  MORPHEUS.ttf  skurri.ttf
01:06.05vhaarrthose are the font names
01:06.18KobenThey sure are.
01:06.31vhaarrso you've got some addon that sets the font ingame then
01:06.34KobenOh here we go. I deleted ClearFont2 and now it's doing it.
01:06.40vhaarrheh
01:07.00Kilroo1Aw, CRAP.
01:07.16KobenDoes anyone know a really, really big font I can use for people's heads because I can never freaking read it
01:07.19Catreinafrickin Pyrestones are ilvl 100?!?
01:07.43vhaarrCatreina: yes, TBC epic gems are higher item level than WotLK blues
01:08.13Catreinawow, horrendous
01:08.25Catreinaimho of course
01:08.25Catreina=)
01:08.36Kilroo1Oh good.
01:08.50Kilroo1I had a backup of my modified picoButtons with tooltips.
01:09.37KobenKilroo: With fixed squashed buttons?
01:09.41vhaarrCatreina: the good news is, wotlk epic/blue and tbc epic/blue each have their own, static item level, so do with that information what you want
01:09.49Kilroo1No, no fixed buttons. Just tooltips.
01:09.58Kilroo1Buttons are quite squashedy.
01:09.58KobenHuh. What's wrong with the tooltips?
01:10.11Kilroo1um, it doesn't come with them?
01:10.13vhaarrCatreina: i.e. all TBC epic gems are ilvl 100
01:10.17vhaarrbut no wotlk ones are
01:10.18Kilroo1At least not as far as I could tell.
01:10.18KobenKillroo: Use Docking Station
01:10.19Catreinayeah
01:10.25fewynwtb more people to test new vault boss alliance side on the pvp ptr realm
01:10.26KobenpicoButtons works flawlessly with Docking Station
01:10.28KobenNo squished buttons either
01:10.28Kilroo1What's Docking Station?
01:10.42Kobenhttp://www.wowinterface.com/downloads/info11831-DockingStationDisplay.html This
01:10.50Kilroo1Maybe it has a feature I can rip out and put in cargoShip
01:10.54CatreinaDon Julio's Heart == ilvl 130 =/
01:11.20Kilroo1Or NinjaPanel.
01:11.27Kilroo1If I break down and try it.
01:12.03KobenDocking Station finally enabled me to switch over to LDB
01:13.09KobenSo does anyone know of an overscaled font I can use for using above people's heads in WoW?
01:13.24NivFreakiPhone autenticator ftw
01:13.34NivFreakno more dongle for me
01:16.12KobenI'm never able to read them unless I'm in someone's face.
01:18.23Catreinahmm
01:18.42Catreinabc rares and wrath uncommons are both ilvl 70 it looks like
01:24.29aestili'm moving around the party group in PB4
01:24.35aestiland its randmonly snaping to some invisible stuff.
01:24.41aestilI can't tell why, or what.
01:24.45aestileven if I hold down shift
01:26.44aestilthey like 'bounce away' from the edge
01:26.48aestilthese are vertical UF's
01:30.48*** join/#wowace resker (n=fefsd@c-71-236-27-178.hsd1.ga.comcast.net)
01:31.26CatreinaI am done coding for now
01:31.30Catreinamy brain hurts
01:31.41CatreinaI will pick it up again on Monday or so =)
01:34.11*** join/#wowace Catreina (i=jennifer@mta1.snow-family.org)
01:34.21Catreinastupid me closed instead of minimizing =/
01:37.29*** part/#wowace Pizik_afk (n=Pizik@planeshift/gamemaster/Pizik)
01:40.10*** join/#wowace break19 (n=break19@68.63.49.20)
01:40.25thulthe episode where amber dies, house md, makes me sad
01:53.10ckknightthul: yea
01:58.30thulindeed.
02:06.25*** join/#wowace digmouse (n=chatzill@58.20.47.166)
02:08.49*** join/#wowace mjc (n=mjc@c-66-176-165-198.hsd1.fl.comcast.net)
02:16.39*** join/#wowace quoin (n=quoin@ppp121-44-144-199.lns10.syd7.internode.on.net)
02:16.43thulanyone can suggest a sci-fi, thriller or action movie I should download and watch?
02:17.40*** join/#wowace taleden (n=atfrase@user-38q41i6.cable.mindspring.com)
02:18.14*** join/#wowace mjc (n=mjc@c-66-176-165-198.hsd1.fl.comcast.net)
02:20.34ckknightthul: Thirteenth Floor
02:20.47*** join/#wowace SqueeG (n=SqueeG@74-32-72-163.dr03.mdtw.ny.frontiernet.net)
02:21.15thulhmm, good point, I never got around to seeing that
02:22.03*** join/#wowace Daemona (n=koaschte@i59F6291D.versanet.de)
02:25.01ulicyea Thirteenth Floor was much better than I expected.
02:26.01*** join/#wowace EvilJohn (n=eviljohn@99-16-140-147.lightspeed.austtx.sbcglobal.net)
02:26.31*** join/#wowace kd3 (n=kd3@wikia/kaydeethree)
02:26.38*** join/#wowace Dark_Elf (n=Dark_Elf@ip89.net253.mw.net)
02:26.51*** join/#wowace Curses (n=justinki@ool-4350693f.dyn.optonline.net)
02:26.53*** join/#wowace p3lim (n=p3lim@084202164112.customer.alfanett.no)
02:27.52Repo10pitbull4: 03ckknight 07master * bb9b53a / (7 files in 2 directories): [+1 commit] add VisualHeal module, using LibHealComm-3.0. Mostly based off of the version from PB3.
02:27.59ckknightStanzilla: test ^--
02:28.46ulichooray!
02:29.04SqueeGThe higher learning mod confuses me...
02:29.07ulicthat and debuff borders where the things I missed the most from pb3
02:29.47*** join/#wowace Neebler (n=Sean@70.130.69.124)
02:31.24*** join/#wowace Wizardling (i=Durandal@ip-118-90-38-172.xdsl.xnet.co.nz)
02:36.29*** join/#wowace yleaf (i=HydraIRC@116.235.123.58)
02:36.31WizardlingHi - how can I reset my settings window's position?
02:36.55WizardlingIt's dragged up so far the draggable toolbar is no longer reachable
02:36.59ckknightblah
02:37.05thulI'm downloading thirtheenth floor and fifth element
02:37.05ckknightwhat settings window?
02:37.06thulsounds like a good saturday :-)
02:37.09thulcya tomorrow guys I'll just jump off to bed now.
02:37.12ckknightthul: sure does
02:37.16Wizardlingreloading the UI does nothing (though I seem to recall it working before)
02:37.26Wizardlingthe game's settings window
02:37.41Wizardlingspecifically the Interface window
02:38.03Wizardlingany ideas?
02:38.30Repo10rswapper3: 03x87bliss * r37 / (3 files in 1 directory):
02:38.33RepoAdded Offhand option (defaults to On) to toggle looking in Off-Hand for the weapon.
02:38.38WizardlingI'm seriously considering restoring WoW from my last backup, but that's just dumb to have to do.
02:39.53Repo10rswapper3: 03x87bliss 04v3.0.9.6 * r38 : Tagging as v3.0.9.6
02:40.08ckknightWizardling: *shrug*
02:40.18ckknightWizardling: didn't realize that moved.
02:41.20ulicWizardling: try editing your layout-local.txt file InterfaceOptionsFrame
02:41.48Repo10pitbull4: 03ckknight 07master * 367d600 / (6 files in 4 directories): [+2 commits]
02:41.49Wizardlingthat's insane
02:41.51Repo367d600: Rename Banzai to Aggro
02:41.52Wizardlingno offence
02:41.54Repob8642f5: Make the Banzai module a bit saner.
02:41.54ulicnot sure if those are stored serverside also or not, based on the name I'd guess so
02:42.03ulicthat's not insane at all
02:42.19Wizardlingoh yes it is
02:42.20ulicis sitting right in your charcaters directory
02:42.49Wizardlingthere should be an easy way to move windows back to default positions if you can drag them off the damn screen
02:43.14ckknightWizardling: InterfaceOptionsFrame:SetClampedToScreen(true)
02:43.16ulicWizardling: well be default you can't move that window, so maybe having an addon that allows you to is the insanity.
02:43.17WizardlingAre Blizzard telling newbies to edit config files?
02:43.25WizardlingWe'll see - *requests a GM*
02:43.28ckknightWizardling: you can't move the options frame without an addon.
02:43.29ulics/be/by
02:43.41ckknightWizardling: so what you're doing is addon-caused anyway
02:43.50Wizardlinghmmm... I guess it is an addon...
02:43.56Wizardlingwhich I do not recall
02:44.22ulicI know BetterBlizzardOptions or something like that lets you, i'm sure there are others too
02:44.23ckknightWizardling: seriously, /script InterfaceOptionsFrame:SetClampedToScreen(true)
02:45.08Wizardlingah - that's the one I have
02:45.30WizardlingTY ulic
02:45.49ulicyou're welcome
02:45.59WizardlingI'll try that ckknight
02:46.40ulicyou might be able to disable the addon, have it snap back to middle and then re-enable, but I'd go with ckk's way, less painful.
02:48.31Wizardlingck - you're a beautiful man *kisses*
02:48.45WizardlingThat was extremely frustrating.
02:48.50*** join/#wowace BWMerlin (n=chatzill@58.174.148.250)
02:49.16Wizardlingthis is what happens when you never go without an addon that does something basic like this for years
02:49.16*** join/#wowace bien| (n=bien@pD9E6EC47.dip.t-dialin.net)
02:50.03WizardlingI should try no addons sometime.
02:50.07WizardlingJust for kicks
02:50.42ckknighthehe
02:50.43ckknightit sucks
02:50.50BWMerlini find there are some addons i just really have to have
02:50.52ckknightokay
02:51.03ckknightplease test out PitBull4's new VisualHeal module.
02:51.13ckknightanyone who's interested
02:52.40Wizardlingmight be reason enough for me to upgrade my PB for my new druid who'll go resto
02:52.47askrthat's actually one of the things I was missing from pitbull3, will try it tomorrow
02:52.50ckknight*thumbs up*
02:53.03ckknightyea, askr, I was missing it, too. I play a Druid and a Priest currently
02:53.39BWMerlinXinhuan: is your latest version of wowequip available via the CC
02:53.44Xinhuanno
02:53.57Xinhuani've set it so that no zips are created for now
02:56.24BWMerlinok, is it ready for public testing?
02:57.38Xinhuannot that soon, while i'm busy grinding oshugun powder and booty bay reps ;p
03:00.22BWMerlinlol have fun with that
03:00.44*** join/#wowace Matrix110| (i=Matrix11@pD957B40C.dip.t-dialin.net)
03:00.48ckknightI hate entitled assholes.
03:01.15ckknightwell, self-entitled
03:01.21ckknightor people who feel entitled but aren't
03:01.25ckknightI guess
03:01.55BWMerlin?
03:02.35ckknightI read this blog post: http://www.ronfgreen.net/?p=9
03:02.56ckknightI have no sympathy for the handicapped.
03:03.31ckknightwhy does he feel he deserves free money? what does he provide to warrant that? nothing, it seems, outside of his handicap
03:05.27BWMerlinhmm he doesnt make a convincing argument as to why i should help him over someone else
03:05.54BWMerlinand i don't understand why programming on mac would be different to linux or windows
03:06.22BWMerlinhe didnt list what programming language he was trying to learn so OS choice is irrelevant
03:06.53ckknightruby
03:06.56ckknightbut that's irrelevant
03:09.21*** join/#wowace AcTiVaTe (n=activate@d594eeda.static.dsl.concepts.nl)
03:18.15reskerHe's asking for money for a macbook but he just bought an iPhone?
03:24.22*** join/#wowace resker (n=fefsd@c-71-236-27-178.hsd1.ga.comcast.net)
03:24.40ckknightCryect: that appears to be the case
03:27.04Cavisty^gerberhttp://www.thesmokinggun.com/archive/years/2009/0327092sham1.html
03:47.24ckknightha, Cavisty^gerber
03:47.42Vonhintenhooker is pretty fine
03:47.53Vonhintenmust have a thing for tongues...
03:58.24*** join/#wowace Baraius (n=bhuddles@70.114.244.248)
03:59.34*** join/#wowace ajmitch (n=ajmitch@172.41.255.123.static.snap.net.nz)
04:17.45*** join/#wowace Aiiane1 (n=Aiiane@starfire.ST.HMC.Edu)
04:30.30*** part/#wowace Seerah (n=Ryan_L@adsl-66-9-6.mem.bellsouth.net)
05:11.38digmouseckknight: ping
05:11.45ckknightdigmouse: pong
05:12.12digmouseis it able for ace3config to order the entries by a certain list?
05:12.22Fisker-ckknight
05:12.28Fisker-aren't you a iphone fag?
05:12.28Fisker-:3
05:12.34ckknightdigmouse: order = 1234
05:12.50ckknightFisker-: no, I have a T-Mobile G1
05:12.53digmouselike I wanna see HPbar first then MP below, not just by first letter
05:12.56Fisker-fuck android
05:13.48*** join/#wowace matled- (n=askr@p5B399484.dip0.t-ipconnect.de)
05:14.35digmousethe options entries in PB4 sounds like to be listed in letters only :P
05:15.22Fisker-also ckknight
05:15.27Fisker-Windows Mobile >>>>>>>>>>>>>> *
05:15.41Fisker-we like hack the world
05:15.47ckknightdigmouse: um, what?
05:17.21digmouseckknight: a lot ppl like me, are used to set up HPbar first then MPbar, and blah blah, so the options list should fit better if it was in a certain order, not naturally by the first letter I think
05:17.53digmousejust a hunch heh, dont know if this will cost much work
05:20.19Repo10pitbull4: 03TAP3AH 06tap3ah * r26 / (22 files in 7 directories): mainline content updated to r20090328024138
05:21.43*** join/#wowace Greltok (n=Greltok@c-71-59-206-166.hsd1.wa.comcast.net)
05:23.50Repo10grid: 03Greltok * r1174 GridStatusAggro.lua: Now handles nil result from UnitThreatSituation().
05:27.29Repo10flight-hud: 03Barfolomeu * r170 / (2 files in 1 directory): Fix bug where frame is held by the mouse when moving.
05:27.57Repo10flight-hud: 03Barfolomeu * r171 FlightHUD.toc: And update TOC.
05:29.55TradeMarkckknight: nice interview :P
05:30.19ckknightTradeMark: cool
05:30.23Fisker-wat interview?
05:30.23*** join/#wowace Hjalte (n=chatzill@cpe.ge-0-2-0-835.arcnqu2.customer.tele.dk)
05:30.42TradeMarkthose hosts are kinda muppets tho >.> lol
05:30.59TradeMarkhttp://tv.esl.eu/de/vod/view/21205
05:31.06TradeMarklike 30ish minutes in
05:31.07Fisker-fuck logins
05:32.19TradeMarkI'll change my password
05:33.08TradeMarkTomNZ/wowace
05:33.16TradeMarkuse that if you want, I know I won't be using it again :P
05:34.18syerenckknight, you got interviewed by Zalmah and Jay?
05:34.19syerenHahaha.
05:34.40ckknightI got interviewed by James Harding
05:34.55syerenYeah. Jay.
05:34.56syeren:p
05:35.01syeren2GD.
05:35.51ckknightokay
05:36.02ckknightwhy'd you laugh, syeren?
05:36.22syerenBecause those two are normally pretty funny, 2GD has a reputation for ripping people apart ;p
05:36.42syerenBut I figure you're intelligent enough for him not to find any openings!
05:36.59Fisker-makes fun of Android
05:39.57ckknightsyeren: yea, they might start an addon-of-the-week thing
05:41.43BWMerlindoes ag_unit frames have a set focus frame i cant seem to find it
05:47.28*** join/#wowace evl (n=evl@c85-196-101-98.static.sdsl.no)
05:55.34syerenckknight, your mic is horrible!
05:55.35syeren:p
05:55.41ckknightit was a phone.
05:55.46syerenAh.
05:56.25ckknightand it's a bit better than the previous guy
05:56.25ckknighthehe
05:56.39syerenYeah, Coold is also Eastern European though!
05:56.53syerenHe normally sounds better on Vent though.
05:58.50syeren"I do it for the women".
05:58.57syerenThe best part is that is true!
06:02.40Fisker-makes fun of android again
06:03.43*** join/#wowace digmouse (n=chatzill@58.20.47.166)
06:05.58syerenGood interview, apart from the ending, ckknight!
06:06.17ckknightwhat was the ending?
06:06.28syerenWhere your phone coverage seemed to die.
06:06.30syeren:p
06:07.08ckknighthmm
06:07.10ckknightoh
06:07.12ckknightyea, it was odd
06:07.30ckknightI could still hear them fine
06:07.47syeren:x
06:10.12Zhinjiohey ck
06:10.13*** join/#wowace ik0n (n=ikon_@c-98-196-59-169.hsd1.tx.comcast.net)
06:10.21Fisker-invests all of ckknight's money into a mutual market fund aaaand it's gone!
06:12.39VonhintenNever trust a sub-prime-fisker
06:14.05SqueeGckk
06:14.57ckknighthey SqueeG
06:15.00ckknighthey Zhinjio
06:15.09SqueeGHeya, amigo
06:15.19SqueeGQuick question...
06:15.54SqueeGThe plugin category between Curse and WoWAce.... why don't they match up?
06:18.14Fisker-yay
06:18.18Fisker-new Windows 7 build
06:18.50Axodioushas anyone had an issue where you can't use vehicle attacks?
06:18.56SqueeGIf only I had an x64 system :p
06:19.05Axodiouson my hunter and warlock i can't seem to use vehicle abilities :/
06:19.12Fisker-both are leaked as far as i can tell
06:19.19Fisker-but only n00bs don't got x64
06:19.32SqueeGPoor people don't have x64 =p
06:20.10Axodiousalso i couldnt use any of the abilities on the drakuru quests where you use the command rods
06:20.27SqueeGany bar addons that might be interfering?
06:20.37Axodiousim using bt4, but the strange thing is
06:20.40BWMerlinis windows 7 64bit only?
06:20.41Fisker-"poor people"
06:20.41Fisker-i lol'd
06:20.43Axodiousim using the same profile on all characters
06:20.45Axodiousand my shaman is fine
06:20.45Fisker-poor people don't have computers at all then
06:20.51Fisker-x64 is cheap as shit
06:20.53Fisker-and no BWMerlin
06:21.13SqueeGI don't have the money to buy an entirely new computer Fisk =p
06:21.16Fisker-infact i doubt you can even get a CPU these days that's not x64
06:21.21Fisker-your mom SqueeG
06:21.26SqueeGWord
06:21.35BWMerlinit depends what you mean by "cpu"
06:21.42Fisker-gonna try out that there wheelman game!
06:22.00BWMerlinif you mean something for your home computer you are probably right in saying you cant get a non 64bit
06:22.33SqueeGpretty sure most cheap pcs are still being sold with 32bit
06:22.34BWMerlinbut if you mean overall there are a shit load of cpu's for many devices so yeah you can still get a none 64bit
06:25.21Fisker-FAIL GAME IS FAIL
06:25.31Fisker-i start the first mission
06:25.35Fisker-so there's a police roadblock up ahead
06:25.39Fisker-I'm told to turn left
06:26.10Fisker-I do so and crash another police car which prompts a "cool cinematic" and since the "cool cinematic" takes away vehicle control i end up in the roadblock busted
06:26.10Fisker-gg
06:28.10robotuschSo Fusker, how many spins did you make yesterday? :D
06:30.29robotuschand are you going to give me a hand with group quests today? :3
06:44.06Fisker-never
06:44.09Fisker-doing wheelman
06:53.49*** join/#wowace Aiiane (n=Aiiane@134.173.63.21)
07:08.10robotusch>:(
07:11.06*** join/#wowace digmouse_ (n=chatzill@222.240.182.154)
07:26.04*** join/#wowace Cheads (i=chead@0x573bce94.henqu2.dynamic.dsl.tele.dk)
07:33.01*** join/#wowace Thelyna (n=burp@122-57-251-12.jetstream.xtra.co.nz)
07:35.13*** join/#wowace sun[w] (n=sun@ARouen-256-1-69-90.w90-51.abo.wanadoo.fr)
07:44.39BWMerlinanyone having problems with the latest version of prat
07:45.33*** join/#wowace BWMerlin (n=chatzill@58.174.148.250)
07:49.56*** join/#wowace Srosh (n=Srosh@d019031.adsl.hansenet.de)
07:50.21Kuja^nope, no issues here
07:59.08BWMerlinInstalled:3.1.0b1-nolib (Released: 2009/03/20) with that version tekkcompare isnt working on chat links and i also can not click on any chat links or toon names
08:02.54*** join/#wowace break19 (n=break19@68.63.49.20)
08:10.29*** join/#wowace Fisker- (i=ballmer@62.61.142.209.generic-hostname.arrownet.dk)
08:11.27Fisker-Raid offline
08:11.28Fisker-Can we fix it?
08:11.31Fisker-No it's fucked :(
08:18.23*** join/#wowace Stew_a (n=Stewart@unafilliated/stewa/x-008753)
08:20.51*** join/#wowace Jygga (n=Jygga@port-212-202-202-32.dynamic.qsc.de)
08:24.45Repo10ammo-matique: 03Anyia3 * r2 / (6 files in 1 directory):  (Message trimmed by 1 line)
08:24.48Repo* Initial import of work-in-progress:
08:24.52Repo- Auto-reload is working
08:24.55Repo- Auto-switching not fully implemented
08:24.58Repo- Config interface not completed or hooked up yet
08:34.21*** join/#wowace Nahkiss (n=nahkiss@85-156-90-133.elisa-mobile.fi)
08:38.14*** join/#wowace Kalroth (n=kalroth@2506ds1-hj.0.fullrate.dk)
08:39.26Repo10magic-dkp: 03dhedbor * r117 / (3 files in 3 directories):
08:39.29Repo[*]Prepopulate bid-list with online members of the raid, to make it easy to see who hasn't bid yet.
08:39.32Repo[*]Add support for Auto Pass from MagicDKP_Client (marked differently and sorted last).
08:41.00Repo10magic-dkp_client: 03dhedbor * r48 MagicDKP_Client.lua:
08:41.03Repo[*]Added option (enabled by default) to auto-pass on DKP bids for items you can't use. This includes filtering out spell/melee/tank items for classes that can't make reasonble use of them.
08:44.19orionshockis it me or does WIM spam "!Negotiate:Ver" liek a whore?
08:44.55*** join/#wowace Hey-WTF (n=burp@122-57-255-111.jetstream.xtra.co.nz)
08:44.58Repo10magic-dkp_client: 03dhedbor * r49 MagicDKP_Client.lua: [*]Fixed issue with config dialog.
08:46.50Repo10magiclooter: 03dhedbor * r19 Modules/LootMenu/LootMenu.lua: [*]Throttle raid update event with a 10s timer.
08:46.53Repo[*]Hide offline raid members from the loot dropdown.
08:46.56Repo[*]Correctly remove people / classes from the dropdown list when they leave the raid/party.
09:01.45*** join/#wowace Fisker- (i=ballmer@62.61.142.209.generic-hostname.arrownet.dk)
09:02.21Repo10atlasloot-enhanced: 03Hegarol * r1926 / (12 files in 7 directories): - Tier 8 set finalized
09:02.24Repo- Leviathan 10Man
09:03.32Fisker-Wheelman > GTA 4
09:03.36Fisker-sad aint it?
09:06.56*** join/#wowace Groktar (n=gr@76-236-38-194.lightspeed.frsnca.sbcglobal.net)
09:08.54nevcairielis the svn server slow or is it just me?
09:09.43Fisker-it's just you
09:11.00Zyndromeyou live in an alternate dimension, where everything is slow, and a blink of an eye is a days labor
09:11.25nevcairielwouldnt then everything be fast?
09:11.47nevcairielI'm blinking alot, but i don't even get my mods to update =P
09:11.49Zyndromeexcept you experience real time!
09:12.42Zyndromeand www.donkdj.com failed "We Will Rock You" with Queen :|
09:13.32Fisker-aaaaaaaaand it's gone!
09:21.36Groktartickles Fisker-
09:21.50Groktargrabs Fisker-'s wallet and scampers
09:22.46robotuschbonks Grochtar with a Margaritaville
09:23.14Groktarwonders what he can get for it
09:23.18Groktarconsults the chart
09:24.18Groktaris there a way to prevent flash from knowing when it loses focus?
09:24.28robotuschdo note the special spelling method ;o
09:24.48Groktari hate that if i make something fullscreen on one monitor
09:25.03Groktarand then i want to type nonsense in irc
09:25.14Groktarit isn't fullscreen anymore
09:26.13robotuschyeah, I feel your pain
09:27.46Fisker-puts all of your money in a money market mutual fund
09:28.01Groktarmeh, i don't have any to begin with
09:28.04robotuschaaaaaaaaaand it's gone
09:29.09Fisker-good news Groktar
09:29.16Fisker-i just got a million dollars out of your 0 dollars
09:29.27Fisker-now to just reinvest it aaaaaaaaand it's gone!
09:29.28robotuschaaaaaaaaaand it's gone
09:30.38robotuschthe best part of it is that it reminds me a hell of a lot of my old bank
09:31.40Fisker-http://www.mozilla.com/en-US/firefox/ie.html <-unsuccessful trolls are unsuccessful
09:33.04nevcairielthat page lies
09:33.12Fisker-duh
09:33.14nevcairielit claims that IE is Compatible with modern Web pages and technologies
09:33.21Fisker-inorite?
09:33.33Fisker-If anything that would be where they actually didn't put a checkmark
09:34.12Fisker-It has all the other stuff
09:34.12Fisker-besides for open source
09:34.12Fisker-But noone cares
09:34.51nevcairielfast response time with IE is a myth too
09:35.04Fisker-naw
09:35.46Fisker-Time to get some non-shit drivers because Nvidia are lazy gits
09:35.47Fisker-fuck them
09:36.04*** join/#wowace EthanCentaurai (n=ethan@89.242.93.117)
09:36.04KalrothFisker is such a MS fanboi!
09:38.25robotuschand the pope is catholic and bears shit in the woods
09:40.25thulthe norwegian (socialist) government has just gambled away 95.06700 billion U.S. dollars from the norwegian state fund. Their comment? "this is probably not the smartest move"
09:40.36Fisker-I think so, too. They want you to go to an https site, and I'm pretty sure that's not what blizz uses. Looks fishy to me, at least.
09:40.38Fisker-i lol'd so hard
09:40.40Fisker-naw Kalroth
09:40.49Fisker-anti-firefox zealot fanboi
09:40.52Fisker-for life
09:40.56KalrothYou even like SharePoint
09:41.04*** join/#wowace gedgold (n=chatzill@213-156-52-122.fastres.net)
09:41.07Fisker-your mom likes sharepoint
09:41.23KalrothYour mom is a sharepoint
09:41.27robotuschthul, well, considering you took our oil, good riddance!
09:41.40Fisker-your mom likes my mom
09:41.47Kalrothhot
09:41.50*** join/#wowace eoM_rM (n=moe@p5489F470.dip.t-dialin.net)
09:41.52thul"our oil" robotusch ? :-P NEVAH
09:42.04thulwants to make a film of Fisker-s and Kalroth's mom
09:42.08robotuschYou know what I'm talking about!
09:42.21robotuschgetting our minister of energy drunk & whatnot >:(
09:43.12thuli have no idea what country you are from :-P iceland? england?
09:43.18robotuschDenmark
09:43.30robotuschaka Fisker-lan
09:43.33*** join/#wowace [ND] (n=[ND]@h062040167062.gun.cm.kabsi.at)
09:43.36robotuschFisker-land*
09:43.55robotuschalthough I must confess to having met Fisker- at a LAN
09:44.54EthanCentauraiyou poor soul... how did you ever manage to cope? :P
09:45.02thulah, denmark don't deserve any oil
09:45.02thul:-)
09:45.03*** join/#wowace Matrix110 (i=Matrix11@217.87.180.12)
09:46.58*** join/#wowace LANFiRE (n=lanfire@ppp91-77-250-248.pppoe.mtu-net.ru)
09:47.03*** join/#wowace evl (n=evl@c85-196-101-98.static.sdsl.no)
09:52.56*** join/#wowace cncfanatics (n=cncfanat@WoWUIDev/cncfanatics)
09:53.25Fisker-giev mobile authenticator already ;_;
09:54.05thulimagines robotusch and Fisker- having lan-sex
09:54.25Fisker-awesome
09:55.41thulI wonder who would give and who would receive.
09:57.50*** join/#wowace Kody- (n=nope@dsl092-049-237.sfo4.dsl.speakeasy.net)
09:57.50*** mode/#wowace [+v Kody-] by ChanServ
10:01.10thulhttp://twitter.com/alysonhannigan :-D
10:03.29nevcairielshe must be terribly bored
10:04.23thulhey, I'm on twitter
10:10.26thulok, does this image work for you guys: http://fc37.deviantart.com/fs44/i/2009/086/3/f/Springtime_in_Oslo_by_cainadamsson.jpg ?
10:10.51nevcairieltoo bright, imho
10:11.21Kalrothno boobies
10:11.46Kalrothbut yes, it looks somewhat overexposed
10:12.24thulit is correctly exposed (according to the histogram, and on a calibrated monitor :-P ), but i guess I should tone it done for the 99.97% that does not have calibrated monitors :-(
10:13.06KalrothThat's probably a good idea if you want 99.97% to view your image correctly :P
10:13.14*** join/#wowace Worf_ (n=worf@84-119-71-46.dynamic.xdsl-line.inode.at)
10:13.17KalrothAnd most LCD monitors are a little too bright, yeah
10:13.42thulthat is something I never quite manage to decide for myself. should i edit my images for the average monitor, or should i edit it perfectly (for my calibrated monitor and for when to print). if I do the first, I have to do a re-edit to print, if I do the second, most people do not see my images correctly :-P
10:13.47thulTHE CHOICES
10:15.06KalrothWell put it this way; if you were the author of a website, would you optimize for only W3 standards or for the actual browsers (with all their flaws and bugs)
10:15.06thulhttp://fc26.deviantart.com/fs43/f/2009/084/b/8/Schrodinger__s_Neko_Girl_by_mjranum.jpg <- haha, I like that (nsfw)
10:15.59thulhmm, good point, but the people watching my images and giving me feedback are all photographers (on fredmiranda :-P ) with calibrated or semicalibrated monitors... I should almost try to run a dual-edit-setup. At least when it comes to exposure.
10:16.45*** join/#wowace Megalon (n=starfox@86.32.5.88)
10:18.47thulach, now you got me ethinking :-(
10:18.56KalrothPersonally my monitors are calibrated by http://acdev.org/testimage1.jpg (almost!)
10:19.16Kalrothbut before I did that, I couldn't see -any- numbers on the white side
10:20.21*** join/#wowace Vilkku (n=Vilkku@gprs-prointernet-ff7f6a00-145.dhcp.inet.fi)
10:20.52thulhaha, ouch :-P
10:20.56Kalrothactually you could do a similar test for your pictures
10:21.01HjalteI can't see dark 1-2 and white 1 is very hard to see.
10:21.14renchapcant see white 1-2
10:21.21renchapand black 1-2
10:21.28Kalrothmake 3 images with different calibrations; people should click the one that works best for them
10:21.38renchapon my other monitor, i cant see anything
10:21.48renchapexcept 7-8 black
10:21.50Kalrothbut then you need 3 versionf of each image :p
10:21.55thulhmm, yeah. I guess I could do that, one slightly darker than calibrated, one calibrated, and one lighter one :-P
10:21.58thulhaha, yeah
10:22.32*** join/#wowace [w]sun (n=sun@ARouen-256-1-116-210.w90-51.abo.wanadoo.fr)
10:22.57KalrothHjalte: Pretty much the same for me, I gave up trying to find a setting where I could see all 16 numbers easily
10:23.24thulhmm, I can see them all. that said: I just realized that I can have facebookchat on my adium, that rocks
10:24.41*** join/#wowace Thelyna (n=burp@122-57-255-111.jetstream.xtra.co.nz)
10:25.29*** join/#wowace Adys (n=Adys@unaffiliated/adys)
10:25.52jnwhitehthul: it causes authentication issues
10:26.00jnwhitehlooks like facebook only lets you be logged into one session at a time ever
10:26.01jnwhiteh=/
10:26.01thulhmm, how?
10:26.09jnwhitehso you have to keep signing in on the web
10:26.12jnwhitehand on adium
10:26.14thulhmm, works here
10:26.14jnwhitehits obnoxious =
10:26.19jnwhitehgood, let me know if you have any issues with it
10:26.25thulwill do
10:26.26jnwhitehif not,i'll re-enable that account
10:31.47*** join/#wowace kilrogg (n=kilrogg@i577BC261.versanet.de)
10:32.32*** join/#wowace Vangual (n=bah@pdpc/supporter/active/vangual)
10:32.49*** join/#wowace kilrogg (n=kilrogg@i577BC261.versanet.de)
10:38.14*** join/#wowace kilrogg (n=kilrogg@i577BC261.versanet.de)
10:42.00*** join/#wowace ivorybishop (i=ivorybis@68-184-103-14.dhcp.dgls.ga.charter.com)
10:42.08*** join/#wowace Sirow (n=Sirow001@p57A4D5DF.dip.t-dialin.net)
10:43.18*** join/#wowace lmeye1 (n=lars@dslb-082-083-206-098.pools.arcor-ip.net)
10:43.32Fisker-slaps jnwhiteh around a bit with a large trout
10:43.36Fisker-it's gone
10:43.40jnwhitehkk
10:44.29Fisker-new build of windows 7 soon :o
10:48.02*** join/#wowace Sliker_Hawk (i=SlikerHa@5ac5c9fe.bb.sky.com)
10:49.23sb|workno you Fisker-
10:50.35Fisker-no you sb|work
10:52.05*** join/#wowace harl (i=harl@dslb-088-077-221-174.pools.arcor-ip.net)
11:06.09*** join/#wowace Stew_a (n=Stewart@unafilliated/stewa/x-008753)
11:08.20*** join/#wowace DanSouthy (n=daniel_b@78-105-2-213.zone3.bethere.co.uk)
11:11.29digmouse7068?
11:14.55*** join/#wowace mort (n=mort@azureus/mort)
11:20.08*** join/#wowace Cheads (i=chead@0x573bcd99.henqu2.dynamic.dsl.tele.dk)
11:23.01*** join/#wowace Venara (n=venara@p5B3F7EE2.dip.t-dialin.net)
11:25.37*** join/#wowace MoonWolf (n=MoonWolf@dhcp-077-250-125-249.chello.nl)
11:25.38*** mode/#wowace [+o MoonWolf] by ChanServ
11:39.31*** part/#wowace evl (n=evl@unaffiliated/evl)
11:42.24*** join/#wowace nukah (n=Nuke@nuke.static.corbina.ru)
11:44.05Fisker-yeah digmouse
11:44.27digmouseyou fail, that's about 1 day ago
11:44.46Fisker-you fail
11:44.49Fisker-it's about 7 days ago
11:44.52Fisker-now sod off
11:45.02digmouse“(
11:45.08digmouse:(
11:45.08Fisker->:3
11:45.52*** join/#wowace Srosh (n=Srosh@d019031.adsl.hansenet.de)
11:47.11Fisker-i love you
11:48.46Fisker-see you on the other side
11:48.50Fisker-kisses digmouse goodbye
11:49.28Fisker-btw
11:49.34Fisker-it's going to suck if my raid fails during install
11:49.42digmouseyou fail
11:50.01Fisker-no you :(
11:54.14Groktari hate commercials for progressive
11:54.23Groktarthat pasty white bitch needs to die
11:55.24winkillerahaha, Blizz email. "Worlf Warcarft"(sic)
11:55.32winkiller*World of Warcarft
11:55.49Groktarthere must be a problem with your account
11:56.02Groktarpls confirm your username/password so they can rectify it
11:56.13Groktargood night
11:56.21winkillernope
11:58.05*** join/#wowace kd3 (n=kd3@wikia/kaydeethree)
12:00.16*** join/#wowace stavmar (n=chatzill@cpe-70-112-21-53.austin.res.rr.com)
12:00.57stavmarIs there a mod out there that identifies the dailies available to you? Perhaps it provides specific information on where to pick the dailies up?
12:02.14*** join/#wowace Peoii (n=Peoii@98.145.76.158)
12:04.37winkillernot that I know of
12:04.50winkillermaybe the normal quest helper addons have something alike
12:04.53winkillerI'd check those
12:05.03winkillermonkeyquest, questhelper, carbonite
12:10.35stavmarwinkiller: there must be something more specific...I do not think thos focus on the dailies themselves, I don't think.
12:11.36winkillerhttp://wow.curse.com/downloads/wow-addons/details/dailies-quest-tracker.aspx <-?
12:11.57winkillerhttp://rom.curse.com/downloads/rom-addons/details/daily-quest-mod.aspx
12:12.26winkillerok, rom is out :P
12:12.42winkillerhttp://wow.curse.com/downloads/wow-addons/SearchResults.aspx?q=daily :P
12:13.47stavmarwhat is rom? and thanks for that suggestion
12:14.38nevcairielrom is another game
12:16.58winkillerRUnes of Magic probably
12:25.13*** join/#wowace Yasuo (n=Administ@dslb-088-072-100-007.pools.arcor-ip.net)
12:26.47stavmardailies quest tracker looks a little buggy
12:26.59stavmarhas anyone tried it?
12:29.50*** join/#wowace Camci (n=enescamc@ua-83-227-134-226.cust.bredbandsbolaget.se)
12:33.34*** join/#wowace Vegeta]BT[ (n=CBus@xdsl-92-252-33-91.dip.osnanet.de)
12:36.41*** join/#wowace Dezzimal (n=Dezzimal@207.118.129.73)
12:39.56Peoiioye, loot discussions are always so fun
12:41.24DezzimalI'd rather get beaten by an angry danish housewife with a wooden clog in hand
12:41.30Dezzimalthan discuss loot systems
12:41.50Peoiirofl
12:42.22DezzimalUnless you're incredibly lucky someone is always unhappy with it
12:42.28PeoiiWe run loot council, though lately it's been the discussion to have another system, and so it's spured the "well, if we switch, what to?"
12:42.46DezzimalRecently we started "charging" people for raid drops they recieve in non-guild 25 man runs
12:42.52Peoiioye
12:42.53Dezzimalincluding archavon
12:43.09Dezzimalretroactively too
12:43.11PeoiiI know a guild who does that until content is off their raiding roster.
12:43.13Peoiiwow
12:43.14Dezzimalthat pissed off more people than it pleased
12:43.17Peoiihaha
12:43.22PeoiiI can definitely imagine.
12:43.28nevcairielwtf
12:43.34nevcairielyou charge for items out of non-guild runs?
12:43.39nevcairielwhat a messed up system is that
12:44.04DezzimalWe had one or two select people purposefully missing main raids
12:44.11Dezzimalso they could go with an alt run and scoop stuff
12:44.25Dezzimalfree of charge
12:44.42*** join/#wowace Lysithea (i=Lyset@c-c2a372d5.017-172-73746f34.cust.bredbandsbolaget.se)
12:44.45nevcairielso? someone else got the items they wanted then, so more loot in guild, win-win? :)
12:44.45DezzimalWell I misspeak, they probably didn't plot that entire situation out in their head
12:44.48Dezzimalbut that is what happened
12:45.16DezzimalWe have people hoarding dkp for ulduar and the guys who bought stuff are unhappy with the way people are gaming the system
12:45.18nevcairielwhen someone misses a raid and then runs a random raid to get the id used, isnt that good?
12:45.30nevcairielSee, thats why we start a new pool for ulduar
12:45.32nevcairielno gaming :)
12:46.11Dezzimalyou know thats not a bad idea
12:46.49PeoiiYar, when we were on dkp, we ran with a hardcap going forward.  You could have a small advantage going in, but anything over X was simply reset moving from one tier level to another.
12:46.52nevcairielIf we wouldnt, people would skip over upgrades now just to have more points in ulduar
12:46.54nevcairieljust bad
12:47.31*** join/#wowace faCe| (n=face@p5489F470.dip.t-dialin.net)
12:48.23DezzimalI've been letting the 25 man neck slide every week in hopes a caster ring drops from kt :/
12:48.32Dezzimalthose two are the majority of what I can use yet
12:48.42Dezzimalits not getting sharded
12:49.10nevcairielI still need that damn quest neck, someone always bids more :P
12:49.24DezzimalI like bid systems :3
12:49.26PeoiiI only need 1 item from the current content... and it eludes me :/
12:49.39Dezzimalwe use fixed price
12:49.40PeoiiStupid Sarth2d Cloak... *grumble*
12:49.55Dezzimalwith the option to buyout and pay ~30% more for priority
12:50.10Dezzimalits kinda dumb I think because its guaranteed to inflate over time
12:53.01*** join/#wowace Fisker- (i=ballmer@62.61.142.209.generic-hostname.arrownet.dk)
12:53.10Fisker-BAWWWWWWWWWWWWWWWW
12:53.13BWMerlinsylvanaar: has anything changed in prat recently that would prevent my from clicking on chat links and player names?
12:57.03Fisker-kicks digmouse in the face
12:57.56Fisker-bah
12:57.57Fisker-First bug
12:57.58Fisker-:E
13:00.05Megalonit's not a bug
13:00.20Megalonit's just all the hate against you concentrated in one feature
13:03.19digmouseFisker why
13:03.43*** join/#wowace waallen (i=wallen@78.134.22.157)
13:06.40*** join/#wowace copystring (n=copystri@p548A1FB1.dip0.t-ipconnect.de)
13:29.25*** join/#wowace Jim-Bim (n=chatzill@mnsr-4db09399.pool.einsundeins.de)
13:29.52*** join/#wowace ivorybishop (i=ivorybis@68-184-103-14.dhcp.dgls.ga.charter.com)
13:32.37*** join/#wowace Next96 (i=Next96@121.129.140.91)
13:33.02Jim-BimAre all wowace repositories currently down?!
13:35.57sztanpetyea
13:36.25Jim-Bimany ETA on a fix?
13:43.06*** join/#wowace AcTiVaTe (n=activate@d594eeda.static.dsl.concepts.nl)
13:46.49Jim-Bimckknight? :P
13:50.42*** join/#wowace curiosa (n=hoho@201.37.52.12)
13:55.30*** join/#wowace kagaro (n=kagaro@cpe-098-026-067-218.nc.res.rr.com)
13:55.37kagarosvn down again?
13:57.03Jim-Bimyeah
13:59.03sztanpettheyr still sleeping
14:10.19*** join/#wowace NeoTron (i=neotron@pool-98-117-144-139.sttlwa.fios.verizon.net)
14:10.49Torhalnevcairiel: Alive?
14:10.55nevcairielno
14:11.01nevcairielzombie-ing around
14:11.04TorhalGorram undead.
14:11.18TorhalDo you use luac on your Linux box?
14:11.27nevcairielsometimes
14:12.17TorhalThe pre-compiled version for Windows gave me issues because it expected numbers of format "3,5" instead of "3.5", but under Linux I'm getting:
14:12.26Torhalluac: Volumizer.lua:5: unexpected symbol near `...'
14:12.39TorhalHappens for #table as well
14:12.42nevcairielwhats that line say?
14:12.54nevcairielMy guess: your linux has Lua 5.0
14:12.57nevcairielbut you code 5.1
14:13.40TorhalVolumizer:SetScript("OnEvent", function(self, event, ...) the rest)
14:13.57nevcairielwell do luac -v
14:13.59TorhalDidn't think of that
14:14.09TorhalYou're right.
14:14.12Torhal5.0.3
14:14.14TorhalDanke.
14:14.20*** join/#wowace Baraius (n=bhuddles@70.114.244.248)
14:15.25TorhalUgh
14:15.34TorhalUbuntu has 5.1, installs 5.0 by default
14:20.55*** join/#wowace mort (n=mort@azureus/mort)
14:22.36*** join/#wowace yoshimo (i=chatzill@p5B0C133D.dip0.t-ipconnect.de)
14:23.16Arrowmasteri suggest grabbing wowlua and compiling that yourself
14:24.24*** join/#wowace Dark_Elf (i=Dark_Elf@ip159.net253.mw.net)
14:24.29yoshimosylvanaar , are you answering the tickets on your wowace-projects ?
14:26.45ZhinjioG'morning Torhal
14:28.27*** join/#wowace Gagorian (n=k@a91-153-60-25.elisa-laajakaista.fi)
14:30.40*** join/#wowace taleden (n=atfrase@user-38q41i6.cable.mindspring.com)
14:31.21*** join/#wowace kd3 (n=kd3@wikia/kaydeethree)
14:32.04*** join/#wowace p3lim (n=p3lim@084202164112.customer.alfanett.no)
14:35.28TorhalZhinjio: Yola
14:41.44Zhinjiohow's it going?
14:42.35TorhalI'd say decent, but I can't figure out how to get the fucking ALT key to not pop up the window manager menu under WoW when I hold down a mouse button.
14:42.44TorhalGoddamn COmpiz.
14:42.51TorhalHow're you?
14:43.54Zhinjiofair.
14:44.17Zhinjiorunning dailies
14:44.21TorhalCool
14:44.31Fisker-Looks like you could use a WHEELMAN
14:44.37Fisker-hint hint, wink wink
14:44.54TorhalI was about to add presets to Volumizer, then remembered being pissed last night that I can't alt-click shit in WoW
14:44.57Zhinjiohave some friends in town, went out last night and lit things up pretty good, so I'm recovering a bit.
14:44.58*** join/#wowace mort_ (n=mort@azureus/mort)
14:45.16TorhalFisker-: How the fuck is a wheelman going to fix the alt-key behavior? :P
14:45.32TorhalZhinjio: Hangover dailies. Fun. :)
14:45.44Fisker-fu :(
14:46.24TorhalHeh
14:46.52Fisker-wheelman (The game) is kinda stupid though
14:46.54*** join/#wowace mort (n=mort@azureus/mort)
14:47.06Fisker-"Omg you can't kill innocent people!!!!!!!!!!!1111"
15:09.29*** join/#wowace Legorol (n=legorol@80-192-28-127.cable.ubr07.sgyl.blueyonder.co.uk)
15:09.31nevcairielreadign comments on curse.com always cheers me up
15:09.36nevcairielapparently i ruined some guys life today
15:09.39nevcairielall is well :)
15:10.08Stanzillawhat did you do?
15:10.16nevcairieldunno
15:10.44*** join/#wowace Azurewrath (i=Azurewra@88.215.85.86.dynamic.cablesurf.de)
15:10.51nevcairielhttp://wow.curse.com/downloads/wow-addons/details/bartender4.aspx#428058
15:11.10nevcairielhah he even joined curse for that comment
15:15.59Kaeltenrepos server locked up again
15:16.03KaeltenI wonder what the fuck is up with that
15:16.09Kaeltenthey're rebooting it now
15:16.24*** join/#wowace Repo (n=supybot@hg.wowace.com)
15:17.25Kalrothnevcairiel: I didn't know Bartender was a memory resident virus that persists even after being removed!
15:17.31StanzillaDon't you people atleast test ONCE your probrams before you relish them? Its a good thing you only make add-ons for games and not cars instead. Can you imagine? You'd kill people...
15:17.33StanzillaLOOOL
15:19.47ArrowmasterKaelten: when are you going to upgrade svn, 1.6.x is out now
15:20.03SunTsu.o0( I never new nevcairiel was that evil )
15:20.27SunTsunevcairiel: Ever thought about asking google for employment? ;)
15:20.43KalrothSunTsu: He can't, they got a "do no evil" motto
15:20.51KaeltenArrowmaster: after I get a chance to upgrade the os probably
15:21.28SunTsuKalroth: I don't belive that anyway ;)
15:25.11Stanzillahow can I make BigWigs announce to /rw instead of /ra?
15:26.14*** join/#wowace Repo_ (n=supybot@svn.wowace.com)
15:26.15*** join/#wowace Repo (n=supybot@hg.wowace.com)
15:26.47*** join/#wowace vhaarr (n=folk@WoWUIDev/WoWAce/Rabbit/vhaarr)
15:26.47*** mode/#wowace [+o vhaarr] by ChanServ
15:27.07ArrowmasterKaelten: did i tell you before that i dont think round robin rDNS is something thats ment to be done even if it does 'work'
15:27.32Kaeltenhuh?  It shouldn't be
15:27.45*** join/#wowace Repo (n=supybot@svn.curseforge.net)
15:27.49Arrowmasterthe ip repo is on has round robin rDNS
15:29.00Kaeltenodd
15:29.02Kaeltenshouldn't
15:29.39nevcairielfor ever forward entry you entered, the rDNS got an entry too
15:29.41nevcairielcausing this
15:29.55SunTsuKalroth: While we're at it: F=<subscriptions@curseforge.com> rejected RCPT <wow@suntsu.org>: Reverse DNS lookup failed for 69.57.184.215
15:30.18Repo10hotcandy: 03Nevcairiel 07master * 1.4.5-1-g540e8bf HotCandy.lua: [+1 commit] Scan the talents at PLAYER_ALIVE during login, so that the detection works properly.
15:30.20SunTsuuhm
15:30.25SunTsuKalroth: sorry, meant Kaelten
15:30.36Repo10hotcandy: 03Nevcairiel 073.1 * 1.4.5-11-gf06a7b8 /: [forced -9 +11] Use the new PLAYER_TALENT_UPDATE event to rescan the players talents.
15:30.53Torhalnevcairiel: Any idea what I need to do to make the ALT key in WoW NOT show the damn window-moving menu? Apparently setting it to the Meta key doesn't work, even though I've rebound the "Windows" key to be the Meta key.
15:31.04nevcairieli dunno
15:31.09Torhal<PROTECTED>
15:31.16nevcairieljust configure compiz to not react on it anymore?
15:31.22nevcairieli'm not a big compiz fan anyway
15:31.43TorhalNo option for it. All it has is "Which key do you want for this", and NONE isn't an option.
15:32.49Kaeltensent an email off about both of those
15:33.31Repo10arl: 03Jim-Bim * r1616 ARLFrame.lua: AckisRecipeList:
15:33.32SunTsuKaelten: thanks
15:33.34Repo- fixed "Clear All Waypoints" function (Ticket 459)
15:33.37Repo- added scan button key modifiers for visible frame
15:33.45nevcairieldid you ever narrow down whats causing the server lockups now?
15:33.54ArrowmasterKaelten: let me guess its the fault of the dns provider you guys use
15:34.23Kaeltenreverse dns entries are generally handled by the datacenter
15:34.37nevcairielindeed, you only get access yourself very rarely
15:35.00Arrowmastertheir site says they give access to PTR record control
15:35.06SunTsuYou normally don't need access, just a delegation
15:35.32SunTsuand yes, sub-/24 delegation is possible
15:35.36Arrowmasterand something called 'HTTP Redirection record support' which ive never heard of before
15:35.39TorhalOk, got it. I unbound Meta from the Windows key, which re-bound Windows to Super. Now I have an option to set the window-mover to the super key. Yay.
15:36.19Kaeltennevcairiel: not yet,
15:36.23nevcairielLinux lacks so much in usability
15:36.26KaeltenI've not had a chance to dig too much
15:37.48nevcairielWhat i noticed today, before dying completly, the server was damn slow
15:37.51nevcairielstill responding
15:37.52nevcairielbtu slow
15:38.13nevcairiellike 5 minutes later it was gone
15:38.13Kaeltenyeah, one theory is swap thrash
15:38.25Kaeltenand eventual lockup due to memory depletion
15:41.30Kaeltenwhich would explain that behavior you describe
15:41.55*** join/#wowace taleden (n=atfrase@user-38q41i6.cable.mindspring.com)
15:42.13Kaeltenso I'm going to leave a shell open with top running to keep an eye on it.
15:42.21KaeltenI need to take a day out and set up mmonit on each server
15:42.38nevcairielSince Repo dies too, i would guess your ssh conn will be dead as well
15:42.44Kaeltenyep
15:42.49nevcairielbut maybe you're lucky to see it before it dies
15:42.49Kaeltenbut i'll see the last snapshot
15:44.51SunTsuKaelten: wouldn't it better to quickly set up smth. like cacti and monitor the server via snmp?
15:45.02SunTsuKaelten: disk usage, memory usage, processes, etc
15:45.14KaeltenSunTsu: mmonit is similar to cacti
15:45.24Kaeltennot as complicated though
15:45.27Kaeltenand not a php app
15:45.57SunTsuKaelten: ah, don't know that. does it run on the server itself or on another machine?
15:46.25Kaeltenwell monit runs on each machine
15:46.32Kaeltenm/monit monitors those instances
15:46.56*** join/#wowace mitchnull (n=mitchnul@catv3EC945FB.pool.t-online.hu)
15:47.09Kaeltenhttp://mmonit.com/
15:47.56Arrowmasterso monit is free open source but m/monit is not?
15:47.57Repo10ammo-matique: 03Anyia3 * r3 / (3 files in 1 directory): * Added ammo switching logic.
15:48.00Repo* Added PvP/PvE ammo switching options.
15:48.03Repo* Hooked up the config to the engine.
15:48.48*** join/#wowace Jagobah (n=jago7777@98.80.1.93)
15:48.54SunTsuKaelten: yeah, already found it, but it really does not appeal to me, because I like things to be open, which it does not seem to be. And I like using existing standards, but that's all just a matter of taste
15:52.46KaeltenArrowmaster: yep
15:57.29ZhinjioG'morning Kaelten
15:57.33Kaeltenheya zhin
16:02.07Fisker-kisses Kaelten
16:04.34Kaelten~lart Fisker-
16:04.34purlblasts Fisker- to oblivion with a kamehameha wave
16:04.58*** join/#wowace Jim-Bim (n=chatzill@mnsr-4db09399.pool.einsundeins.de)
16:05.41HjalteDoes anyone have an awesome font they use for their scrolling combat text addon? I'm tired of mine :(
16:05.55HjalteI've got Shared Media already
16:10.21*** join/#wowace Aeyan (n=pancake@cpe-071-076-230-073.triad.res.rr.com)
16:16.53Fisker-~kiss Fisker-
16:16.54purlACTION forces Fisker- to give ESL|2GD a big kiss on the ear
16:16.57Fisker-bah
16:17.04Fisker-~kiss Fisker-
16:17.05purlACTION forces Fisker- to give Civrock a big kiss on the lips
16:17.08Fisker-grr
16:18.46CivrockEw.
16:20.23Fisker-~kiss Fisker-
16:20.24purlACTION forces Fisker- to give Arrowmaster a big kiss on the ear
16:20.37Arrowmastereww
16:22.29Fisker-~kiss Fisker-
16:22.30purlACTION forces Fisker- to give waallen a big kiss on the lips
16:26.17Fisker-~kiss Fisker-
16:26.18purlACTION forces Fisker- to give deQer a big kiss on the lips
16:26.21Fisker-bah
16:26.26Fisker-at this rate i'll never get Kaelten
16:26.35SunTsuFisker-: You really spread your love today
16:30.13Fisker-i'll spread your legs
16:30.43*** join/#wowace Adys (n=Adys@unaffiliated/adys)
16:36.34SunTsuFisker-: Yeah, do so, would be fun. Strangulating trolls is a real nice hobby ;)
16:39.21*** part/#wowace mitchnull (n=mitchnul@catv3EC945FB.pool.t-online.hu)
16:39.22*** join/#wowace mort (n=mort@azureus/mort)
16:40.48*** join/#wowace moop (n=moop@host86-142-176-209.range86-142.btcentralplus.com)
16:44.21*** join/#wowace Higdur (n=nike@81-229-140-43-o1124.telia.com)
16:44.52*** join/#wowace Beutju (n=tus@manz-590c2d0a.pool.einsundeins.de)
16:45.37*** join/#wowace kilrogg (n=kilrogg@87.123.194.97)
16:49.43*** join/#wowace mjc (n=mjc@c-66-176-165-198.hsd1.fl.comcast.net)
16:51.05*** join/#wowace Tenchworks (n=none@76-231-27-217.lightspeed.wlfrct.sbcglobal.net)
16:53.12*** part/#wowace Tenchworks (n=none@76-231-27-217.lightspeed.wlfrct.sbcglobal.net)
16:58.58*** join/#wowace Chaoslux (n=no@205.233.198.243)
17:04.00*** join/#wowace Dashkal (n=dashkal@WoWUIDev/Nexus/dashkal)
17:14.37Repo10gathermate: 03kagaro * r662 / (2 files in 1 directory):
17:14.40RepoGathermate: updated get facing calls for new ptr patch. PTR now returns valid data all the time and in radians.
17:22.39*** join/#wowace Tekkub (n=tekkub@WoWUIDev/WoWI/Featured/Dongle/GitHub/Tekkub)
17:22.39*** mode/#wowace [+v Tekkub] by ChanServ
17:22.49*** join/#wowace daev (n=bleh@pool-72-86-106-233.aubnin.fios.verizon.net)
17:26.44BWMerlinis ag_pimpster are unit frame addon or is it only used to customise ag_unit frames beyond what options come with it out of the box?
17:26.51*** join/#wowace mort (n=mort@azureus/mort)
17:27.17nevcairielits only a plugin to agUF
17:27.38*** join/#wowace Tuikku (n=tuikku@94.237.36.228)
17:28.29BWMerlinthat is what i wanted to know
17:28.38nevcairielKaelten: i think the non-ssh Git daemon is broken again, it appears ckk always manually started it after server reboot
17:28.54ckknighttry now?
17:29.25Fisker-slaps ckknight around a bit with a large trout
17:29.31ckknightnoes
17:29.33nevcairielworks
17:29.35nevcairielthanks
17:30.55Kaeltengrumbles about wx and lack of minization support....
17:32.00*** join/#wowace Pneumatus (n=WiN@unaffiliated/pneumatus)
17:32.16Chaosluxgit wasnt working a minute ago?
17:35.03KaeltenChaoslux: the non-ssh deamon was offline
17:37.28*** join/#wowace sun[w] (n=sun@ARouen-256-1-121-73.w90-17.abo.wanadoo.fr)
17:37.36*** join/#wowace Gamefaq (n=gamefaq@pD9527BDB.dip.t-dialin.net)
17:37.45nevcairielYou should put that one in an init script =)
17:37.58*** join/#wowace Aeyan| (n=pancake@cpe-071-076-230-073.triad.res.rr.com)
17:39.06*** join/#wowace bluryw (n=yeongwei@59-126-51-179.HINET-IP.hinet.net)
17:40.22ckknightdoes race for death knight matter that much?
17:40.57*** join/#wowace Tigerdyr (n=sps@tigger.t-rex.dk)
17:41.43*** join/#wowace _Berti (n=berti@vs156121.vserver.de)
17:43.40*** join/#wowace iNs|Renew (n=mronlin@adsl017.cnetco.com)
17:47.16Fisker-stares
17:47.47Lukiandraenei for 1% hit ftw :p
17:48.06Fisker-^^
17:48.15Fisker-But it doesn't matter much if you got a draenei anyways
17:48.19Fisker-i'd go with humans personally
17:48.32Fisker-They also got sword and mace spec i believe
17:48.40Fisker-which can be handy
17:53.42Repo10kg-panels: 03kagaro * r322 kgPanels.lua: kgPanels: added mod funtion to register new art
17:53.53Megalonwtb raidbuffracial for horde :c
17:54.49Fisker-and giev it to belfs
17:57.07ChaosluxHumans have the most OP racial in the game and i <3 it
17:57.28Fisker-^^
17:58.12Pneumatusnelf for dodge
17:58.22sb|workbahhh some people in my guild are totally retarded :o
17:58.50sb|worknev: open discussion of legendary thingie distribution was a bad idea :p
17:59.09nevcairielso what now? =P
17:59.21kagarorepo Status: Failed
17:59.23ChaosluxI like only having to kill 3800 Syndicates instead of having 4200 syndicates to kill for Ravenholdt
17:59.35nevcairiel@ping
17:59.36Repopong
17:59.41sb|workQQ why not giving it outlike any other item
18:01.08Repo10pitbull4: 03ckknight 07master * 8b9d881 Modules/VisualHeal/VisualHeal.lua: [+1 commit] bugfix when a unit is getting more than 100% healing at any one time.
18:01.38nevcairielAs it looks now (and nothing changes), 3 people will roll for the item and pay all their dkp
18:01.41nevcairielwhen the first drops
18:01.41nevcairiel:P
18:01.55sb|workhehe
18:01.57nevcairielwhen we do kill the first hardmode
18:01.58*** join/#wowace Chaoslux (n=no@205.233.198.243)
18:02.05nevcairieland it actually drops
18:02.49sb|workwell i cant see how "give it to the guy with the best loot priority without looking at his attendance / EP" makes any sense for a item thats worth ~nothing until you have 40 pieces + yogg hardmode :o
18:03.00nevcairiel30!
18:03.07sb|workso i'm not sure if they really got what this is about
18:03.19sb|workits no glaive that you can loot and use :o
18:03.45nevcairielits a long time investment
18:03.49sb|workyes...
18:04.01nevcairielis it sure that you need yoggy hardmode?
18:04.04nevcairielor only yoggy?
18:04.06sb|workso if someone cant be on any raid with hardmode kills
18:04.10sb|workits kinda useless for him :o
18:04.18sb|workor better be given to someone else
18:04.21sb|work*sigh*
18:04.28sb|worki dont want to have 3 people with 10 pieces ;)
18:05.25nevcairielbah, why is wowhead always on maintenance when i want to cehck something
18:06.06*** join/#wowace Xinhuan (n=xinhuan@202.42.83.78)
18:09.02Repo10kg-panels: 03kagaro * r323 kgPanels.lua: kgPanels: fixed typo in register call
18:09.35nevcairielhm bah
18:09.38nevcairielits actually confirmed
18:09.41nevcairielthe quest says it
18:09.45nevcairielyoggy hardmode
18:09.46kagarockknight: packager is dead
18:10.15Axodiousckk you think you could do ticket 5? <3
18:10.22Axodiousfor pb4
18:10.33ckknight@ticket pitbull4 5
18:10.34nevcairielkagaro: i unlocked it
18:10.34Repockknight: http://www.wowace.com/projects/pitbull4/tickets/5 - Ability to set the default font size. Reported by: sztanpet. Type: Enhancement. Updated: 3 hours ago. Milestone: Beta. Status: Accepted. Priority: Medium. Assignee: ckknight. Votes: +21. Comments: 2
18:10.48nevcairielkagaro: its running now
18:10.50kagaronevcairiel: thanks
18:11.14ckknightthanks, nevcairiel
18:11.21nevcairielckknight:
18:11.22ckknightAxodious: I'm working on DK runes
18:11.23nevcairielsvn: Working copy '/repos/packaging/svn-local-checkout/wow/ace3/mainline' locked svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for details
18:11.30nevcairielsomething is broken on the local checkouts again
18:11.34ckknightk...
18:11.46*** join/#wowace _Berti (n=berti@vs156121.vserver.de)
18:11.58ckknightI ran svn cleanup
18:12.28Axodiousk np
18:12.58nevcairielsvn is such a bitch at those
18:13.11nevcairielthe damn WC format is so terrible
18:14.02ckknightsvn sucks
18:14.04ckknight<.<
18:14.05ckknight>.>
18:14.16*** join/#wowace Jyggaa (i=Jygga@port-212-202-202-32.dynamic.qsc.de)
18:15.04Repo10kg-panels: 03kagaro 04v1.27 * r324 : Tagging as v1.27
18:15.07RepoExposed AddAsset for texture packs to register artwork.
18:18.54sb|worknevcairiel: yup...  
18:19.04sylvanaaryoshimo yes I am. i just did a bunch the other day
18:19.23nevcairielsb|work: i think i'm just shooting for another one and not the first, then =p
18:19.29nevcairielyoggy hardmode will be a while..
18:19.34sb|workhehe yes
18:19.39sb|workbut 30/40 shards will also be a while
18:19.47sb|workdepends on droprate
18:20.00nevcairieldepends how many hardmdoes you manage pretty fast
18:20.05ckknightwhat DK spec will provide me the most "fun"?
18:20.07sb|workyup
18:20.13nevcairielckknight: unholy, imho
18:20.13sb|workbut thats not the point :o
18:20.22sylvanaarall dk's are faceroll spec
18:21.32sb|worktanking is like "press every button you can find" - worked very well in 5s instances for me :o
18:21.39sb|workso yes.. its all faceroll :P
18:22.13yoshimosylvanaar, would be great if you had a look at the libfail tickets, they all have "new"-status
18:23.20sylvanaaroh, well- thats pretty difficult to test since im not raiding atm
18:25.29*** join/#wowace Higdur (n=nike@81-229-140-43-o1124.telia.com)
18:25.35sylvanaarthat project is more about trying to encourage authors to contribute to a common resource, than anything else.
18:26.27yoshimoif we do the testing and supply wowcombatlog-examples, would you  enhance the lib?
18:27.29sylvanaarpossibly - but it will have to be after the project i have going on at work, which is eating up all my time
18:28.18sylvanaaranyone else is welcome to enhance it...thats why i made it
18:29.37yoshimojob and money first of course ;)
18:29.58sylvanaarim really hating my job right now
18:30.23sylvanaarnot to mention that this project is java 1.4, which has to be the biggest piece of crap ever made
18:30.43sb|workhmm.. 90% of our software is java 1.4 :o
18:31.05sb|workbecause all those strange clients have 1.4 :/
18:31.10sylvanaaryeah
18:31.15nevcairiel1.4 was still uber-crap
18:31.22sb|worki know...
18:31.27nevcairielback in the time when i really hated java
18:31.35nevcairieljava5 made it usuable, and 6 is even nice
18:31.46Pneumatuscoding java without generics would make me want to slash my wrists
18:31.54sb|worki like java - even 1.4 is useable :o
18:31.59sylvanaarit takes so much code to do event the simplest of things
18:31.59sb|workPneumatus: yes.. thats annoying :(
18:32.22sylvanaarmiles and miles of boilerplate
18:33.09sylvanaargenerics would have helped
18:33.53nevcairielThe java implementation of generics is a bit weird, though. C++ templates are alot easier to use, imho
18:35.50sylvanaarjava is a lifeless language, i prefer c#/.net, MS is actively improving it, its so vastly different to java now
18:36.29sylvanaarLINQ being a great example
18:36.45VonhintenI love c# and the direction .net is taking
18:36.52VonhintenWPF, linq, etc
18:37.32sylvanaarLINQ and now Dynamic typing in 4.0
18:37.32ckknightum, Ruby ftw?
18:37.32ckknight:P
18:38.04nevcairielRuby is a scripting language
18:38.04renchapckknight: true.
18:38.18nevcairielThere are just times where you need a real language
18:38.20ckknightRuby can be used as a general-purpose programming language
18:38.23ckknighthow is it not real?
18:38.33ckknightif you need the java libraries, JRuby is great
18:38.37ckknightIronRuby is getting there for .NET
18:38.45ckknightMacRuby is looking really sweet for Cocoa development
18:39.01sylvanaarthats like saying you should write Office 2010 using python
18:39.08kagaroRubyCocoa is the shit ckknight
18:39.17Kaeltenmy personal wish is that there was cocoa on windows
18:39.19ckknightI wouldn't write Office 2010 in Java or .NET :P
18:39.23ckknightKaelten: that'd be sweet.
18:39.36kagarococoa on windows would be nice
18:39.36ckknightc'mon Curse Client in Cocoa
18:39.38Kaeltenthen objective-c could be a cross plat language, and that'd be sweet
18:39.54nevcairielKaelten: they should just use a "common" language on macs <.<
18:39.55kagaroobjective-c is cross platform .. cocoa libraries arent
18:39.56*** join/#wowace Vegeta]BT[ (n=CBus@xdslfy069.osnanet.de)
18:40.04nevcairieland not obj-c
18:40.13ckknightwhy, nevcairiel?
18:40.15Kaeltenkagaro: yeah, and the majority of obj-c's nicities come from using cocoa
18:40.41kagaroKaelten:  a lot for sure, you can get some of it on linux with the gnuNextStep stuff
18:40.41Kaeltennevcairiel: I actually like obj-c as a language, ;)
18:40.48sylvanaarwhy
18:40.50Kaeltenkagaro: true
18:41.00Kaeltensylvanaar: it's every bit as valid as c# is
18:41.01nevcairielckknight: if the question is if to change all otehr systems to obj-c, or just macs to say c++ (what everyone else uses), its easier to just change macs
18:41.02*** join/#wowace Vegeta]BT[ (n=CBus@xdslfy069.osnanet.de)
18:41.12ckknightC++ isn't a great language.
18:41.14ckknightit's rife with issues
18:41.18ckknightissues that Obj-C does not have
18:41.24kagaronevcairiel:  if you want you can code c++ on os/x all day
18:41.24Kaeltennevcairiel: c++ is a horrible language, but you can code on mac just fine with it
18:41.26nevcairielI bet it has other issues
18:41.36nevcairielthere is no perfect language
18:41.42ckknightLISP
18:41.42ckknight:P
18:41.44ckknight<.<
18:41.45ckknight>.>
18:41.49sylvanaardoes obj-c have a standards body
18:41.49Kaeltennevcairiel: obj-c is a lot more comparable to C# than it is to c++ honestly
18:41.52ckknightmy other car is a cdr
18:41.52kagaroi really enjoy objective-c
18:42.14Kaeltensylvanaar: I know there is a gnu version of it. but I think it's pretty much apple says so type of thing
18:42.15ckknightI'm still a ruby fanboi. MacRuby is really nice in that each Ruby class you make creates an Obj-C class.
18:42.17sylvanaardoes it get new revisions
18:42.32Kaeltensylvanaar: yes, got a language update with 10.5
18:42.39*** join/#wowace Vegeta]BT[ (n=CBus@xdslfy069.osnanet.de)
18:42.42kagarofor ui creation cocoa is soooo easy
18:42.49Kaeltensylvanaar: and there constantly updating the sdk
18:42.50nevcairielBut to our original argument, for say "applications", i prefer a language with type safety and other fun features that scripting languages usualy don't offer
18:43.04Kaeltennevcairiel: obj-c is for you then :D
18:43.27nevcairielso does java, c++ and c#, thats not the point =P
18:44.10Vonhintenreflection > your mom
18:44.12Kaeltenyeah I'm not sure about using ruby for desktop apps
18:44.13Fisker-enrages
18:44.20Kaeltenand python is only valid for it when useing a toolkit like qT
18:44.22Kaeltenqt
18:44.27kagaroKaelten:  lols I used it for that
18:44.40Kaeltenkagaro: hehe
18:44.53kagarointerface builder to build the application ui, and rubycoca for event handling
18:45.08ckknightimo, type safety isn't all that important if you have proper testing.
18:45.11kagaroI wrote a mp4 tagger
18:45.16Kaeltenkagaro: hehe, well.  rubycocoa is so close to obj-c you're not really using obj-c
18:45.24Kaeltener
18:45.28Kaeltenreally using obj-c :P
18:45.42kagaroi mixed in obj-c for some for thread handling
18:46.04kagaroits really sweet to be able to write a class in obj-c and use it in rubycocoa and vise versa
18:46.20Kaeltenyeah, indeed
18:46.38Kaeltenthey're both smalltalk based, so it's no real surpise they work so well togather :P
18:46.42kagarosince ruby threading was not so great i wrote some NSTask code and directly integrated it
18:47.17kagarowell in my use case getting it to update a progress bar back on the ui
18:48.03sylvanaari dont know alot about how its implemented, how does it compare to COM
18:48.08kagaromaybe i should wrap my ruby code i used for dbc spelunking with cocoa to give a ui for it
18:48.55sylvanaaror maybe managed-C
18:51.08nevcairielI should get more into C#, i've only used it briefly
18:51.22nevcairielbut i need a project first
18:52.51sylvanaarits a luxury language
18:52.59sylvanaarproductivity is so high
18:53.46sylvanaarand LINQ is really amazing
18:54.06ckknightLINQ is very cool
18:55.10sylvanaarim in the same place - i have been trying to come up with a project so i can do .net programming
18:55.27Kaeltenlol
18:55.54KaeltenI'm not sure I like .net, it seems like there design patterns lead you to writting more code
18:56.02sylvanaari sorta did a small one to get data from saved variables files last night
18:56.09KaeltenI'm really likeing some of the patterns in cocoa, like delegates
18:56.20sylvanaarreally? cause .net has delegates
18:56.28sylvanaaris a language keyword
18:56.34ckknightsylvanaar: it's a different thing, afaik
18:56.36sb|workgnaa fix wowhead already :(
18:56.42sylvanaarwhats the diff?
18:57.05ckknightsylvanaar: Kaelten's referring to UI widget delegation, not function delegation
18:57.42sylvanaarguess i dont know what that means at the language level
18:58.46Vonhinten.net has anonymous delegates now too
18:59.01sylvanaarare you talking about something like multiple dispatch?
19:03.42Kaeltensylvanaar: it's a design pattern that prevents you from having to subclass or register call backs, use events etc
19:04.02Kaelteninstead of subclassing a button, you make an instance of a button and tell it that this object is your delegate
19:04.10Kaeltenand then the delegate handles all of the events for that button
19:04.29Kaeltenalso can handle some logic for it as well
19:04.51sylvanaari see
19:04.53Kaelteni'm not even sure what delegates are in c#
19:05.05sylvanaarthey are function objects
19:05.05Kaeltenyeah it sounds kinda odd, but after using it a little, I really like it
19:05.17Kaeltensylvanaar: hrm, so kinda like a functor or something?
19:05.23sylvanaaryes
19:06.25Kaeltenheh
19:06.45sylvanaari think that delegates sound like double dispatch
19:06.58Kaeltendouble dispatch?
19:07.07Kaeltenthat has a connotation of more than one person getting a notification
19:07.30nevcairielhands design pattern books all around
19:07.36sylvanaarits about dispatching calls based on the types of the caller and the called
19:08.01Kaeltenhrm not quite delegates then
19:08.07Kaeltenthere is no type restrictions
19:12.05*** join/#wowace Gnarfoz (i=smallbra@geektour.de)
19:13.34*** join/#wowace Shirik|zZz (n=Shirik@WoWUIDev/WoWIStaff/Norganna/StatisticalEngineer/Shirik)
19:13.34*** mode/#wowace [+v Shirik|zZz] by ChanServ
19:14.27Repo10flight-hud: 03Barfolomeu * r172 FlightHUD.lua: Make a value a variable.
19:15.32Repo10flight-hud: 03Barfolomeu 04v0.7.14 * r173 : Tagging as v0.7.14.
19:17.22Kaeltenhttp://dl.getdropbox.com/u/289359/Curse%20Client-3.0.0.2.0.dmg
19:17.27Kaeltenneed testers please ^
19:17.53kagaroim onit
19:18.01nevcairielgimme a macbook and i will
19:18.08Kaeltennevcairiel: lol
19:18.17Kaeltenkagaro: thanks man :)
19:18.21nevcairielI wonder how long i need to save amazon gift tickets from wowace for a macbook
19:18.39Kaeltengood question, it really depends on how well premium does
19:18.55Kaeltenthe more premium subs we have the more money will be put into the rewards program
19:19.09Kaeltensince past the first month it's a direct corrolation
19:19.37kagarohte menu selection is still sticking when highlighting multiple addons
19:20.10Kaeltenkagaro: yeah, that's a low level issue with wx, we targeted mainly crash bugs, and integration with osx
19:20.31Pneumatuspremium coming soon then? :P
19:20.41kagarothe update addons preference seems to be not working
19:20.46KaeltenPneumatus: sooner than ever before ;)
19:20.52kagaroits always updating them even after unchecking auto update
19:20.53Kaeltenkagaro: which?
19:21.10Pneumatusnetcurse implied it was only a week or two away some months ago :P
19:21.13Kaeltentalking aobut auto update?
19:21.16kagaropreferences about auto updating your mods
19:21.22KaeltenPneumatus: that implication may still be valid ;)
19:21.36nevcairielPneumatus: he is an evil french man, don't believe a thing he says
19:21.46kagarohold on Kaelten
19:21.53Kaeltenkagaro: did you remember to hit save?
19:21.58kagaroyeah i did
19:22.08KaeltenI just tested it and it worked for me :s
19:22.09kagaroit keeps updating the same set of addons every time i launch
19:22.22PneumatusKaelten: is the only holdup now the mac client?
19:22.31sylvanaarmine keeps trying to update my working copy of prat every 30 min or so
19:22.33KaeltenPneumatus: largely
19:22.51Kaeltensylvanaar: yeah I want to fix it so the check happens a lot earlier than it does now.
19:23.00Kaeltenit's stupid that it doesn't check until it tries to overwrite the files
19:23.33kagaroshould it really be a blank window after doing updates?
19:23.40Kaeltener...
19:23.44Kaeltenyoug ot the blank window bug?
19:23.53Kaeltenwhen you hit refresh does it do anything?
19:23.57kagaroit updated now the 'Your Addons' tab is blank
19:24.00kagaronope
19:24.03Kaeltenshit
19:24.05Kaeltenfucking a
19:24.14Kaeltendb misuse most likely
19:24.19Kaeltengive me your CurseClient.log file
19:24.19kagaroit does say 'All addons are up to date'
19:24.21Kaeltenpelase
19:24.23Kaeltenplease*
19:24.32kagaroKaelten:  where do you write it
19:24.37Kaelten~/.Curse Client
19:25.09Stanzillabtw Kaelten, why are there two "Save" buttons in the Manage Games tab?
19:25.13nevcairielew a folder with a space in it
19:25.29Kaeltennevcairiel: nothing wrong with that :P
19:25.33sylvanaarpress tab
19:25.48nevcairieli try to avoid it whenever possible
19:26.01sylvanaarwell, you can Curse.Client
19:26.07nevcairielCurseClient imho
19:26.38Kaeltennevcairiel: it's pretty common on mac actually
19:26.38sylvanaarcc
19:26.46nevcairielmacs are just weird
19:26.59Kaeltennot really
19:27.03Kaeltenit's pretty common on windows too
19:27.09kagaroyeah my changes are not being saved, the popup saves it saved but when i restart they are bak to what they were
19:27.12nevcairielwindows doesnt use CLI
19:27.19sylvanaarright
19:27.29Kaeltennevcairiel: neither does your avg mac user
19:27.31nevcairielwell i suppose the average mac person doesnt either
19:27.39Kaeltenkagaro: yeah, the db is hosed right now you need to restart your client
19:27.54sylvanaaryour average user in general
19:28.03kagaroit does it everytime i restart the client Kaelten
19:28.06nevcairielthe average user in general doesnt use linux, heh
19:28.11sylvanaarthats right
19:28.13Kaelteneverytime?
19:28.18kagaroyes
19:28.23*** join/#wowace kd3|hate`net (n=kd3@wikia/kaydeethree)
19:28.27kagarowhere is the pref fils ill go nuke them
19:28.44Kaeltenkagaro: clear that file
19:28.46Kaeltenrestart the client
19:28.54Kaeltenand if it does it again pass it back to me
19:29.09Kaeltenit's not a pref issue from what your log file tells me
19:29.21KaeltenMon Mar 23 16:41:05 2009> [SQLiteDB] Query failed..select value from setting where name='packagepref'
19:29.21KaeltenMon Mar 23 16:41:05 2009> [SQLiteDB] library routine called out of sequence    
19:29.27sylvanaari remember for about 12 years all my pcs were apple and i was a mac fanboi, then i got a pc, now mac seems wierd
19:30.18sylvanaarim buying a new pc - i want to put osx on my old one
19:30.22Kaeltenyeah looking up it looks like you get that error early in execution
19:30.34kagaroi did at 1 point have the 2.0 mac client installed
19:30.50sylvanaari have osx on a vm - but its not usable
19:31.07Kaeltenkagaro: any feedback on the new images?
19:31.16kagaroimages look good
19:32.09Kaeltenwipe your .Curse Client directory, restart the client
19:32.14Kaeltensee if it keeps happening
19:32.15kagarook looks bette rnow
19:32.34kagaroi nuked everything under that dr , reconfigured and now its a lot mroe stable
19:32.39kagarono more blank windows
19:33.37kagarowhat is the icon next to some of the addons
19:33.55kagaroohh marking recently updated
19:34.01kagaroyou might wana change that one
19:34.17kagaroits not very clear what its there for
19:34.35kagaroKaelten:  no sorting?
19:34.45Kaeltenthe damn things aren't clickable
19:34.56Kaeltenthats on my list to hit wx until it tells me why
19:35.06kagarook i just crashed it
19:35.31Kaeltensame symptons?
19:35.34kagarono
19:35.42kagaroi was trying the find addon section
19:35.42Kaeltenoh? real crash?
19:35.49kagarothe input box was disabled
19:35.53kagaroi hit refresh
19:36.03kagarotried to enter the input box it crashdumped
19:36.18Kaeltenpass me the crash dump?
19:36.27kagaroyeah i can
19:36.37kagaroViewNameSort
19:36.39Kaelteni love that they're normally pretty useful on mac
19:36.53Kaeltenhrm, where you downloading the list at the time?
19:37.39*** join/#wowace fewyn (n=fewyn@rrcs-71-41-249-202.se.biz.rr.com)
19:37.59kagarowhen i hit refresh button
19:38.23kagaroyeah reliably can crash it
19:38.33Kaeltenwtf
19:38.38kagaroopen the client, click teh find addon tab, click refresh
19:39.22Kaeltenhrm managed to find another crash too
19:40.01*** join/#wowace Aurica (i=Silowyi@24-155-117-69.dyn.grandenetworks.net)
19:45.20Kaeltenugh, this code is messy
19:52.04*** join/#wowace Vilkku (n=Vilkku@gprs-prointernet-ff656a00-144.dhcp.inet.fi)
19:55.15Repo10magic-dkp_client: 03dhedbor * r50 MagicDKP_Client.lua: Create bid dialog on initialization.
19:57.41Fisker-Kaelten did you follow the recipe?
19:57.47*** join/#wowace Tekkub (n=tekkub@WoWUIDev/WoWI/Featured/Dongle/GitHub/Tekkub)
19:57.47*** mode/#wowace [+v Tekkub] by ChanServ
19:58.08*** join/#wowace QQngsk (n=Gngsk@c-69-138-214-242.hsd1.md.comcast.net)
20:05.01*** join/#wowace Anaral (n=Anaral@WoWUIDev/Norganna/QA-Manager/Anaral)
20:06.23*** join/#wowace kenlyric (n=chatzill@c-71-228-10-172.hsd1.il.comcast.net)
20:07.09*** join/#wowace Tem (n=tardmrr@WoWUIDev/WoWI/Dongle/Tem)
20:07.10*** mode/#wowace [+o Tem] by ChanServ
20:09.15Repo10gem-helper: 03Xinhuan * r87 GemHelper_Localization.zhTW.lua: Update zhTW locale from Taiwan forum.
20:23.26VonhintenKaelten, your description of delegates is one of the ways .net delegates are used.  You instantiate a button, and then add delegate event handlers to it.  It's not a whole object though, you basically subscribe to the events you care about
20:24.28Vonhintenbutton.Click += delegate( args here ) { function contents };
20:24.29Vonhintenfor instance
20:24.32KaeltenVonhinten, yeah, you don't have define functions to answer all of the possible delegates.
20:25.15Kaelten[button setDelegate: [[buttonDelegate alloc] init]]; for me
20:25.26Kaeltenand then just add member functions to the delegate
20:27.26VonhintenOne of the other cool things you can do now is use lamba expressions in place of delegates
20:27.43Kaeltenyeah not sure what obj-c has for anon functions
20:29.13nevcairielobj-c syntax is so weird
20:29.23ckknightnevcairiel: it's because it's smalltalk-like
20:29.34nevcairielthat doesn't make it any less weird
20:29.36nevcairielimho.
20:29.43ckknightbecause you're not used to it
20:29.48nevcairielI never liked the actual smalltalk syntax
20:29.51ckknightObj-C currently doesn't have anonymous functions, but that might go in in Objective C 3.0
20:29.54Kaeltennevcairiel: yeah, the message syntax is the oddest bit
20:32.21Kaeltenonce you get used to it's not that bad
20:32.28Kaeltensoem things are kinda nice
20:39.08*** join/#wowace Stew_a (n=Stewart@unafilliated/stewa/x-008753)
20:47.09SqueeGKael
20:49.34*** join/#wowace Higdur (n=nike@97-110-117-82.cust.blixtvik.se)
20:56.24*** join/#wowace tekkub_ (n=tekkub@c-67-165-224-198.hsd1.co.comcast.net)
20:56.55*** join/#wowace SqueeG|AFK (n=SqueeG@74-32-72-163.dr03.mdtw.ny.frontiernet.net)
20:58.53*** join/#wowace tekk (n=tekkub@c-67-165-224-198.hsd1.co.comcast.net)
20:59.15*** join/#wowace ilovemrdoe (n=chatzill@88-104-81-173.dynamic.dsl.as9105.com)
20:59.47Repo10pitbull4: 03TAP3AH 06tap3ah * r27 / (5 files in 3 directories): mainline content updated to r20090328180056
21:00.31*** join/#wowace tekk (n=tekkub@c-67-165-224-198.hsd1.co.comcast.net)
21:01.40Repo10auctionlite: 03MerialKilrogg * r88 / (7 files in 1 directory): Implement sortable columns.
21:02.46*** mode/#wowace [+v tekkub] by ChanServ
21:03.20Repo10auctionlite: 03MerialKilrogg * r89 QueryAuctions.lua: Eliminate debug code.
21:05.05*** join/#wowace tekkub (n=tekkub@WoWUIDev/WoWI/Featured/Dongle/GitHub/Tekkub)
21:05.05*** mode/#wowace [+v tekkub] by ChanServ
21:06.02*** join/#wowace Thelyna (n=burp@122-57-255-111.jetstream.xtra.co.nz)
21:06.52*** join/#wowace Seerah (n=Ryan_L@adsl-177-38-78.mem.bellsouth.net)
21:15.37*** join/#wowace copystring (n=copystri@p548A1FB1.dip0.t-ipconnect.de)
21:23.01Repo10combo-points-redux: 03Starinnia * r67 Core.lua: try to clear combo points off dead targets quicker
21:36.15*** join/#wowace Iboong (n=user@77.87.207.194)
21:47.29*** join/#wowace Orphis (n=quassel@belgarath.moomoocamp.net)
21:56.13*** join/#wowace TradeMark (n=trademar@ip-118-90-104-76.xdsl.xnet.co.nz)
21:59.40*** join/#wowace Anaralx2 (n=Anaral@WoWUIDev/Norganna/QA-Manager/Anaral)
22:02.09*** join/#wowace RLD_osx (n=rldempse@66-169-191-207.dhcp.ftwo.tx.charter.com)
22:06.12*** join/#wowace Antiarc (n=Antiarc@wsip-70-167-195-98.ph.ph.cox.net)
22:06.12*** mode/#wowace [+v Antiarc] by ChanServ
22:08.28*** join/#wowace gix (n=gix@e180044201.adsl.alicedsl.de)
22:15.42*** join/#wowace Tenchworks (n=none@76-231-27-217.lightspeed.wlfrct.sbcglobal.net)
22:18.15*** join/#wowace tekkub (n=tekkub@WoWUIDev/WoWI/Featured/Dongle/GitHub/Tekkub)
22:18.15*** mode/#wowace [+v tekkub] by ChanServ
22:24.27*** join/#wowace tekkub (n=tekkub@WoWUIDev/WoWI/Featured/Dongle/GitHub/Tekkub)
22:24.28*** mode/#wowace [+v tekkub] by ChanServ
22:24.44*** join/#wowace SlikerHawk (i=SlikerHa@5ac5c9fe.bb.sky.com)
22:31.05*** join/#wowace selckin (n=selckin@unaffiliated/axxo)
22:32.03*** join/#wowace Jygga (i=Jygga@port-212-202-202-32.dynamic.qsc.de)
22:32.10selckinSPELL_DAMAGE,0x00000000023F99B1,"Kishin",0x514,0xF1300059A80001B4,"Veras Darkshadow",0xa48,49909,"Icy Touch",0x10,1190,0,16,-198,0,0,nil,nil,nil
22:32.13selckinnegative resisted value? wtf?
22:32.33ckknightlulz
22:32.52Pneumatusisnt that overkill?
22:33.05selckinno 1190 damage, 0 overkill, -198 resisted
22:33.50selckinerr
22:34.23selckinyeah thats right
22:34.32*** join/#wowace tekkub (n=tekkub@WoWUIDev/WoWI/Featured/Dongle/GitHub/Tekkub)
22:34.32*** mode/#wowace [+v tekkub] by ChanServ
22:34.36selckin16 is spellschool
22:35.13selckinso this is a wow bug right?
22:40.47selckinnow i have to fiddle negatives in my lexer /cry
22:40.50*** join/#wowace tekkub (n=tekkub@WoWUIDev/WoWI/Featured/Dongle/GitHub/Tekkub)
22:40.50*** mode/#wowace [+v tekkub] by ChanServ
22:43.00NeoTronnevcairiel: so got join/leave tracking in there
22:43.13nevcairielnice
22:51.38NeoTronhttp://eongames.com/tmp/export-example.xml  example with the join/leave events and http://eongames.com/tmp/export-example-2.xml actual raid exported
22:52.00Arrowmasterselckin: there have always been negative resists
22:52.23selckinArrowmaster: what do they mean then?
22:52.32Arrowmasterthey mean extra damage
22:52.45selckinwasn't that removed back in molten core days :\
22:52.48Arrowmasterno
22:53.02Arrowmasteronly that debuffs could put them negative
22:53.27Arrowmasterthe domo healer adds always had negative resists before debuffs
22:54.00*** join/#wowace tekkub (n=tekkub@WoWUIDev/WoWI/Featured/Dongle/GitHub/Tekkub)
22:54.00*** mode/#wowace [+v tekkub] by ChanServ
22:54.05selckinwhy are so extremely rare then? i just parsed like 4gb or logs and have about 2 negatives
22:54.08Arrowmasterafaik the actual damage done should be given but the -198 should just be telling you that it did 198 extra damage
22:54.29Arrowmasterbecause the mob has to specificly have a negative resistance level naturally
22:54.33Arrowmasterwhich isnt common
22:55.12AeyanI was leveling a mage the other day and hit one of the tar beasts in Un'goro with a fires spell and got a negative resist
22:55.16AeyanI had to look twice, hehe
22:55.26AeyanThink the combat log called it vulnerability damage
22:55.37selckinArrowmaster: thanks for the info, do you know anywhere i could verify if it's included in the damage?
22:56.13Arrowmasteryes roll a warlock, immolate has a fixed inital damage, theres no range on it
22:56.43Arrowmasterlevel up to 50 or so and goto ungoro for tar beasts and random things nearby
22:56.43AeyanWell, it's only my observation, but I can tell you yes it is included in the damage
22:57.03NeoTronnevcairiel: any opinion on the format as such?
22:57.12selckingood enough i guess, gonna edit the wiki with that info :\
22:57.27nevcairielNeoTron: thats your new format?
22:58.10Arrowmasteractually isnt all of those resist/overkill/overheal things included in the value given? its just the combatlog display that does things like remove the overkill from the damage done to show how much damage you did that killed it
22:59.48nevcairielNeoTron: so every join gets a <start> and every leave a <end>?
23:01.16*** join/#wowace Nayala (n=Nayala@cpe-075-182-078-142.nc.res.rr.com)
23:01.28selckini'd create diffrend elements for item info and who got it :\
23:01.43NeoTronevery join/end pair will have a <period><start></start><end></end></period>
23:01.57Arrowmasterwhy does that remind me of ctrt xml
23:02.22NeoTronit's not really like the ctrt format (less duplicated data) but overall the data exported is the same
23:02.32nevcairielI've never really looked at the ctrt export format
23:02.36Arrowmasterand your encoding is in ISO-8859-1 when you probably should be using UTF-8
23:02.46Arrowmasterctrt format doesnt have duplicated data
23:02.56NeoTronctrt format is horrid. nuff said
23:02.58Arrowmasterdepending on what your reference is that is
23:03.06NayalaGot another .pkgmeta question. Is there a way to get it to always embed certain externals even in the no-libs version when using the new url: and tag: fields or do I have to go back to manually naming SVN tags?
23:03.36Nayala(All my 2009-03-27 no lib packages ended up empty again.)
23:03.43ArrowmasterNayala: no, no-lib zips will never have externals
23:03.50nevcairielYou cannot always-embed anything thats hosted on wowace or curseforge.
23:04.01nevcairielOnly stuff not on CF or WoWAce will always be in
23:04.06nevcairielLike, LibDataBroker
23:04.28nevcairielthats the only one i can think of :)
23:04.38NeoTronArrowmaster: hrm I just add strings together in WoW and put in in an edit box
23:04.39NayalaThey did when I used the full path to the tagged version, instead of using the split URL / TAG feature.
23:04.50NeoTronnot sure how to control the encoding
23:05.22ArrowmasterNeoTron: then whatever you are pasting it into is doing the encoding
23:05.48ArrowmasterNayala: if they did then it was a bug that doesnt exist anymore
23:06.43NayalaAh, bummer. It was how I was handling subsetting my addon.
23:07.00Arrowmasterinfact im certain it never did that
23:07.05selckinNeoTron: just put a <xml> header at the top with utf-8
23:07.16Arrowmasterselckin: that wont work
23:07.29nevcairielI think there was a bug that caused explicit svn tags to be handled as external
23:07.54Arrowmasterthat was only for tags i think
23:08.16NeoTronselckin: adding the encoding to the xml isn't hard but that does indeed not change the text given to me
23:08.33NayalaSo to replicate that bug now I'd have to move the core off wowace svn?
23:08.36Arrowmasterits not the text given to you
23:08.37selckinwow is in utf-8 afaik
23:09.25nevcairielNayala: if you have some stuff that always has to go in one zip, place it in one repository :P
23:09.25Arrowmasterdoesnt matter if its wow or not, hes using windows copy paste, so its all dependent on what hes pasting into
23:09.50NeoTronreally?
23:09.50NayalaHave stuff for one repository that needs to go into 5 different zips.
23:10.00NeoTronwindows converts utf8 to iso-8859-1?
23:10.01Nayalafor = from
23:10.10nevcairielmake it a proper library?
23:10.13ArrowmasterNeoTron: your editor is
23:10.51Arrowmasterand its being copied as pure unicode probably or utf16
23:11.08selckinthe file is in utf-8
23:11.16Arrowmasterthe file is not
23:11.38Arrowmastersince i have to change the encoding to iso-8859-1 for the puma name to be correct
23:11.46NayalaIt is a library. But has several modules, that are not always needed depending on the usage. So there are different front ends that just have the pieces needed.
23:12.13NayalaBut that means that the addons using it are empty if they are fetched as no-libs.
23:12.20selckinah you are correct!
23:12.25selckinbad vim magic fixed it :\
23:12.47NeoTronI pasted the data into xemacs running under X11 in Windows
23:12.49ArrowmasterNayala: thats the point of no-libs
23:12.54NeoTronso... who the heck knows what that did :P
23:13.15selckinjust always include the encoding in the file
23:13.28Arrowmasterenclude the encoding in the text in wow
23:13.39Arrowmasterthen maybe xemacs will save it as utf8
23:13.39NayalaYes, and in the past they didn't include any other libraries, just the subset they needed from the core. As it is now, they end up completely empty.
23:14.03ArrowmasterNayala: so make your standalone load everything
23:14.52Arrowmastereither split them all out into seperate libraries or make the standalone download load all the modules
23:15.53NayalaProblem is it's not a complete disjunction... and the "split-offs" we only created to give an easy upgrade path.
23:16.20Arrowmasterstill sounds like a 'your doing it wrong' problem
23:16.47NeoTronselckin: except in ths case it seems like it converted it to iso-8859-1 for me
23:16.50NeoTronbut that's just emacs
23:17.05ckknightArrowmaster: you misspelled 'ur'
23:17.28NayalaIt does sound that way... but hindsight is 20-20, and I don't want to change the layout before I do 2.0
23:17.48ArrowmasterNeoTron: yeah include a <xml encoding="UTF-8"/> whatever tag in the text in wow before copying it imho
23:19.34NayalaNote they way it is, it works if they use no-lib and grab all the libraries... just seems silly to even fetch the shims if they don't need it in that mode.
23:19.53Arrowmaster.....
23:20.00Arrowmasterthats the way its suppost to work!
23:20.08Arrowmasterif you use no-lib you have to grab all the libraries
23:20.11NayalaYes
23:20.53ckknightlet's just not use libraries and go back to writing all the code ourselves
23:20.54ckknightamirite?
23:20.55*** join/#wowace yleaf (n=yleaf@116.234.207.240)
23:21.19nevcairielI big parts of Ace3, can i still use it now?
23:21.22NeoTronArrowmaster: which is fine. I don't normally paste into xemacs anyway. guessing it simply doesn't work to paste it in there correctly
23:21.25nevcairielI wrote*
23:21.35ckknightnevcairiel: sorry, no, you'll have to rewrite it all
23:21.39ckknightand you can't look at the codes
23:21.40ckknightso
23:21.43ckknightexpect bugs
23:21.50nevcairielI don't do bugs
23:22.11ckknightk
23:22.12NayalaGuess not making myself clear.
23:25.44NeoTronhttp://eongames.com/tmp/export.xml worked fine
23:26.35NayalaFor example. Baggins_Professions, if they want the no-lib version, they have to grab LibStub, LibCallbackHandler-1.0 and LibPeriodicTable-3.1 which is exactly what should be happening. But as of the newest changes they also need to grab LibFilter-1.0, which would mean that they would get a whole bunch of modules that they wouldn't get with just the stand-alone. (Again hindsight is 20-20, and 2.0 will be designed differently.)
23:26.52ArrowmasterNeoTron: you just added the <?xml version="1.0" encoding="UTF-8"?> to the ingame box before copying the text?
23:27.31ArrowmasterNayala: "your doing it wrong"
23:27.33NayalaTo be honest I didn't even want to provide the shims and just have everyone grab the library if they needed it, but listed to my users and got myself into a mess.
23:28.05Arrowmaster"listened to my users" <- "your doing it wrong"
23:28.10NayalaBut I'm trying to at least keep it working until a redesign which I can just dump all the junk modules.
23:28.19Nayala:P
23:29.47NeoTronArrowmaster: and I copied it into a xml text editor I downloaded
23:30.16NeoTronreload http://eongames.com/tmp/export.xml to see the ctrt format (but formatted, normally no whitespace)
23:30.28selckinmost editors will ignore the header, since they don't actually parse it
23:30.59NeoTronit has a lot of extra crap, doesn't join looted items with an event etc
23:31.16NeoTronmy export format almost mirrors the in-memory structure I use
23:31.59Arrowmastertheres a major difference between what you get when creating a ctrt export and what is used when you import a ctrt xml
23:32.13Arrowmasterwhich is why the format sucks so much
23:32.16NeoTronright
23:32.22NeoTronmy export is NOT the "full" ctrt format
23:32.39NeoTronit's just the stuff you need. I _think_ ctrt puts the player info in each entry in each event for example
23:32.48Arrowmasterso in other words, make an publish an xsd for it
23:33.07Arrowmasterctrt only reads the player info from the <join> sections
23:33.13NeoTronbut the really dumb thing is that they use <keyX></keyX> around all "events"
23:33.56NeoTronin that export I fake the "join/leave" to only surround actual events
23:34.18NeoTronalso the importer doesn't import events without items which is comical. it's bad
23:35.03NeoTronanyone know of a free xml => xsd generator?
23:35.24Arrowmasteri dont think the xsd syntax is that complex
23:38.10ckknightdown with XML
23:43.46*** join/#wowace |ncubus (n=a@76-10-131-72.dsl.teksavvy.com)
23:43.54Gnarfozdown with ckknight
23:44.00ckknightboo
23:44.17Gnarfoz\o/
23:44.23NeoTronI should export in lisp format
23:44.29GnarfozNeoTron: ...don't
23:44.37NeoTron(raid (start 12123) (end 123123) (events (event (... ))))))
23:45.38Arrowmasteryaml
23:45.41deQerpurl, that wasn't a meaningful kiss.  :(
23:45.51selckinbe cool use json
23:46.13Arrowmaster@describe libjson-1-0
23:46.14RepoArrowmaster: http://www.wowace.com/projects/libjson-1-0/. LibJSON-1.0. LibJSON-1.0 is a library to convert between Lua objects and serialized JSON objects This is mostly useful if you are exporting lua data to external applications. local LibJSON = LibStub("LibJSON-1.0")...
23:46.37selckincool
23:46.42selckini'm gonna use that!
23:54.45*** join/#wowace Seerah1 (n=Ryan_L@adsl-66-10-117.mem.bellsouth.net)
23:55.37*** join/#wowace Wobin (n=Wobin@124-168-131-220.dyn.iinet.net.au)
23:55.37*** mode/#wowace [+v Wobin] by ChanServ
23:59.41*** join/#wowace p3lim (n=p3lim@084202164112.customer.alfanett.no)

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