IRC log for #wowace on 20080503

00:03.57JJSheetsis there a function in WoW to determine if you are moving or not?
00:04.28*** join/#wowace Camcii (i=Camci@c-0933e353.572-1-64736c10.cust.bredbandsbolaget.se)
00:04.55*** join/#wowace dantor (n=dantor@dslb-084-059-115-053.pools.arcor-ip.net)
00:06.11*** join/#wowace kilrogg (n=kilrogg@muedsl-82-207-251-002.citykom.de)
00:06.38JavekWhy does Ace3 do this: Ace3 = LibStub("AceAddon-3.0"):NewAddon("Ace3", "AceConsole-3.0")
00:06.38Javeklocal Ace3 = Ace3
00:06.51JavekWhy not keep refering to the global?
00:06.58JavekDoes converting it to local make it more effecient?
00:06.58JJSheetslocals are faster
00:07.19JJSheetsyou will often see stuff like local math_min = math.min
00:07.30JJSheetsand even, local UnitName = UnitName
00:07.40Dashkallocal pairs, ipairs = pairs, ipairs;
00:07.50Javekso if you're ever calling something more than once, make it a local?
00:07.54vhaarrJJSheets: not without checking GetPlayerMapPosition
00:07.55Dashkalregister access instead of a table lookup
00:07.56vhaarrJavek: no
00:08.05Javeki mean within a function
00:08.11vhaarrJavek: if you're calling something in a OnUpdate or 100 times, then make it local
00:08.20JJSheetsvhaarr, thanks, I was afraid that's the case.  no way to check it inside an instance?
00:08.34vhaarrJJSheets: well there's gpslib
00:09.08JavekWhere's some good documentation on writing efficient lua code?
00:09.15Javekthat discusses local vs global lookups, etc
00:09.20JJSheetsvhaarr, where do I get that?
00:09.21*** join/#wowace Toadkiller (n=dnester@adsl-75-30-187-161.dsl.pltn13.sbcglobal.net)
00:09.27vhaarrJJSheets: the svn
00:10.11dantorare lua files always loaded completly into the ram?
00:10.12JJSheetsah, I see it.  thanks.
00:10.14vhaarrJavek: http://wowace.com/wiki/Coding_Tips
00:10.35JJSheetsdantor, they are compiled into a lua bytecode.
00:11.11dantorand what about large databases like in questhelper or tour guide?
00:11.43*** part/#wowace YourMomsHero (n=cirish@74.202.196.195)
00:11.45JJSheetsLoad on demand addons can be cleared out of memory when not loaded.
00:12.06JJSheetsotherwise, if an addon is loaded, all lua code is as well.  (IIRC)
00:13.02dantoris this the reason for some databases to be split up in ~10 different addons?
00:13.10JJSheetsprobably.
00:13.12*** join/#wowace kenlyric (n=chatzill@c-68-54-218-192.hsd1.in.comcast.net)
00:13.29JJSheetsbut don't quote me on it... I've never written any such addons.
00:13.45dantorokay
00:14.26HydrogenI believe its load on demand, but they don't automatically unload
00:14.29Hydrogenwhich is a bit of a shame
00:14.43Hydrogenand If theres api to unload them, I don't think I've seen an addon to manage that
00:15.32CIA-4003Ganders * r72483 10NinjaYell/core.lua:
00:15.32CIA-40NinjaYell:
00:15.32CIA-40- Attempted fix for srcFlags (still needs some work)
00:20.41KolieCurse Client Beta Update out, if your new to testing it go to testclient.curse.com and download the 0.15.0.0 Setup. If not just rerun your beta client and it will update.
00:21.58dantorhas there ever been some lua-malware for wow? for example, it is possible to get a error message popped up on clients which run the wow instant messanger by sending a wrong value per SendAddonMessage to them. Ok, this does not really harm, because you can turn off lua errors, but maybe there are some more critical security leaks in some addons which can cause the client to crash
00:22.12*** join/#wowace baka_ranger (n=Yumm@66-215-38-143.dhcp.hspr.ca.charter.com)
00:22.40*** part/#wowace baka_ranger (n=Yumm@66-215-38-143.dhcp.hspr.ca.charter.com)
00:22.53Antiarcwhile true do end
00:22.56AntiarcTADA
00:23.08*** join/#wowace RaydenUni (n=bozartmp@cpe-67-240-172-227.rochester.res.rr.com)
00:23.27JJSheetsyeah, about the only REALLY bad thing would be an infinite loop, or something which cycles through globals and sets them to nil.
00:23.29DashkalI haven't seen reports a remotely exploitable addon yet.  Not foolish enough to believe that there isn't one out there
00:23.38*** join/#wowace dylanm (n=dylanm@c-98-224-225-196.hsd1.mi.comcast.net)
00:23.48Antiarc_G["WorldFrame"] = nil would be fun.
00:23.57JJSheetsremote exploits would require an addon that executes code sent in a message.  not too likely to happen.
00:24.16JJSheetsbut not impossible either.
00:24.17AntiarcKenco was working on a feature for KTM at one point that would let raid leaders send Lua to other raid members which would then be loadstring()'d
00:24.21DashkalNever underestimate how stupid programmers can be :p
00:24.22AntiarcI think he abandoned it
00:24.33JJSheetsI hope he did.  :p
00:24.34DashkalOh dear god
00:24.50AntiarcThe idea being that a raid leader could push a boss mod to raid members that hadn't updated.
00:25.11Antiarc...or lock their clients right before loot is handed out OH DANG THEY ALL DISCONNECTED GUESS I'LL TAKE THIS WARGLAIVE.
00:25.14JJSheetsDashkal, I don't underestimate them.  All of us are fallibel.  :p
00:25.15Pollekedidnt RDX allow that?
00:25.16DashkalI figure the first time it happens it'll probably be subtle.  Send a message to one addon that talks to another that talks to another that loadstrings thinking, hey, this will never come from a remote player
00:25.21JJSheetslol Antiarc
00:25.29JJSheetsgrrr
00:25.52JJSheetss/fallibel/fallible/ or however the hell you spell it... still doesn't look right...
00:26.03JJSheetsbah...
00:26.13DashkalI think you proved your point :p
00:26.17JJSheetslol
00:26.37JJSheetsamazingly enough, fallible is right... just looked it up. :)
00:26.43AntiarcI should write an addon called UltimateUIExtender
00:26.58AntiarcWhich just loadstring()s everything received via chat
00:27.06Dashkalcackles
00:27.14JJSheetslol Antiarc
00:27.27AntiarcSwedishUIEnlarger
00:27.28dantori wrote an addon which could transmit a diffrent addon, tried it with dancemusic and it worked
00:27.28AntiarcThere we go.
00:27.33JJSheetshahaha
00:28.10Dashkalhmm, now I'm all paranoid.  Think I'll grep for loadstring in my addons directory
00:28.20*** join/#wowace dylanm_ (n=dylanm@c-98-224-225-196.hsd1.mi.comcast.net)
00:28.41JJSheetsDashkal, if you have Omnibus, you'll find it there.  I think you'll also find it in Ace3.  :)
00:29.00Dashkalthe mere presence of it isn't bad, I just want to see how it's getting usedx
00:29.05DashkalMyDebug will have it as well
00:29.11Pollekehow can there be a legit use of it?
00:29.21DashkalMyDebug lets me type in lua and execute it
00:29.30JJSheetsPolleke, Omnibus allows you to type in lua and execute it also.
00:29.39dantorbut local and not remotely controlled
00:29.42*** join/#wowace grzesieq (n=grzesieq@asd104.neoplus.adsl.tpnet.pl)
00:29.43Dashkalnogs
00:29.45JJSheetsAce3 uses it to create callback handlers.
00:29.46Dashkaleepanels does it too
00:30.01DashkalI'm more interested in unexpected uses
00:30.11AntiarcChatter does it :V
00:30.15Dashkalif (using this as an example, I haven't looked) omen uses it, I wanna know why
00:30.32JJSheetsOmnibus allows you to recieve lua code from others, but it won't execute it until you tell it to.
00:30.41Dashkalwhat is omnibus?
00:30.53AntiarcChatter allows you to use lua to replace channel names
00:30.58AntiarcBasically define a gsub handler
00:31.04Dashkal<3 Antiarc
00:31.07JJSheetsOmnibus is a year old addon I wrote as a text editor in game.
00:31.10DashkalMust go look up that feature
00:31.24DashkalI don't suppose I can do that with player names?
00:31.34dantorhey, lets build a bot network and sell it to the gold spammers
00:31.43AntiarcNot currently
00:31.50JJSheetslol   gsub("Euphemian","Bastardo the Magnificent")
00:31.57Antiarcfunction(s) return "[" .. GetRealZoneText() .. "] " end
00:32.11AntiarcSet that as a channel name for General, for example
00:32.13DashkalBut this does make the point that somewhere in one of these mods may exist a remotely exploitable bug where unclean strings are somehow accidently fed to loadstring
00:32.22AntiarcAnd it'll change [1. General - Stormwind City] to [Stormwind City]
00:32.49Gnarfozit'll also do GetRealZoneText() for every message
00:32.50Gnarfoz?
00:32.54AntiarcYeah, well. >_>
00:32.59JJSheetsDashkal, correct.  It hasn't come up yet in any addons I know, but it's still quite possible.
00:33.06AntiarcI never said it was efficient.
00:33.13JJSheetslol Antiarc
00:33.20GnarfozAntiarc: btw, you seem... otherwise occupied lately
00:33.27Antiarcyeah, I've been busy
00:34.06DashkalAnd I could just see one getting written that does something nasty like intercept the next cash mail you do and send it to some random toon
00:34.18dantordoes not work
00:34.45dantorafaik the function is protected
00:34.55DashkalIntercept a cash mail you're already doing
00:35.05Dashkalso the hardware event is still used
00:35.07dantorokay
00:35.28Dashkal(asuming you could also corrupt the confirm dialog without tanting things)  Doesn't matter, just using it as an example
00:35.46JJSheetsOnly SetSendMailCOD and SetsSendMailMoney are protected, so such an addon or malware COULD be made.
00:35.59JJSheetswhich is downright evil.
00:36.20*** join/#wowace [1]the-golem (n=the-gole@adsl-76-245-106-252.dsl.scrm01.sbcglobal.net)
00:36.20ckknighthey, anyone want to test the curse client, there's a new beta out. go to testclient.curse.com and install the 0.15.0.0 version
00:36.28ckknightcould be fun ;-)
00:36.30Dashkalyep yep.  write the code you need for the malware, find an exploitable addon, and start sending messages to likely victims.  one botnet comming right up :p
00:36.36starlonkeylogger
00:36.37JJSheetsmy sneaky headed virus killing side could see a way to intercept it like that.
00:37.03dantoror just implement such an exploit in your own addon
00:37.13JJSheetsI'd never create either.
00:37.19Dashkalcould do that, but that's more likely to get you caught somehow
00:37.32JJSheetsnot even as a proof of concept to get Blizzard to do something about it.
00:38.00*** join/#wowace RaydenU (n=bozartmp@cpe-67-240-172-227.rochester.res.rr.com)
00:38.00DashkalNor I.  But I will consider the possibility when designing my own stuff to avoid being the author of the mod that became storm on wow
00:38.09JJSheetslol
00:38.29JJSheetsthinks a wowAntiVirus is on the way. :p
00:38.38DashkalI mean, just imagine the havoc if someone found an exploit in threat, or ora
00:40.46DashkalActually, that makes me wonder.  Has anybody aside from the authors audited those two mods?
00:41.34Pollekeyes, tens if not hunderds of people have looked over the code for both addons
00:42.00Pollekewe're talking about small projects, less than 10k lines
00:42.13DashkalPolleke: You sure?  It's one thing to read the source, it's another to actually audit software for security.
00:42.58*** join/#wowace mykx (n=Shelton@host-84-9-79-148.dslgb.com)
00:42.58JJSheetsit would be fairly simple.  grep for loadstring and see what it's source is.  make sure that only legit code is passed in.
00:43.06Dashkalnods
00:43.12Dashkalthat would catch most simple mistakes
00:43.36DashkalI couldn't do it myself, though.  I'm not good enough with lua to reliably track the source of a string all the way backwords through code.
00:43.57JJSheetsI've got too much stuff on my plate as it is.  :p
00:44.02Pollekeit remains a scripting language. With very limited places for remote messages to enter
00:44.27Dashkalthis is true.  But it's another matter to track the life of a string from entry to exit.
00:44.39DashkalEspecially in a language where basic concepts can be redefined (metatables)
00:44.49*** join/#wowace sylvanaar (n=sylvanaa@12.179.203.116)
00:45.40JJSheetsI can just see the methods used by hackers to get around an in game antimalware system.  lua obfuscation will see a rise in popularity.  :p
00:45.54Dashkalheh
00:47.15DashkalGiven the complexity involved in what I'm designing... I'm gonna make it a rule that loadstring() never appears in any publicly available build.
00:47.25JJSheetslol
00:47.37*** join/#wowace Cryect (i=Cryect@c-76-111-33-50.hsd1.ga.comcast.net)
00:47.46DashkalI won't say the same thing for dev builds :p  Remote debugging will be handy as hell for a distributed filesystem :p
00:48.06Antiarcdi...distributed filesystem? In WoW?
00:48.12JJSheetsO.o  you're creating a distributed filesystem running on top of WoW?
00:48.18AntiarcYou're either brilliant or utterly insane, or both.
00:48.20DashkalLast thing I want is to have to have my victim reading the output of /dump over vent
00:48.23JJSheetsif that works, it'll be bloody awesome.  :p
00:48.38DashkalI'm hoping for both... we'll see if I succeed.  Insane for sure :p
00:48.52Dashkalhttp://wowace.com/wiki/Nexus
00:49.02JJSheetsHave you done any research on distributed filesystems?
00:49.06DashkalSome
00:49.15JJSheetscool.  there's a lot out there.
00:49.18DashkalI'm modeling after freenet (without the plausable deniability and crypto)
00:50.12DashkalI don't know for sure if this is even feasable.  But I'm enjoying the challenge of designing it.
00:50.27JJSheetswow, you have some lofty lofty goals.  I hope you succeed.  I bet Blizzard hopes you don't.  :p
00:50.47DashkalWhy do you suggest blizzard would be against it?
00:50.52JJSheetsbandwidth.
00:51.01DashkalAhh, that's a major _major_ concern of mine
00:51.08Dashkalhow to get that as bloddy low as I can possibly get it
00:51.09JJSheetsGood.  :)
00:51.20CIA-4003grayhoof * r72484 10Proximo/ (8 files in 2 dirs):
00:51.20CIA-40Proximo:
00:51.20CIA-40- Converted Auras to use spellid
00:51.20CIA-40- Fixed Profile copies/changes
00:51.21CIA-40- Removed unneeded locals
00:51.32DashkalI'm seriously considering CPU/Bandwidth tradeoffs like gzip and such
00:51.35CIA-4003broesel01 * r72485 10Quiet_Npc/ (10 files):
00:51.36Dashkalbut that's early optomization
00:51.37CIA-40Quiet_Npc
00:51.39*** join/#wowace iNs|Renew (n=mronlin@adsl273.cnetco.com)
00:51.39CIA-40- Loch Modan und Tanarid zugefügt
00:51.41CIA-40- Bugfix
00:51.48AntiarcBandwidth is throttled, CPU isn't
00:51.50Antiarc>_>
00:51.50JJSheetsDashkal, I have an lzw implementation in lua if you want it.
00:52.05Dashkalooo, nice.  I may be asking you about that when I get a real shell up
00:52.11JJSheets:)
00:52.20DashkalRight now I'm just poking at various designs for the low level transport
00:52.26CIA-4003grayhoof * r72486 10EavesDrop/locals/localization-koKR.lua: EavesDrop: koKR update
00:52.33Dashkalannouncing new entries, syncing after login, that sort of thing
00:52.51Dashkalbut cpu is throttled.  If I drop your framerate, you're gonna let me know about it :p
00:53.23JJSheetsI also suggest you make it a modular filesystem, where for instance it would mount a guild filesystem on /guild/ automatically, etc.
00:53.44Dashkalthe current design is kind of like a message board
00:53.50JJSheetsand allow you to mount publicly and privately available filesystems in your local file structure.
00:53.54AntiarcPlease map General to /b/
00:53.55Dashkal"messages" on "threads" on "boards"
00:54.17CIA-4003grayhoof * r72487 10sct/sct.lua: sct: Fix some options not updating when copying or loading a profile
00:54.17Dashkalthe actual definition of "message" depends entirely on the application running
00:55.08JJSheetsI guess what I mean is, make the guild stuff private to your guild.  and similarly allow some "forums" to be invite only.
00:55.09DashkalNexus is the driver that NexusForums, NexusEvents, or NexusCrafting would sit on top of.  The apps give meaning to the messages.  Nexus itself is just concerned with passing things around and with syncing/security/etc
00:55.27DashkalOh that's easy: The guild only sections of the filesystem would sync across GUILD's shadow channel
00:55.56Dashkal(And I really wish there was an OFFICER shadow channel...)
00:56.01JJSheetsexactly what I mean.  And a private message board would exist in a chat channel that is invite only or passworded or whatever.
00:56.07Dashkalyep yep
00:56.36dantorhmm i had a very similar idea of an ingame forum..
00:56.38DashkalIt's also possible to use the channel for announcements only and only send content over WHISPER for highly sensitive things if I need to
00:56.57Dashkaldantor: the forum is the real drive behind this idea.  Nexus is my own answer to my guild's refusal to use web forums
00:56.59JJSheetsDashkal, that would be how you emulate an officer only channel.
00:57.29DashkalJJSheets: Exactly.  That's how I've solved that issue for now.  But I still want shadows on global channels and OFFICER :p
00:57.39dantorthe problem is.. you cannot post messages if there is nobody online
00:57.39JJSheets:)
00:58.03JJSheetsdantor, yes you can.  just noone else will see it until it is distributed to others.
00:58.05dantoryou can still use SendAddonMessage to any Officers
00:58.12dantoryep
00:58.22Dashkaldantor: That is an inherent issue with peer to peer systems.  So to get the "critical mass" of nexus users, I'm going to put our event manager atop it (NexusEvents) and make a guild rule: No signup, no raid slot
00:58.36JJSheetslol
00:58.57JJSheetswell, as intriguing as this is (and it is) I need to get back to programming.  :)
00:59.03DashkalWithout that critical mass of users, the network would fragment
00:59.12Dashkalwoot, 6pm.  I can go home now
00:59.23dantor2:58 am
00:59.30DashkalI should work on the UML shit I need for nexus tonight... Only way I'm getting anywhere with this concept
00:59.33JJSheets7:59 pm
01:00.17Dashkallaters *heads home*
01:00.22JJSheetscya
01:01.49*** join/#wowace skrag (n=skrag@c-24-9-130-108.hsd1.co.comcast.net)
01:01.53AnduinLotharI'm correct in saying that Ace doesn't save variables, right?
01:02.13AnduinLotharit just calls callback functions and requires the addon to save it's settings right?
01:02.35kergoththat depends on what part of ace you're talking about.  acedb provides an interface to a saved variable, with profiles and all.  the rest doesn't care
01:02.55kergothjust callbacks, like you said
01:07.05*** join/#wowace khangg (n=khangg@dhcp-0-17-9a-33-6d-f5.cpe.quickclic.net)
01:13.17JJSheetshaha, I just created a system to determine if you are moving without requiring map coords or gpslib.
01:13.31AnduinLotharorly?
01:14.20JJSheetswon't give you position, but it will tell you if you are actively moving.   it's only limitation is following another unit.  can't track that.
01:14.21*** join/#wowace AnarchyAo (n=AnarchyA@c-71-63-49-4.hsd1.va.comcast.net)
01:14.40AnduinLotharhookt he keybindings?
01:15.03JJSheetshooks on the movement functions called by them.
01:15.04kadrahilRPHelper2.lua:31: attempt to call method 'initializeOptions' (a nil value)
01:15.33*** join/#wowace Guillotine (n=Guilloti@cpe-76-167-203-65.socal.res.rr.com)
01:17.36CIA-4003drool * r72488 10Nauticus/ (NautComms.lua NautCore.lua):
01:17.36CIA-40Nauticus:
01:17.36CIA-40- improve data exchange; prioritise quality on boots < swaps< since
01:17.36CIA-40- (comms is not backward compatible, to prevent endless loop)
01:18.42*** join/#wowace elite3vil (i=elite3vi@c-71-233-102-98.hsd1.ma.comcast.net)
01:20.50*** join/#wowace AnarchyAo (n=AnarchyA@c-71-63-49-4.hsd1.va.comcast.net)
01:22.55CIA-4003ackis * r72489 10TIRaid/TIRaid.lua:
01:22.55CIA-40TIRaid:
01:22.55CIA-40- Change default behaviour so that it'll grab attendance with /TIRaid command
01:23.26*** join/#wowace blay (i=KevFlow@50.206.8.67.cfl.res.rr.com)
01:23.34JJSheetsActually... I can track following... :)
01:24.39kadrahilso rphelper2 is broken
01:24.54kadrahilit calls initializeOptions from self a bunch of places but that function doesn't exist?
01:25.26JJSheetskadrahil, I'm creating a replacement for it.  I'll probably have it available tonight or tomorrow.
01:25.56JavekIn a non-embeding LibStub library, should you never refer to self, and always to the local copy of your library, but still provide MyLib:someFunction() instead of MyLib.someFunction()  ?
01:26.32kadrahilJJSheets: ahh, ok
01:26.44kadrahilJJSheets: i don't actually use it regularly, i just installed it for fun in this kara runa nd noticed that :)
01:26.55JJSheets:)
01:27.08vhaarrJavek: I don't think you understand what the colon and dot notations mean
01:27.14*** join/#wowace Tinyboom (n=nahh@180.84-49-87.nextgentel.com)
01:27.17vhaarrJavek: and I believe you forgot to thank me for the last link I provided
01:28.15JJSheetsvhaarr, pogue mahone.
01:28.16JavekI know what it means, I'm wondering if I should use self or the local MyLib
01:28.18JJSheetslol
01:28.26JavekI'm guessing MyLib if it's not embedded
01:28.54JavekSo the only reason to use colon notation is because developers are going to assume your library wants a self reference even though it doesn't
01:33.10*** join/#wowace Guest21402 (n=nnscript@212.32.65.95)
01:33.15*** join/#wowace ckknight_ (n=ckknight@WoWUIDev/WoWAce/CurseStaff/CurseForge/ckknight)
01:33.15*** mode/#wowace [+o ckknight_] by ChanServ
01:36.34*** join/#wowace cogwheel (n=chatzill@c-67-180-52-41.hsd1.ca.comcast.net)
01:36.36*** join/#wowace kergoth (n=kergoth@neutrino.joshua-colp.com)
01:36.36*** join/#wowace Javek (n=Javek@adsl-75-15-128-12.dsl.snlo01.sbcglobal.net) [NETSPLIT VICTIM]
01:36.36*** join/#wowace JJSheets (n=jjsheets@c-98-214-77-115.hsd1.il.comcast.net) [NETSPLIT VICTIM]
01:36.36*** join/#wowace Gotai (n=thewill@ip503d59c0.speed.planet.nl)
01:36.36*** join/#wowace clad|sleep (i=jnw@WoWUIDev/WoWI/Featured/Dongle/cladhaire)
01:36.36*** join/#wowace Xuuri (n=anchasta@adsl-69-151-60-179.dsl.ksc2mo.swbell.net)
01:36.36*** join/#wowace Sliker_Hawk (n=nnscript@212.32.65.95)
01:36.36*** join/#wowace ReAn (n=rean@d137-186-195-186.abhsia.telus.net)
01:36.36*** join/#wowace [TUE]Nath (n=natherul@212-181-168-157-no31.tbcn.telia.com) [NETSPLIT VICTIM]
01:36.36*** join/#wowace Birdemani|Exodus (n=chasingb@adsl-68-72-108-31.dsl.chcgil.ameritech.net) [NETSPLIT VICTIM]
01:36.36*** join/#wowace vithos (n=vithos@unaffiliated/vithos) [NETSPLIT VICTIM]
01:36.36*** join/#wowace Ironhand (i=x@xyx.nl) [NETSPLIT VICTIM]
01:36.36*** join/#wowace Azurewrath (i=Azurewra@85.233.42.168.static.cablesurf.de) [NETSPLIT VICTIM]
01:36.36*** join/#wowace NightHawkTheSane (n=duaiwe@63-231-37-148.tukw.qwest.net)
01:36.36*** join/#wowace vrak (i=vrak@putsch.kolbu.ws) [NETSPLIT VICTIM]
01:36.36*** join/#wowace MOPPED (i=mop@fukdruidsgrr.org) [NETSPLIT VICTIM]
01:36.36*** join/#wowace ragekage (n=nmcfaul@206-248-137-223.dsl.teksavvy.com) [NETSPLIT VICTIM]
01:36.37*** join/#wowace Eraos (n=remi@S0106000e0cb95083.ed.shawcable.net)
01:36.37*** join/#wowace Zedde (i=mircwars@h-91-126-55-156.wholesale.rp80.se)
01:36.37*** join/#wowace Codayus (i=chaoshaw@even.the.kittens.hate-you.net)
01:36.38*** join/#wowace Chambrln (n=Chambrln@65.111.168.143) [NETSPLIT VICTIM]
01:36.38*** join/#wowace omega (i=omega@numbat.inamo.no) [NETSPLIT VICTIM]
01:36.38*** join/#wowace steev (n=steev@gentoo/developer/steev) [NETSPLIT VICTIM]
01:36.38*** mode/#wowace [+ov kergoth clad|sleep] by irc.freenode.net
01:36.47JJSheetsAnd we're back.
01:41.21*** join/#wowace YourMomsHero (n=cirish@ip24-251-191-203.ph.ph.cox.net)
01:41.42*** join/#wowace Rev_Bryce (n=RB@p54A34776.dip.t-dialin.net)
01:46.06*** join/#wowace dylanm (n=dylanm@c-98-224-225-196.hsd1.mi.comcast.net)
01:47.47*** join/#wowace DarkElf (n=Dark_Elf@ip234.net253.mw.net)
01:50.29CIA-4003Chingerayl * r72490 10DailyQuestTracker/Comm.lua:
01:50.29CIA-40DailyQuestTracker:
01:50.29CIA-40- Fixed issue with error in ReceiveDailyResponse
01:52.59stew_ais there a LibGuildPosition addon that puts markers on the minimap by any chance?
01:54.57HjalteI can't seem to import the default price database into KC_Items, is it not Itemprice-1.1 it uses?
01:55.46JJSheetsis off to eat dinner.
02:00.22*** join/#wowace kenlyric (n=chatzill@c-68-54-218-192.hsd1.in.comcast.net)
02:15.46*** join/#wowace Mysticfox|VM (i=none@cpe-24-25-169-233.maine.res.rr.com)
02:28.37*** join/#wowace Zek (n=zeksie@cpc2-nott9-0-0-cust211.nott.cable.ntl.com)
02:30.59*** join/#wowace Hotphoenix (n=blah@87.112.224.62)
02:34.54*** join/#wowace _rane (i=rane@a91-152-162-176.elisa-laajakaista.fi)
02:34.57*** join/#wowace Tinyboom (n=nahh@180.84-49-87.nextgentel.com)
02:35.30*** join/#wowace Kirkburn (n=Kirkburn@wikia/Kirkburn)
02:35.30*** join/#wowace qwesto (i=qwesto@stalin.acc.umu.se)
02:35.34*** join/#wowace Shot (n=shot@bulge.neep.co.uk)
02:35.54*** join/#wowace Aeyan (n=pancake@cpe-071-076-230-073.triad.res.rr.com)
02:37.08*** join/#wowace JJSheets (n=jjsheets@c-98-214-77-115.hsd1.il.comcast.net)
02:37.15*** join/#wowace dylanm (n=dylanm@c-98-224-225-196.hsd1.mi.comcast.net)
02:39.07CIA-4003jjsheets * r72491 10Manikin/ (9 files in 3 dirs):
02:39.07CIA-40Manikin: Initial Commit
02:39.07CIA-40- Manikin is a roleplayer's addon. It responds to in-game events with user
02:39.07CIA-40defined random emotes and sayings. Also uses timers to allow idle emotes while
02:39.07CIA-40walking, following another, on a flight path, or stationary. All aspects of
02:39.09CIA-40randomness, delay, and minimum time between emotes is user configurable.
02:41.09CIA-4003jjsheets * r72492 10Manikin/ (. Libs/):
02:41.09CIA-40Manikin:
02:41.09CIA-40<PROTECTED>
02:43.57*** join/#wowace mort (n=mort@azureus/mort)
02:44.00*** join/#wowace chexsum (n=chexsum@CPE-124-177-143-49.qld.bigpond.net.au)
02:46.55*** join/#wowace Felix28 (n=Owner@bas4-toronto63-1096693369.dsl.bell.ca)
02:49.36Merayeah instant lvl 40 in warhammer :D
02:57.25*** part/#wowace Felix28 (n=Owner@bas4-toronto63-1096693369.dsl.bell.ca)
03:16.16CIA-4003onlyfly * r72493 10Routes/Locales/Locale-zhCN.lua:
03:16.16CIA-40Routes:
03:16.16CIA-40- Update locale zhCN
03:21.49*** join/#wowace ckknight (n=ckknight@WoWUIDev/WoWAce/CurseStaff/CurseForge/ckknight)
03:21.49*** mode/#wowace [+o ckknight] by ChanServ
03:28.59Arrowmasteroh thats fucking awesome, i just got in a cop chase in gta4 because the cops saw me driving drunk
03:29.31Xinhuananyone played assassin's creed here?
03:29.35Xinhuanwant to know if its good
03:29.43Merahaha you lucky need gta4
03:29.56Arrowmasterassassin's creed is fucking badass
03:30.36Merai think ill buy ps3 only for gta4
03:30.40Mera:p
03:30.41Zyndromeit gets kinda repetitive after a while, but you'll finish it for the story
03:30.47*** join/#wowace theoddone33 (n=jimbob@pool-71-109-96-240.lsanca.dsl-w.verizon.net)
03:30.48Merascored 99 at metacritic
03:30.56Arrowmasterwhy the fuck would you buy a ps3 for gta4
03:30.58Mera99/100
03:30.59Zyndromeand costantly at the lookout for flags & ugly templars
03:31.19*** join/#wowace bindi (n=indigo@139-76-169-81.mobileinternet.proximus.be)
03:31.27Meraeven halflife has not that score
03:31.35Xinhuano_O
03:31.51Arrowmaster99/100 is an overrated score
03:32.05Arrowmastertheres other games that are better
03:32.41Meramust be very good so I lknow previous gta they are funny and innovative so:)
03:33.30Arrowmastertheres tons of bitching on forums from people saying gtasa was better because of all the stuff it had thats not in gta4
03:33.42Arrowmasterbut i really disliked gtasa
03:36.25Meralove them all me since the first :)
03:36.27Zyndromehttp://multitheftauto.com/
03:36.34CIA-4003starlon * r72494 10oUF_ReadyCheck/ (. oUF_ReadyCheck.lua): oUF_ReadyCheck: Change the way raid/party index is validated for the frame.
03:36.41Zyndromeso many retarded usermade maps
03:37.20Gnarfozlol MTA still exists
03:37.41Meranot good?
03:38.44Gnarfozhm, MTA is not what I remember, though. there was primitive multiplayer for the original GTA
03:39.28*** join/#wowace mikezter (n=Miranda@drms-4d006819.pool.mediaWays.net)
03:39.47Zyndromeiirc there was some leftovers in the GTA3 "series" that indicated Rockstar was working on multiplayer but scrapped it
03:40.40*** join/#wowace dylanm (n=dylanm@c-98-224-225-196.hsd1.mi.comcast.net)
03:41.00*** join/#wowace Shirik (n=nospam@conspiracy/developer/Shirik)
03:41.00*** mode/#wowace [+v Shirik] by ChanServ
03:41.03Meraok
03:42.19*** join/#wowace hi2u (n=nancy@c-76-126-1-4.hsd1.ca.comcast.net)
03:43.11*** join/#wowace AbsoRayne (n=gcittboy@d66-222-203-177.abhsia.telus.net)
03:44.10AbsoRayneSilly Question...is there a way to make Elks Buff Bars go Veritcal?
03:44.53AbsoRayneLike tall, thin bars rather than long?
03:46.24Xinhuani don't even see the practicality of using 10% screenspace for buffbars ;p
03:47.16AbsoRayneI just have this stupid cool layout idea in my head, and I want to try it out, and EBB is the only thing I can think of that would be able to do it.
03:48.05Paeneyeah...I def just use Blizzard's buff display system
03:49.53Xinhuanbuff bars can look pretty and all, but it doesn't really serve any real practical purpose
03:50.25Paeneagreed
03:50.26Paeneif anything
03:50.32PaeneI'd use a buff bar system
03:50.36*** join/#wowace dieck_ (n=dieck@p5B22FFDF.dip.t-dialin.net)
03:50.37Paeneto make my buffs take up less space
03:50.43Paenenot to make them pretty
03:53.48*** join/#wowace AnarchyAo (n=AnarchyA@c-71-63-49-4.hsd1.va.comcast.net)
03:54.36pastamancerhaha, just pugged leo
04:00.40*** join/#wowace vhaarr_ (n=folk@ti0013a380-1371.bb.online.no)
04:00.40Aiianenice. if our realm didnt suck so much, id do that to and our guild could move on to other things :P
04:00.43Aiiane*that too
04:01.14*** join/#wowace Tupsi4006 (n=Miranda@pD95FDEAE.dip.t-dialin.net)
04:03.41Paeneanyone know what mod this is that tells you what people are casting?
04:03.42Paenehttp://warcraftmovies.com/stream.php?id=45050&stream=Filefront&h=833e99bf88855da86487dc62ba4c3b43
04:03.55CIA-4003jjsheets * r72495 10ButtonFacade/Libs/:
04:03.55CIA-40ButtonFacade:
04:03.55CIA-40<PROTECTED>
04:04.05*** join/#wowace Megalon (i=starfox@85.127.163.107)
04:04.21*** join/#wowace Seera1 (n=Ryan_L@adsl-155-209-158.mem.bellsouth.net)
04:09.53*** join/#wowace mikezter (n=Miranda@drms-4d006819.pool.mediaWays.net)
04:11.07JJSheetsis there a wowace.com forum moderator on and not busy at the moment?  if so, I'd like http://www.wowace.com/forums/index.php?topic=12549.0 moved to the General Addons forum.
04:12.30*** join/#wowace Kalman| (n=delay@adsl-76-226-82-53.dsl.sfldmi.sbcglobal.net)
04:19.47Paenecrazy stuff, someone or some people have been leaving threatening notes around at my university.  First one said "I will kill you all", second one said "students will pay for sins".  They just found a third note, but haven't released what it said.
04:21.01starloncrazy graduate students going crazy
04:21.08starlonnews at 11
04:21.47JJSheetsWonderful.  I think I'd take a leave of absence until they catch the crazy bastard(s).
04:22.04*** join/#wowace Kaelten (n=kaelten@65.213.133.66)
04:28.18ToadkillerJJSheets: So whats the state of Buttonfacade?
04:28.58JJSheetsToadkiller, pretty much done.  I think there might be one or two dirty spots I could polish, but the API is stable, and not likely to change anytime soon.
04:29.20Paeneif I was graduating, I wouldn't be walking tomorrow
04:29.34JJSheetsIt needs more skins, obviously.  :)
04:29.38CIA-4003scorpio0920 * r72496 10DrDamage/Locales/ (DrDamage-zhCN.lua DrDamage-zhTW.lua):
04:29.42CIA-40DrDamage:
04:29.44CIA-40- Update zhCN localization.
04:29.46CIA-40- Update zhTW localization. (checked)
04:29.46JJSheetsbut the ones that are there are slick as hell...
04:29.49ToadkillerSweet.  I have a nasty sporadic infinite loop on startup or something I need to track down and then I can switch over.
04:30.13JJSheetsheh... I'm not experiencing that loop, so I can't be any help there.  :p
04:31.18ToadkillerWell it locks u up on login so you cant even see errors...
04:31.43Toadkillerjust the blue bar creeping across and then staying at 100%
04:31.58JJSheetsbeen there.  Had my own infinite loop about a week ago.  :)
04:32.26JJSheetsbest way to track it down imho is to look at the last few diffs of your recent commits.
04:32.27ToadkillerSeems appropriate for your bars though ;-p
04:32.38ToadkillerYeah ive been staring at diffs all day
04:32.40JJSheetslmao
04:32.56JJSheetsrenames InfiniBar to InfiniLoop.
04:33.11ToadkillerCareful, dont want Apple to sue you
04:33.31JJSheetslol  can't squeeze blood out of a turnip.  :)
04:33.46ToadkillerThey have lawyers...
04:34.07JJSheetsWho would laugh if they saw how much money I have.
04:34.18Hydrogengit bisect is your friend :)
04:34.50ToadkillerThe skins look good so far though
04:35.14JJSheetsThank StormFX for that.  :)
04:35.24ToadkillerYeah hes been busy
04:35.45JJSheetsI'm thinking I'll prod him a bit for more.  Nice to be on that side of the prod...
04:36.15ToadkillerYeah I hinted he should do some round ones so people dont start cutting themselves
04:43.20JJSheetsWell, I need sleep.  night ya'll
04:44.50*** join/#wowace icemoon (n=chatzill@222.71.186.66)
04:48.05Yssarilwhat bar mods support buttonfacade atm?
04:56.11*** join/#wowace rebug (n=rebug@adsl-69-105-97-210.dsl.irvnca.pacbell.net)
04:57.16kergothNeoTron: <3 magictargets
04:58.29*** part/#wowace Seera1 (n=Ryan_L@adsl-155-209-158.mem.bellsouth.net)
05:04.04*** join/#wowace ScoTTie (n=scott@unaffiliated/scottie)
05:20.00CIA-4003nemes * r72497 10NShakedown/Addons/Chinchilla.lua:
05:20.04CIA-40NShakedown:
05:20.06CIA-40- unlock the world state objectives frame
05:20.22AeyanYssaril: InfiniBar and Poppins
05:20.41Yssarilcool thanks Aeyan
05:22.34*** join/#wowace Napsterbater (n=Napsterb@2001:4830:167f:0:211:43ff:fe61:c356)
05:35.05*** join/#wowace Fisker- (i=bawww@62.61.142.209.generic-hostname.arrownet.dk)
05:35.52*** join/#wowace silentium (i=silentiu@dslb-088-066-010-148.pools.arcor-ip.net)
05:43.50*** join/#wowace Azurewrath (i=Azurewra@85.233.42.168.static.cablesurf.de)
05:44.38Taskyokay the wowaceupdater needs "load addon snapshot" working... i just attempted to use it to install/update my addons, and now bugsack has 500 errors on loa
05:44.39Taskyd
05:44.52Taskywho maintains WAU?
05:46.15HjalteI believe it's Sylvanaar?
05:49.47CIA-4003scorpio0920 * r72498 10AutoBar/ (Locale-zhCN.lua Locale-zhTW.lua):
05:49.47CIA-40AutoBar:
05:49.47CIA-40- Update zhCN localization.
05:49.47CIA-40- Update zhTW localization.
05:51.04*** join/#wowace WoWLuaircBot (n=WoWLuair@pool-72-81-214-218.bltmmd.fios.verizon.net)
05:51.18HjalteTasky: You should consider using jWU if you're having problems with WAU however. Development isn't really happening for it.
05:52.11*** join/#wowace sun\ (n=sun@ARouen-256-1-45-4.w90-51.abo.wanadoo.fr)
05:54.45*** join/#wowace grzesieq (n=grzesieq@asv75.neoplus.adsl.tpnet.pl)
05:59.50*** join/#wowace Viper_0000 (n=Viper_00@184-23.126-70.tampabay.res.rr.com)
06:00.47Viper_0000need a fubar item that can track items for me?
06:00.52Viper_0000anyone know one?
06:00.56*** join/#wowace Napsterbater_ (i=Napsterb@2001:4830:167f:0:211:43ff:fe61:c356)
06:01.01Viper_0000like i wunna able to set the item and an icon too if possible
06:01.03Viper_0000like reagentfu
06:01.13Viper_0000for tihngs like reagents obviously, then like flasks, flamecaps etc
06:01.28*** join/#wowace Paene (n=Jim@adsl-70-227-108-38.dsl.applwi.ameritech.net)
06:01.37*** join/#wowace Napsterbater (n=Napsterb@cl-275.qas-01.us.sixxs.net)
06:13.15Taskylinky!
06:19.59TaskyHjalte: so my interface setup is broked
06:20.38*** join/#wowace Sekkyo (n=sekkyo@dsl092-250-144.sfo4.dsl.speakeasy.net)
06:21.02HjalteTasky: Try installing jWU found at http://fambagge.dk/jwu/ and it might be able to help you.
06:21.43Taskyin the process now
06:22.00Taskynokia pc app suite hijacked jar extension
06:22.09Taskydunno how to reset it w/o reinstalling java
06:22.48TaskyOMG i hope this works :D
06:23.31Taskylawl it crashed?
06:23.33Tasky:(
06:25.34Taskywhere do i send my java dumps to :D
06:25.43Tasky2 crashes now
06:25.49kadrahilthe java toilet?
06:26.04kadrahilsorry i *just* glanced over and saw that last line on this window
06:26.07kadrahiland had to say it
06:27.44*** join/#wowace Vilkku (n=Vilkku@86-60-157-18-dyn-dsl.ssp.fi)
06:28.42Taskylol
06:29.42Taskyyeah crashing a lot...
06:31.08Tasky /sigh the .NET version seemed to have worked better...
06:31.22Taskyjust froze
06:33.37HjalteTasky: Do you have the newest version of java?
06:34.25Taskyyes just updated
06:34.34Taskyit doesn't crash if i run it minimized
06:34.35Tasky:-D
06:34.52Taskypass that along to the devs lol
06:35.44*** join/#wowace MentalPower (n=MPower@WoWUIDev/Norganna/Administrator/MentalPower)
06:35.44*** mode/#wowace [+v MentalPower] by ChanServ
06:38.42Taskynope still 500+ errors on UI load
06:39.00Taskyim thinkin im gonna have to redo my interface/cache/wtf folders
06:39.30*** join/#wowace omega0815 (n=omega081@pD9E24D06.dip.t-dialin.net)
06:39.59omega0815hello
06:40.35omega0815is there a way to install wowace updater with xp x64 as OS?
06:43.48*** join/#wowace Ellipsis (n=ellipsis@97-113-12-2.tukw.qwest.net)
06:45.53CIA-4003nemes * r72499 10FuBar_BattlegroundFu/ (6 files):
06:45.53CIA-40FuBar_BattlegroundFu:
06:45.53CIA-40- add "Auto-release when dead" option, yoinked from FuBar_HonorFu
06:48.09*** join/#wowace Gwenstefani (n=chatzill@88-105-241-196.dynamic.dsl.as9105.com)
06:51.21Hobbyomega0815: the .net WAU will work on 64 as well
06:51.38Hobbyjust runs under WoW64 like all 32bit space apps
06:55.10*** join/#wowace Vilkku (n=Vilkku@86-60-157-18-dyn-dsl.ssp.fi)
06:55.37*** join/#wowace Fisker- (i=bawww@62.61.142.209.generic-hostname.arrownet.dk)
06:55.39omega0815Prerequisite check for system component .NET Framework 2.0 (x86) failed with the following error message:
06:55.47omega0815"This version of the .NET Framework 2.0 (x86) is not supported on a 64-bit operating system. Contact your application vendor."
06:56.31omega0815it seems to search EXPLICITLY for the x86 version of the framework, which seems quite stupid :S i think i'll try out that java updater... thanks for the help though :)
07:01.07*** join/#wowace Tekkub (n=tekkub@WoWUIDev/WoWI/Featured/Dongle/Tekkub)
07:01.07*** mode/#wowace [+v Tekkub] by ChanServ
07:01.26ZhinjioGood evening, folks.
07:03.41Taskyuhm
07:03.48Taskydo u have the x64 framework?
07:04.33omega0815of course
07:05.08Taskyodd
07:06.00omega0815well, it seems there is no way to bypass the installer, which runs some odd invisible routines obviously, so i'll try out that java updater which comes ad-free anyway :p
07:10.09Ellipsislicks Zhinjio
07:17.06*** join/#wowace Vecnah (n=vec@vecna.vecnix.net)
07:20.24*** join/#wowace ven (n=ven@i59F55B1B.versanet.de)
07:23.05Silverstormlol at this spell name: "Quest - Sunwell Daily - Ship Bombing Run Bomb"
07:26.59*** join/#wowace Srosh (n=Srosh@c210129.adsl.hansenet.de)
07:27.46*** join/#wowace dabujo (i=xx@p4FDB2F60.dip0.t-ipconnect.de)
07:29.29*** join/#wowace Keya (n=pschrine@xdsl-81-173-172-76.netcologne.de)
07:30.55*** join/#wowace grzesieq (n=grzesieq@asv75.neoplus.adsl.tpnet.pl)
07:32.16*** join/#wowace Halcyon_ (n=Halcyon@Lc872.l.pppool.de)
07:32.22*** join/#wowace te`afkulaar (n=182Kulaa@p5B155C3C.dip.t-dialin.net)
07:33.04*** join/#wowace Caldor|afk (n=caldor|a@p5B26682A.dip.t-dialin.net)
07:33.51CIA-4003xinhuan * r72500 10Threat-2.0/Threat-2.0/lib.xml: Threat-2.0: So umm, I figured out why Nightbane and Solarian weren't resetting threat between phase changes. It's because the module files for them weren't loaded in lib.xml.
07:34.01AntiarcROFL
07:34.03Stanzillazomg lol
07:34.08Antiarc<-- pro
07:34.13Xinhuani went to a pug nightbane for this OK
07:34.17Silverstormamazing...
07:34.24Xinhuani died at 60%
07:34.29Xinhuani would like to congrtulate 2 holy priests and a warrior for soloing Nightbane from 5% to 0%, taking 5 minutes to do so, while the other 7 ppl in the raid are dead
07:34.50Silverstormgolf clap
07:35.03*** part/#wowace Guillotine (n=Guilloti@cpe-76-167-203-65.socal.res.rr.com)
07:36.06SilverstormAntiarc: any plans in LibBars to handle recycling of bar groups?  or is that up to individual mods?
07:36.23AntiarcThat's up to individual mods. Bar groups shouldn't see a lot of churn.
07:36.32AntiarcIf you're churning a lot you're probably Doing It Wrong(TM)
07:37.00Silverstormwell, in my case, if I'm churning a lot, it's because I'm killing a lot of targets, and they're identified by GUID :-p
07:37.10Silverstormbut I can handle recycling and such, shouldn't be too hard
07:37.13AntiarcWhat are you using it for?
07:37.16Silverstormdot timer
07:37.23AntiarcOne bar group per target? o.0
07:37.43Silverstormwell...so far that's the only way I can get separation between targets
07:37.48AntiarcMm. I think it'll be best to leave handling that up to the individual mods.
07:38.06Silverstormthough, until now, I haven't played with layout/config at all, just working on logic
07:38.40Silverstormdarn Blizz and the lack of CLEU:SPELL_CAST_SUCCESS for spells with cast time, though
07:38.46*** join/#wowace rebug (n=rebug@adsl-69-105-97-210.dsl.irvnca.pacbell.net)
07:38.59Silverstormmaking me think to write this...*grumble*
07:40.50Ellipsisthinking is hard
07:40.58Ellipsisthat's why I make other people do it for me :<
07:40.59SilverstormI know!!!
07:41.36Silverstormbut I made my little state transition graph, following the different sequences for insta-cast vs. has cast time spells
07:41.52Silverstorms/graph/chart/g
07:49.16Fisker-bah Antiarc
07:49.19Fisker-i'm even more pro
07:49.36Fisker-i was playing TF2 for that achievement that you have to score highest on your team without killing enemies
07:50.00AntiarcFirst Do No Harm
07:50.02Antiarc:)
07:50.02Fisker-so i'm like 10 points ahead nr. 2, and just before we win i kill a spy and i didn't get the achievement
07:50.03Fisker-gg
07:50.27Fisker-i wish they could just make it so it just substracted my kill points instead :(
07:52.46*** join/#wowace MoonWolf (n=MoonWolf@i209133.upc-i.chello.nl)
07:52.46*** mode/#wowace [+o MoonWolf] by ChanServ
07:55.31*** join/#wowace Kazie (n=k@port207.ds1-vg.adsl.cybercity.dk)
08:02.17*** join/#wowace [W]LANFiRE (i=lanfire@ppp83-237-43-165.pppoe.mtu-net.ru)
08:02.35*** join/#wowace tardmrr (n=tardmrr@WoWUIDev/WoWI/Dongle/Tem)
08:02.35*** mode/#wowace [+o tardmrr] by ChanServ
08:02.42*** join/#wowace vecnix (n=vec@vecna.vecnix.net)
08:05.18tejinghey, that purl bot looks kinda handy
08:06.08tejingI get too many people who have no clue what that notation means >.<
08:06.42*** join/#wowace cncfanatics (n=evolve@28.176-201-80.adsl-dyn.isp.belgacom.be)
08:06.48*** join/#wowace duaiwe (n=duaiwe@63-231-37-148.tukw.qwest.net)
08:11.54*** join/#wowace Xuuri (n=anchasta@adsl-69-151-60-179.dsl.ksc2mo.swbell.net)
08:14.02*** join/#wowace InSAT (n=InSAT@host145-197-dynamic.10-87-r.retail.telecomitalia.it)
08:15.23*** join/#wowace Wogroipl (n=Wogroipl@s5591207c.adsl.wanadoo.nl)
08:20.22*** join/#wowace Gwenstefani (n=chatzill@88-105-241-196.dynamic.dsl.as9105.com)
08:27.56*** join/#wowace Elsia (i=elsiarow@p57A25DC5.dip.t-dialin.net)
08:27.58*** join/#wowace [SW]Dodge (n=Miranda@p5B00866C.dip0.t-ipconnect.de)
08:28.08[SW]Dodge~framexml
08:28.08purlGet the official Blizzard Interface AddOn Kit here: http://www.worldofwarcraft.com/ui/ or view it online at http://wdnaddons.com/
08:28.09[SW]Dodgethx purl
08:35.07*** join/#wowace widgertick (n=progdog@unaffiliated/widgertick)
08:36.13*** join/#wowace evl (n=evl@c85-196-101-98.static.sdsl.no)
08:40.18*** join/#wowace Vegeta]BT[ (n=Vegeta-G@89.166.242.114)
08:40.43[SW]Dodgesomeone here? :) got a question about how to do a good job with fixing my problem^^ (what to do if i want to make an addon with 3(later more) modules but the 3 modules are using nearly the same functions.there are just some small differences. dont know if i should add teh function into each module(NoDryCode) or what is better)
08:41.52durcynprototype it
08:42.02[SW]Dodgehm?
08:43.33[SW]Dodgehow? can you tell me where its used or give me a short example? :)
08:44.57*** join/#wowace moonsorrow (n=moonsorr@HSI-KBW-078-042-053-180.hsi3.kabel-badenwuerttemberg.de)
08:45.19*** join/#wowace Pkekyo| (n=bsm89mod@062016163025.customer.alfanett.no)
08:47.20*** join/#wowace charon (n=thomas@77-56-223-244.dclient.hispeed.ch)
08:47.47Elsialua> test={}; test.a=1; test.b=2; for k,v in pairs(test) do print(k.." "..v) end
08:47.48lua_botElsia: a 1, b 2
08:51.39*** join/#wowace shingo2 (n=shingo@p5B0563E2.dip.t-dialin.net)
08:52.02*** join/#wowace Imp4kT (n=Imp4kT@host86-156-165-135.range86-156.btcentralplus.com)
08:52.38*** join/#wowace syeren (i=syeren@cpc3-oldh5-0-0-cust762.manc.cable.ntl.com)
08:56.23*** join/#wowace Imp4kT (n=Imp4kT@host86-156-165-135.range86-156.btcentralplus.com)
08:57.15*** join/#wowace Chompers (n=Chompers@cpc1-cove9-0-0-cust541.brhm.cable.ntl.com)
08:59.27*** join/#wowace Gurkan46 (n=Miranda@84-217-103-222.tn.glocalnet.net)
09:01.39Chompersthanks for the nightbane fix Xinhuan, i don't have to /omen clear every landing now :P
09:02.14Xinhuanwait till i actually cleanup the memory use in Omen
09:02.20Xinhuanthere's memory leaks in it
09:02.27Antiarcwhere?
09:02.30Antiarc(not that I'm surprised)
09:02.35Xinhuanin the 4 modules
09:02.48Xinhuanin particular, overview mode
09:02.51Xinhuanthe bars are never released
09:03.03*** join/#wowace tardmrr (n=tardmrr@WoWUIDev/WoWI/Dongle/Tem)
09:03.03*** mode/#wowace [+o tardmrr] by ChanServ
09:03.03Xinhuanso over a raid, it bulds up to a few hundred/thousand bars
09:03.16Xinhuanthat are table.sort() over and over
09:04.00AntiarcEeeeeep.
09:04.05AntiarcYeah, that's a problem. Only slightly.
09:04.07Xinhuani'm cleaning it up.... sorta
09:04.16Xinhuanthe bar problem leads to display issues
09:04.26AntiarcI really appreciate all the support. I've just not had time lately.
09:04.54Xinhuanpets are not getting updated
09:04.58Xinhuanin ovweview mode
09:05.05Xinhuanso the bars permanently stay on screen
09:05.22Xinhuanlike "Ravager Curator 10%"
09:08.03charonXinhuan: AOE mode had the exact same issue and i just solved it by releasing all bars when leaving combat
09:08.20Xinhuanthat's not really a good solution
09:08.31Xinhuansince you leaving combat doesn't mean others left combat
09:10.09CIA-4003kurax * r72501 10AtlasLoot_SetsandPvP/ (GeneralPvP.cn.lua GeneralPvP.tw.lua):
09:10.09CIA-40AtlasLoot_SetsandPvP:
09:10.09CIA-40- Update zhCN/zhTW locale
09:10.36charonXinhuan: not a problem because AOE mode always compares _your_ threat to the maximum threat (or in tank mode things are a bit more complicated)
09:10.56Xinhuantrue
09:11.06*** join/#wowace harldephin (i=harl@dslb-088-077-208-224.pools.arcor-ip.net)
09:11.11charonbut you're right, one shouldn't do the same in overview mode
09:11.19charon(i've never really found any use for overview...)
09:11.32Xinhuanits the most useless module ever ;p
09:12.18*** join/#wowace Keya (n=pschrine@xdsl-81-173-172-76.netcologne.de)
09:12.27charonsell it as a tutorial in the "obscure memory leaks" series ;p
09:14.26*** join/#wowace Daemona (n=koaschte@i577A1863.versanet.de)
09:18.26*** join/#wowace Vulcanus (n=Vulcanus@084202194021.customer.alfanett.no)
09:20.14Fisker-Antiarc
09:20.17Fisker-i swear to god
09:20.21Fisker-i'm going to blow this planet up
09:20.31Fisker-i was like 10 seconds from getting the achievement
09:20.34*** join/#wowace RLD_osx (n=rldempse@66-169-191-207.dhcp.ftwo.tx.charter.com)
09:20.40Fisker-"Connection problems: Auto-disconnect in 25 seconds"
09:20.42Fisker-oh fuck you
09:22.32*** join/#wowace Matrix110 (n=bla@pD957FD0F.dip.t-dialin.net)
09:23.13Xinhuanhmm
09:23.24Xinhuanoverview mode is showing up shadowfiends
09:23.24mykxAntiarc: on felmyst if I pop soul shatter but i'm too far away from the boss for my shatter to actually work. omen doesn't know that my shatter failed and continues to cut my threat. any way this can be fixed
09:23.26Xinhuanfor everyone lol
09:23.44nevcairielmykx: i dont think so
09:23.55mykxdamn ok no worries
09:24.06Xinhuandon't use it too far? :)
09:24.31mykxhaha yeah
09:24.33nevcairielif the combatlog would actually show who was affected by the soul shatter..
09:24.57mykxit doesnt? oh that sucks
09:25.11nevcairielit shows if it failed on some mob due to resist
09:25.21nevcairielbut it doesnt say anything about success
09:25.42*** join/#wowace kilrogg (n=kilrogg@muedsl-82-207-234-174.citykom.de)
09:25.43Xinhuanso charon, i think i'll just release all bars on exiting combat too (loL) in overview mode
09:25.46vithosit shows resists per-mob?
09:25.48Xinhuani see no reasonable easy fix
09:26.01vithosWTB for feign death.
09:27.04charonXinhuan: only alternative i can think of is to look for ThreatUpdated, which should fire with 0 threat when someone drops off the tables, and release the bar in question
09:27.14Xinhuanbut it doesn't
09:27.20Xinhuani already tried releasing every bar with a value of 0
09:27.26Xinhuanthe ones that don't are all the pets
09:27.30Xinhuanwith non zero values
09:27.42Xinhuanhunter pets, shadowfiends, and even karazhan chess pets
09:27.42charonthen you may have found a bug in pet handling :)
09:27.59Xinhuanthey aren't being updated to 0 threat
09:28.05charonbut either way, the "hack" of releasing on exiting combat is safer anyway
09:28.35*** join/#wowace Ncl8 (n=Ncl8@dsl-tkubrasgw1-fe38fa00-5.dhcp.inet.fi)
09:28.35Xinhuancan you look thru the pet module
09:28.42Xinhuanand see why the 0 threat isn't being updated
09:29.19AntiarcArrrrrrgh
09:29.25AntiarcDeveloping for Facebook is pain
09:29.28Antiarc17 seconds to load this page.
09:29.32AntiarcYES THIS IS VERY SPEEDY DEVELOPMENT
09:31.55*** join/#wowace ND_afk (n=Miranda@h062040167062.gun.cm.kabsi.at)
09:32.53Matrix110dont develop for them
09:33.00Matrix110rather commit the Chatter fix!
09:33.44Matrix110http://www.wowace.com/forums/index.php?topic=12738.msg211517#msg211517 !!!
09:37.07*** join/#wowace Lemming2K (n=winblock@port-83-236-58-97.dynamic.qsc.de)
09:37.53Matrix110guess i need to throw in a bit highlighting *cough* Antiarc *cough*
09:38.18Matrix110:P
09:39.34*** join/#wowace baer_ (n=baer@Wbe5a.w.pppool.de)
09:39.50*** join/#wowace Ghan (n=GhanIRC@ppp-88-217-59-74.dynamic.mnet-online.de)
09:40.29CIA-4003elsia 07Elsia * r72502 10ModelViews/MOView_StatBlocks_Basic/ (. MOView_StatBlocks_Basic.lua MOView_StatBlocks_Basic.toc):
09:40.29CIA-40MOView_StatBlocks_Basic:
09:40.29CIA-40- Initial commit. This abuses a statblock as a model viewer to show basic attributes and populate a tooltip.
09:40.29*** join/#wowace orican3215 (n=orican@60-241-56-168.tpgi.com.au)
09:41.15Matrix110hmmm
09:41.23CIA-4003elsia 07Elsia * r72503 10ModelViews/MO_Friends/ (. FriendsMO.lua MO_Friends.toc):
09:41.27CIA-40MO_Friends:
09:41.29CIA-40- Initial commit. This provides a friend list data MO.
09:41.41nevcairielMatrix110: i looked at that diff, it seems like it lacks some functionality that currently is in the roster thingy
09:42.01Matrix110it works fine though:P
09:42.05Matrix110and has no annoying bugs
09:42.53charonXinhuan: i think it's more thoroughly broken
09:43.03charonthe whole idea of the pet module is centered around the idea that you have a single pet
09:43.11charon(a hunter/warlock pet)
09:43.18charonso first, it starts breaking with guardians
09:43.40charonbut it gets worse... what if you have two guardians at the same time? or more? (like the treants)
09:43.45CIA-4003elsia 07Elsia * r72504 10ModelViews/MO_Friends/:
09:43.45CIA-40MO_Friends:
09:43.45CIA-40- Fix svn properties.
09:43.45Xinhuano_O
09:43.57Xinhuanis it easily fixable?
09:44.00charonClassModuleCore is not prepared to track more than one unit and there is only one pet module
09:44.25Xinhuanwhat if we create Pet2 and Pet3 modules
09:44.28Xinhuanfor extra pets
09:44.47Xinhuannot the most efficient of methods
09:46.06charonnot sure
09:46.16CIA-4003nevcairiel * r72505 10Chatter/Modules/PlayerNames.lua: Chatter: ninja-commit a fix for PlayerNames module to stop hiding the guild control panel
09:46.21*** join/#wowace sb (n=sb@dslb-088-067-129-223.pools.arcor-ip.net)
09:46.22ElsiaI wonder if there is an internal limit to the number of guardians, I mean 4 totems, one elemental, 2 trinket guardians and a weapon proc tops I gues
09:46.22Matrix110woho :D
09:46.26Matrix110<3 nevcairiel
09:46.35charonmy theory might be wrong (but then again _someone_ tracks threat for them)
09:46.38*** join/#wowace Mars_ (n=Mars@p508316BF.dip0.t-ipconnect.de)
09:47.00charonand i don't have time for any heavy omen/threat hacking in the next week or so :(
09:48.10*** part/#wowace Mars_ (n=Mars@p508316BF.dip0.t-ipconnect.de)
09:48.24CIA-4003elsia 07Elsia * r72506 10ModelViews/MOView_StatBlocks_Basic/:
09:48.24CIA-40MOView_StatBlocks_Basic:
09:48.24CIA-40- Fix svn properites.
09:49.33sbmh - is there some XLoot Master replacement? (butsu replaces XLoot (at least the loot frame) and teksloos replaces XLoot Group)
09:51.06durcynsb, try ammo's MasterLoot
09:51.34sbwowace/MasterLoot?
09:52.33durcynit's in trunk, and thusly in files
09:52.53sbokay, its on wowace, thats the point ;)
09:56.47*** join/#wowace mort (n=mort@azureus/mort)
10:05.24*** join/#wowace faCe| (n=face@pD955F140.dip.t-dialin.net)
10:06.02*** join/#wowace [dRaCo] (n=drc@p5B22A358.dip0.t-ipconnect.de)
10:06.18*** join/#wowace Mars_ (n=Mars@p508316BF.dip0.t-ipconnect.de)
10:07.17[dRaCo]Tornhoof: ping
10:10.49sbty durcyn - testing...
10:11.07*** join/#wowace North (n=a@78.148.67.203)
10:12.05durcyndon't thank me, thank ammo
10:13.57*** join/#wowace Cheads (i=chead@0x5731dc20.virnxx18.adsl-dhcp.tele.dk)
10:15.03*** join/#wowace Groktar (n=Groktar_@adsl-70-141-52-113.dsl.frs2ca.sbcglobal.net)
10:15.07*** join/#wowace RLD_osx (n=rldempse@66-169-191-207.dhcp.ftwo.tx.charter.com)
10:15.34*** join/#wowace Polleke (i=Polleke@unaffiliated/polleke)
10:18.12*** join/#wowace Guardix (i=martin_j@87.59.121.181)
10:29.39sbdurcyn: well no, i have to thank ammo if it works ;)
10:30.07sb(illidan kill, glaives inside - master loot fails because of addon... :P)
10:30.11*** join/#wowace Ordog (i=Ordog@port-87-234-84-67.dynamic.qsc.de)
10:30.38nevcairielhaha
10:31.05[SW]Dodgepwnd :D
10:31.14CIA-4003anea * r72507 10SpamSentry/ (SpamSentry.toc core.lua readme.txt):
10:31.14CIA-40SpamSentry 20080503:
10:31.14CIA-40- Updated filters
10:31.42[Ammo]sb: it was tested ina 2 man party in deadmines :)
10:31.48nevcairiellol
10:32.26sbuhm... okay ;)
10:32.44[Ammo]but I have faith in my coding
10:33.21sbbut it should still be possible to disable addon + rl ui - if anything goes wrong..
10:33.28[Ammo]ofcourse
10:33.57sbwhat exectly does it do? ;o
10:34.03sbself loot + random loot
10:34.11[Ammo]read the 'note:'
10:34.37sb"## Notes: Master Loot Menu replacement"
10:34.39sbwell... :p
10:35.10[Ammo]haha
10:35.16[Ammo]it sorts by class instead of groupo
10:35.20[Ammo]and adds self and random loot
10:35.23sbokay
10:35.26sbthats perfect ;)
10:38.58*** part/#wowace Keya (n=pschrine@xdsl-81-173-172-76.netcologne.de)
10:39.09*** join/#wowace Orionshock (n=chatzill@ip68-225-195-1.ph.ph.cox.net)
10:39.15OrionshockI have addon...
10:39.20Orionshocki does a version check atm.. but it's a start :D
10:39.20mikmagz
10:39.22*** join/#wowace Sliker_Hawk (n=nnscript@212.32.65.95)
10:39.30Orionshockc
10:40.45*** join/#wowace ND_afk (n=Miranda@h062040167062.gun.cm.kabsi.at)
10:41.39kilroggi would like "set disenchanter" and "set mule" functions for a masterlooter addon to give loot to these players
10:41.56Orionshocklol
10:42.04Orionshocki asked [Ammo] but he said no :(
10:42.16*** join/#wowace dantor (n=dantor@dslb-088-068-205-107.pools.arcor-ip.net)
10:42.23kilrogg:(
10:42.33OrionshockQQ :((
10:42.44*** join/#wowace [Liq] (n=denras19@fw-tk-1.ruc.dk)
10:42.48[Liq]Hi everyone :-)
10:42.55dantorhi
10:43.05kilrogghmm, is XLoot still supported ?
10:43.09CIA-4003anea * r72508 10SpamSentry/core.lua:
10:43.09CIA-40SpamSentry 20080503-2:
10:43.09CIA-40- Fixed bug in feedback system
10:43.12Orionshockjj
10:44.17*** join/#wowace [Liq] (n=denras19@fw-tk-1.ruc.dk)
10:44.19[Liq]Hi everyone :-)
10:44.26Orionshock... ok... odd question, is there a issecurescript() ?
10:44.59CIA-4003Sorata * r72509 10Poppins/ (Frames.lua Poppins.lua):
10:44.59CIA-40Poppins:
10:44.59CIA-40- Add minus padding
10:44.59Groktardoesn't know
10:45.15*** join/#wowace _Berti (n=berti@vs156121.vserver.de)
10:45.43Orionshockwhere is that author of tinytip...
10:45.58JaxonThrae?
10:46.04Orionshockaye..
10:46.07Orionshockthrae
10:46.11Orionshock~seen thrae
10:46.12purlthrae <n=Thrae@pool-71-179-12-100.bltmmd.fios.verizon.net> was last seen on IRC in channel #wowhead, 11d 9m 34s ago, saying: 'I can't kill Fisker-; he's wearing a tinfoil hat.'.
10:46.16Cheadsbusy with anything but tinytip =)
10:46.25Orionshockindeed...
10:46.30Orionshockanyone here good with tooltips?
10:46.43Orionshockspecificlly player tooltips?
10:46.52*** join/#wowace kovi (i=kovi@p4FD6613E.dip.t-dialin.net)
10:47.43CheadsI use TipTac till Tinytip will work fully again
10:48.00JaxonEh, I use TinyTip, works awesomefae.
10:48.17Orionshockim pondering the impact of hooking the OnTooltipSetUnit, and then modifying directly the font string on the tooltip for players...
10:50.50*** join/#wowace mort_ (n=mort@azureus/mort)
10:50.57*** join/#wowace Srosh_ (n=Srosh@c210129.adsl.hansenet.de)
10:51.30*** join/#wowace dJe781 (n=dje781@ves78-1-89-85-60-113.dsl.club-internet.fr)
10:52.14*** join/#wowace krage` (n=audion@CPE001a9223537e-CM00195edcdd96.cpe.net.cable.rogers.com)
10:52.21*** join/#wowace Matrix110| (n=bla@pD957FD0F.dip.t-dialin.net)
10:55.57*** join/#wowace sica_ (i=sica@freya.megami.de)
10:56.25*** join/#wowace genetik- (i=genetik@nayuki.caffeine.nu)
10:57.00*** join/#wowace ramoz (n=ramoz@nikita.modservers.net) [NETSPLIT VICTIM]
10:57.00*** join/#wowace thul (n=Cain@gauk.unixgen.com) [NETSPLIT VICTIM]
10:57.07*** join/#wowace Kemayo (n=kemayo@pool-71-103-174-37.lsanca.dsl-w.verizon.net) [NETSPLIT VICTIM]
10:57.07*** mode/#wowace [+v Kemayo] by ChanServ
10:57.26*** join/#wowace dre^ (i=dre@loco.dreness.com) [NETSPLIT VICTIM]
10:57.26*** join/#wowace Matrix110 (n=bla@pD957FD0F.dip.t-dialin.net)
10:57.26*** join/#wowace harl|away (i=harl@dslb-088-077-208-224.pools.arcor-ip.net) [NETSPLIT VICTIM]
10:57.26*** join/#wowace ven (n=ven@i59F55B1B.versanet.de) [NETSPLIT VICTIM]
10:57.26*** join/#wowace krage- (n=audion@CPE001a9223537e-CM00195edcdd96.cpe.net.cable.rogers.com) [NETSPLIT VICTIM]
10:57.26*** join/#wowace dJe781`Aw (n=dje781@ves78-1-89-85-60-113.dsl.club-internet.fr) [NETSPLIT VICTIM]
10:57.26*** join/#wowace Lopen|Home (n=Lopen@c-68-60-55-138.hsd1.mi.comcast.net) [NETSPLIT VICTIM]
10:57.26*** join/#wowace thekip (n=dennis@maggie.kips-world.de) [NETSPLIT VICTIM]
10:57.26*** join/#wowace lagger (i=lagger@emly-56.res.umass.edu) [NETSPLIT VICTIM]
10:57.27*** join/#wowace Punkie`afk (i=9266Punk@server1.bouncer4you.de) [NETSPLIT VICTIM]
10:57.27*** join/#wowace qvr (i=qvr@ip6.mmh.iki.fi) [NETSPLIT VICTIM]
10:57.27*** join/#wowace SunTsu (n=miyamoto@cl-1212.ham-01.de.sixxs.net) [NETSPLIT VICTIM]
10:57.28*** join/#wowace FinalX (i=finalx@finalx.eu) [NETSPLIT VICTIM]
10:57.28*** join/#wowace Fritti (n=orb_rule@pcwin165.win.tue.nl) [NETSPLIT VICTIM]
10:57.42*** join/#wowace keiss (n=keiss@gw-sitel.spojovaci.net) [NETSPLIT VICTIM]
10:57.42*** join/#wowace FinalX (i=finalx@finalx.eu)
10:59.41Fisker-http://cache.gizmodo.com/assets/resources/2008/05/gtaiphone.jpg <-yay
11:01.43nevcairiellol
11:02.07*** join/#wowace Marsti (n=chatzill@p508316BF.dip0.t-ipconnect.de)
11:12.40*** join/#wowace ncd|Aileen (n=Dave@213.216.23.2)
11:13.33CIA-4003nevcairiel 07Ace3 * r72510 10Bartender4/Bartender4/ (ActionBars.lua MicroMenu.lua PetBar.lua): Bartender4: some svn keywords
11:20.08*** join/#wowace Chaud (n=chaudhar@75-136-135-060.dhcp.gnvl.sc.charter.com)
11:20.34*** join/#wowace RLD_osx (n=rldempse@66-169-191-207.dhcp.ftwo.tx.charter.com)
11:22.43*** join/#wowace bleeter (n=bleeter@guifications/developer/bleeter)
11:24.28*** join/#wowace Killmore2 (n=task@modemcable035.211-37-24.mc.videotron.ca)
11:25.04bleeterOmen2 has keylogger post to customer support forum. If you feel like replying, remember it's one of the more heavily moderated forums that blizz have
11:25.07bleeterhttp://forums.worldofwarcraft.com/thread.html?topicId=6286639448&sid=1
11:26.03JaxonWhat is Omen2
11:29.09Groktarthe 2.4 version
11:29.25Fisker-well i really doubt it bleeter
11:29.28GroktarAntiarc just labelled it the same as the old one to avoid confusion
11:29.34JaxonWell, as far as I know once it hit release it really doesn't go for that name.  
11:29.39Groktarand ya, that's complete nonsense
11:29.40JaxonGroktar: and the old one was depreciated.
11:29.40Fisker-probably got a poisoned DNS and stuff is getting redirected
11:29.42Fisker-or something else
11:29.43Groktaryes
11:30.10Fisker-anyways i'm destroying the server and checking
11:30.12Groktaractually it still says omen2 in game
11:30.34*** join/#wowace Kalroth (n=kalroth@port114.ds1-hj.adsl.cybercity.dk)
11:30.46JaxonI still don't see how random exectuables in any addon zip get run, whether they are there or not.
11:30.52Groktarit's nonsense
11:31.20dantorcan a keylogger work without admin rights?
11:31.21JaxonI always open up my compressed archives and try to run each and every file in there
11:31.42Jaxondantor: on a win OS?  Hell, what can't you do without admin rights
11:32.03Fisker-you can't install it
11:32.05Fisker-hoho
11:32.12Fisker-also
11:32.20Fisker-it'll have to act as a systemservice probably
11:32.29Fisker-well i don't know about that
11:32.43Fisker-but stuff doesn't have unrestricted access when run as a non-admin account
11:33.02bleeterFisker-: well, I doubt it too... figured someone, apart from myself, may wish to speak to the topic ;)
11:33.21Groktarand i highly doubt someone using norton and ie would know how to disable uac
11:33.41CIA-4003nevcairiel 07Ace3 * r72511 10Bartender4/Bartender4/ (ActionBarStates.lua ActionBars.lua Bar.lua TODO.txt):
11:33.41CIA-40Bartender4:
11:33.41CIA-40- added settings to toggle possess bar and actionbar-based switching (like pressing SHIFT-2 or SHIFT-MouseWheel to change bars)
11:33.42CIA-40- added TODO.txt
11:34.46Groktari like the new dailies
11:34.58Groktartuesday night i was down to 10g
11:35.01*** join/#wowace Iboong-Kenzo (n=user@77.87.207.194)
11:35.02Groktarand had a 40g repair bill
11:35.09nevcairiellol
11:35.10Groktarand now i'm back up to 1k with just dailies
11:35.21nevcairielyeah ~250/day with dailys is nice
11:35.23Fisker-hey Groktar
11:35.28AntiarcWowace specifically restricts the files that can be committed to the repository.
11:35.38Groktarhai
11:35.41Fisker-two days ago i had like 20800g
11:35.44Fisker-now i have 21500g
11:35.46Fisker-hai
11:35.50Groktarlol
11:35.58Fisker-i also had a 40g repair btw
11:35.59Fisker-:D
11:36.04*** join/#wowace nekoh (n=nekoh@drms-590c9aa9.pool.einsundeins.de)
11:36.05Groktari hit 70 two weeks after tbc release
11:36.12Groktarno epic mounts on either of my 70s
11:36.21Fisker-well Antiarc it may still be possible if the server was compromised
11:36.24*** join/#wowace Mera (n=ecarlat@77.203.252.29)
11:36.24JaxonYou have a problem with spending.
11:36.25Groktarhell, my second 70 didn't get an epic ground mount until 68
11:36.30Fisker-unless it also rechecks every zip all the time
11:36.33Groktarpretty much
11:36.35JaxonFisker-: that doesn't explain how or why they are getting run.
11:36.35nevcairielFisker-: i just checked all .zips from the last week, nothing in there
11:36.44Fisker-true Jaxon
11:36.50Fisker-only last week nevcairiel?
11:36.55Fisker-you're doing it wrong
11:37.02Fisker-i downloaded all 1600 zip's
11:37.06nevcairielThe post was from today
11:37.09Groktari had to buy all the mats for epic sr gear, make a golden spellthread, buy some gems, and make a swiftheal mantle on my priest
11:37.10nevcairielso yeah, only the last few days
11:37.13Groktarall my gold went poof
11:37.20Xinhuan"The9, the company that operates World of Warcraft in Chin has announced today that all Chinese realms wil have their Isle of Quel'danas progress manually set to be fully completed."
11:37.21Fisker-owned Groktar :o
11:37.27Fisker-LOLWUT
11:37.27Groktarhehe
11:37.27Xinhuanlol?
11:37.30Fisker-I HATE COMMUNISTS
11:37.31Fisker-:D
11:37.41RLD_osxhuh!!!!
11:37.41Fisker-that's just stupid
11:37.54KalrothIt's because their servers has been running like shit
11:37.56Fisker-What's the whole point of competition if it's going to be rigged by the chinese?
11:37.59GroktaroO
11:38.01Fisker-oh
11:38.09bleeteryou do know that US realms are rigged, too
11:38.11Fisker-but still ;_;
11:38.13RLD_osxguess they gotta support their farmers
11:38.18Groktarmy realm is 30% to the gem vendor
11:38.22JaxonGuildmates, 3?  most likely they ended up with the same keylogger from some bad patch mirror off wowwiki or some trojan in an ad on WoWHead or something.
11:38.23Fisker-why bleeter?
11:38.25KalrothSome servers have had their island progress reset multiple times a day
11:39.06nevcairielwe're 86% on the final phase now
11:39.10nevcairieli guess 2 more days or so
11:39.14Meraboring event anyway too much quests+pvp :o
11:39.15bleeterFisker-: I think it was drysc who said that, so low pop servers don't suffer by having to wait post WotLK for the final stage to complete, they took a measurement of what they thought should be the right amount of time for a medium pop realm to complete, added half again, and set that as the autocomplete for all US realms
11:39.51Groktarit was nice having some world pvp again
11:40.04Groktarhadn't seen it since they put in bgs, really
11:40.18Matrix110|We are on 55% of the Alchemist orso lol
11:40.24Matrix110|nobody is doing the quest
11:40.40Groktari do it, lol
11:40.49Matrix110|you can idle 10hrs in the region and you see 2 people going there to do it
11:41.20nevcairielWhat is the quest? i didnt even bother to check it after i was exalted
11:41.27Groktarit's east of shatt
11:41.38nevcairielah i remember
11:41.39Groktarkill a big flayer until you get a thingy that mcs a little flayer
11:41.43nevcairielreading the info
11:41.45Groktarand then it digs up roots
11:42.21nevcairielsounds horribly slow
11:42.54Merasomeone know if having the s4 on ptr is like a blue official announce ? so it could be released within the next 2weeks
11:43.10*** join/#wowace evl (n=evl@c93D6BF51.dhcp.bluecom.no)
11:43.39Fisker-2.4.2 is next week
11:44.08Meraso s4 comme with i think because pvp vendors has a few new gears in honor
11:44.18nevcairiels4 will not be released with 2.4.2
11:44.24nevcairielthey are just testing the vendors on ptr
11:44.30*** join/#wowace Diskmaster (n=YOURFACE@CPE-76-85-147-197.neb.res.rr.com)
11:44.30Meraha ok shit
11:45.29Meramust be sson anyway if they are no more hiding gears
11:45.44Fisker-ok
11:45.47Marstiany source for 2.4.2 coming next week?
11:45.49Fisker-just downloaded all the omen zips
11:45.55Fisker-none of them had any malicious files
11:46.06Diskmasterwas just thinking about that very topic
11:46.14Fisker-all xml/txt/toc/lua/tga/ogg
11:46.25Marstiis there any zip which is bigger then the other?
11:46.28Fisker-yeah Marsti
11:46.31Merawhy yu say that fisker
11:46.32Fisker-[13:43:39] <Fisker-> 2.4.2 is next week
11:46.39Diskmaster<- Simplydark on forums
11:47.07Marstiyeah Fisker I know you posted that but what's your source? ;)
11:47.25Mera*go read forum*
11:47.36Fisker-Marsti myself
11:47.39Fisker-just there
11:47.49Fisker-i'm also scanning all the zips for virii
11:47.55Fisker-but i doubt it'll have any results
11:48.24durcynhe's either making it up, the box was already owned/dns was poisoned, or it's a false positive in some dumb AV app
11:48.27durcynor it's a kenco alt
11:48.34Merathat would be very hard to hide a virus in a lua addon
11:48.40DiskmasterI'd have to agree.
11:48.41Marstiso no zip which is bigger than the other?
11:49.00Fisker-of course
11:49.06Fisker-but that's rather because of it's contents
11:49.07durcynMera: signature based detection will happily match on whatever pattern it's looking for in any file
11:49.08AntiarcThe zip sizes change between commits as a matter of natural development
11:49.27Meraoki
11:49.31ZhinjioG'morning.
11:49.34nevcairielbut no real jumps in the size
11:49.41durcynseriouly, paste this in a .txt file and see what happens:  X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
11:49.49nevcairielheh
11:50.05Groktari'm feeling particularly masochistic
11:50.06durcynnot a keylogger, i promise!
11:50.06Antiarchttp://forums.worldofwarcraft.com/thread.html?topicId=6286799543&sid=1
11:50.11Antiarc"Confirmed now that a newer release of Omen has a keylogger line built into it.        "
11:50.17Groktargoing to do 25 dailies on my 41point holy priest
11:50.17Merayeha normal its the standard virus test file eicar
11:50.20AntiarcShit guys, I forgot to obfuscate LogKeys()
11:50.27Marstiand oh tga and ogg are binary...so if anyone would find a bug in the implementation of the TGA/OGG reader of blizz there could be virus in them...
11:50.33JaxonAntiarc: failer.
11:50.41Diskmastergoes to flag the post
11:51.28Fisker-haha
11:51.36Meralol
11:52.02MeraId like he post the source of the keylogger
11:52.05nevcairieldurcyn: antivir didnt pick that test file up :/
11:52.26Fisker-"I'm gonna virusscan these 150k text documents for virii"
11:52.31Fisker-I wonder what the result will be :(
11:52.32durcynnevcairiel: it's okay, it emailed me your password already
11:52.42durcyn'fluffybunny789', not very original
11:52.43AntiarcOmen:InUrWowLogginUrKeys()
11:53.01Xinhuanlua> 0/0 == 0/0
11:53.01lua_botXinhuan: false
11:53.07Xinhuangrrr
11:53.11Antiarcrofl
11:53.14Xinhuanhow do i test if something is 0/0 ?
11:53.24nevcairielXinhuan: you cant
11:53.25Fisker-The only other remotely plausible thing is someone is using some of the buffer overflow exploits in various zip softwarwe
11:53.27Fisker-software*
11:53.34Xinhuanthen??
11:53.40durcynFisker-: i still think it's Kenco
11:53.46Fisker-yeah
11:53.48Fisker-crossed my mind
11:53.59nevcairielXinhuan: well you can .. if a != a then isnan end
11:54.09Marstiyeah buffer overflow.. in the oggs, tgas or the zip
11:54.18nevcairiellua> a = 0/0; return a != a
11:54.18lua_botnevcairiel: luabot:1: '<eof>' expected near '!'
11:54.18Diskmaster... "Kenco"?
11:54.21Xinhuanare you sure that's the only way
11:54.22nevcairiellua> a = 0/0; return a ~= a
11:54.23lua_botnevcairiel: true
11:54.26JaxonHas KTM even been updated?  I can't imagine trying to update that cluster for 2.4's combat log changes
11:54.28DiskmasterCan I get the cliffnotes on this?
11:54.30durcynDiskmaster: the KTM author =P
11:54.30Merahttp://aetherialcircle.com/forums/viewtopic.php?t=1697&sid=340ac657a8f2d41f81898b8a814bc54b "Keylogger in Omen from ACE" haha
11:54.36nevcairieli dont think lua has a "isnan()"
11:54.49Diskmasterahahaha.
11:54.52Marstiwould be interesting to know if there is a buffer overflow bug in the used #ZipLib Version
11:54.56Fisker-3% until i get the obvious result we've all been waiting for
11:55.07Fisker-DONE
11:55.21Fisker-Number of scanned files: 177998
11:55.27Fisker-Number of infected files: 0
11:55.33nevcairielobvious results are obvious?
11:55.34Fisker-Total Size of scanned files: 3,4GB :D
11:55.39Antiarcrofl, wow dude.
11:55.40Diskmasteradds that he ran the latest version he downloaded through clamav, it's clean.
11:55.41Marstilol 3,4 GB
11:55.42AntiarcThat's hardcore.
11:56.00DiskmasterJust to colloaborate. :O
11:56.09durcynDiskmaster: that's beside the point - none of the actual zips contain any code that even could be malicious
11:56.10Merahttp://forums.worldofwarcraft.com/thread.html;jsessionid=9BFAA3829E483E080C038592F5831304?topicId=3547598588&postId=35472913525&sid=1
11:56.20Merapeople starts to be scared at omen
11:56.21DiskmasterI know, but most people won't believe that
11:56.51Matrix110|god
11:56.56Matrix110|i just got our MT to isntall Omen
11:57.00Matrix110|if he reads that...
11:57.12Polleke.. and believes it he's an idiot
11:57.24nevcairielhaha
11:57.24Merathe prob is that there is actually a fake blizzard insider website very well done, announcing WOTLK OPEN, then they login and bam their account/pwd owned and they complain then at Omen
11:57.26DiskmasterYeah, the OP is a moron.
11:57.30Brunersthose are the casual IE6.0 users
11:57.37Matrix110|Polleke Omen is the first Addon hes using :P
11:57.43Matrix110|he got NO clue about Addons
11:58.04Merathe fake site still up
11:58.11Matrix110|lol
11:58.13Marstieven if i don't think that there is any virus in these files... a virus scanner saying there isn't any virus doesn't give a guarantee  that there is no virus in zip (buffer overflow crap) or tga/ogg ;)
11:58.59Meraha no site just down nice
11:59.06Merawas http://usblizzard.net/
11:59.10AntiarcIf someone managed to hide a keylogger in my ogg or TGA files, they're pretty damned impressive.
11:59.32Antiarcconsidering the TGA still renders and the OGG still plays. :P
11:59.33Pollekevery true, jpeg readers have had bugs in them allowing a well formed jpeg to execute any code
11:59.41Merano my guess is that they just loggues in on a fake wotlk beta website Im sure
11:59.44JaxonI'd give the man my acccount info who was able to steal it through the ogg libraries
11:59.59Merathen it failed and do not remember they have been owned
12:00.10durcynseriously, Jaxon, at that point they deserve it
12:01.05Xinhuanlua> 1/0 < 0
12:01.06lua_botXinhuan: false
12:01.09Xinhuanlua> 1/0 > 0
12:01.10lua_botXinhuan: true
12:01.23nevcairiel1/0 is infinte
12:01.26nevcairiel+i
12:01.30Xinhuanat least that's true
12:01.33Xinhuanlua> 1/0 > 1/0
12:01.34lua_botXinhuan: false
12:02.18Marstior through #ZipLib ;)
12:02.20Pollekelua> 1/0 == 1/0
12:02.20lua_botPolleke: true
12:02.43nevcairielonly 0/0 evaluates to always false
12:03.57*** join/#wowace Marsti (n=chatzill@p508316BF.dip0.t-ipconnect.de)
12:04.00*** join/#wowace _Berti (n=berti@vs156121.vserver.de)
12:06.56charonwhich fits nicely with lua's scheme of always comparing everything by reference ... NOT
12:07.26Xinhuaneverything compared with 0/0 using any operator results in "false"
12:07.31Xinhuanthe only exception is ~= operator
12:07.34Xinhuanwhich results in "true"
12:08.29nevcairielits not really a exception :P
12:08.36Fisker-damn
12:08.42Fisker-Blizzard started digital downloads
12:08.55Marstiwhat?
12:08.56Xinhuanby any operator, i mean > >= == <= <
12:09.02Fisker-the new blizzard store
12:09.05Fisker-http://www.blizzard.com/store/browse.xml?f=c:1,c:7
12:09.14Fisker-WC3 and SC for digital download
12:09.39MarstiWoW/BC is/was downloadable too ;)
12:09.50Diskmaster*still is
12:09.52Fisker-Kinda obvious they wouldn't be using steamz0r :o
12:09.55JaxonIs, just through worldofwarcraft.com not blizzard.com
12:09.55Fisker-not here anymore
12:09.56Fisker-also
12:09.57Marstilol the prices are just crazy
12:10.02Fisker-that was different imo :P
12:10.28charon"digital download" wtf... like you could download anything in analog. starcraft on an LP! buy it now!
12:10.48ramozi
12:10.55ramozi'd actually buy that
12:11.01MarstiI still waiting for a fair-price-gold-edition of WC3
12:11.11DiskmasterStarcraft's greatest hits!
12:11.16DiskmasterNow with actual game!
12:11.23DiskmasterOnly $59.99. :O
12:11.29Diskmastershot
12:11.40Fisker-but it's basically a steam ripoff!
12:12.12Fisker-http://www.blizzard.com/store/details.xml?id=110000004 <-don't see the point in that though :D
12:12.20Fisker-Get your code digitally!11
12:12.23Fisker-or just put up a subscription
12:13.06Brunerscould be a way to limit your game time :P
12:15.06Groktarugh stupid gland won't drop
12:16.08Fisker-man
12:16.11Fisker-i'm so bummed out
12:16.16Fisker-if only they could put it up on steam
12:16.44Fisker-The charm of digital downloads runs out of steam when you have to keep track of 4-5 different sites/software
12:17.39Fisker-i guess Vivendi wished they weren't a bunch of fags
12:18.20Marstiright... and because steam is fine everyone wo distributes digitally should use it instead of making own (crap) software
12:18.44Fisker-I'm not saying they should
12:18.47Fisker-i just wish they would
12:19.22Marstiimho ;)
12:19.53*** join/#wowace stew_a (n=IceChat7@resnet-pat-254.ucs.ed.ac.uk)
12:20.08*** join/#wowace RLD_osx (n=rldempse@66-169-191-207.dhcp.ftwo.tx.charter.com)
12:20.48Fisker-btw the only reason i was calling vivendi fags were because of how they treated valve :P
12:21.21Fisker-i'm guessing Vivendi won't ever team up with Valve again for the same reason
12:21.49JaxonYay corporate drama.
12:21.54Fisker-yeah
12:22.20Fisker-they were stupid though
12:22.28Fisker-they could've retained the retail distribution
12:22.35*** join/#wowace AKX^ (i=akx@dsl-tkubrasgw1-ffb8c100-28.dhcp.inet.fi)
12:22.45JaxonAnyways, how much could I get for a t6 hunter and a t5 rogue and three thousand gold.  I figure I can sell my account before Omen steals my password.
12:23.07AntiarcTwo soft tacos and a warm smile
12:23.17Marstithey were to greedy
12:23.36DiskmasterA whack with the banhammer. :O
12:24.08Fisker-i'd hit it Jaxon
12:24.33Groktar11 dailies so far
12:24.45Groktarnot counting all the sunwell ones i did from 3-4am
12:24.56JaxonAntiarc: I missed the first 20 minutes of a raid ecause the lady in front of me at the drive through wanted tacos without lettuce and tomatoes and cheese.
12:25.05Groktarnoice
12:25.17Groktarso she wanted ground beef and a tortilla?
12:25.32JaxonSo two tacos and a smile actually kept my hunter from being worth THREE tacos and a grin.
12:26.58*** join/#wowace Merl_ (n=chatzill@56.84-48-165.nextgentel.com)
12:27.02*** join/#wowace RLD_osx (n=rldempse@66-169-191-207.dhcp.ftwo.tx.charter.com)
12:29.43*** join/#wowace charon_ (n=thomas@77-56-223-244.dclient.hispeed.ch)
12:31.35sb[Ammo]
12:31.41sbMasterLoot needs some confirmation dialog
12:31.43CIA-4003Vig * r72512 10AssignAssist/ (4 files):
12:31.43CIA-40AssignAssist:
12:31.43CIA-40- raid target selecting (80% done)
12:32.08Groktarspeaking of masterloot
12:32.14Groktari have been forever banned from masterlooter
12:32.24sb??
12:32.25Groktarafter i gave all 3 tier tokens to the wrong people during a gruul pug
12:32.30sblol
12:32.35nevcairiellol
12:32.41Marstilol
12:32.59Groktarone of whom could actually use it
12:33.22*** join/#wowace Vecnah (n=vec@vecna.vecnix.net)
12:33.41Groktarmess up ONCE
12:33.46Groktarand people remember forever
12:33.47Groktar:(
12:34.58Matrix110|I looted Perditions Blade to a mage when it was the best weapon for rogues :P
12:35.32Matrix110|after countless tickets the GM gave it to the rogue but the mage still has it
12:35.34Matrix110|so we duped it!
12:36.23*** join/#wowace Camci (i=Camci@c-cd30e353.572-1-64736c10.cust.bredbandsbolaget.se)
12:36.41Fisker-Jaxon
12:36.45Fisker-i'm having sex with you
12:36.46JaxonFisker
12:36.47Fisker-and you can't stop it
12:37.24DiskmasterO_o
12:37.29JaxonI didn't even notice, it must be fantastic.
12:37.30*** join/#wowace Vecnah (n=vec@vecna.vecnix.net)
12:38.59CIA-4003diablohu * r72513 10AtlasLoot_BCInstances/burningcrusade.en.lua:
12:38.59CIA-40AtlasLoot_BCInstances:
12:38.59CIA-40- Sunwell Plateau update
12:39.43Marstibye
12:39.49CIA-4003diablohu * r72514 10AtlasLoot/ (8 files in 5 dirs):
12:39.49CIA-40AtlasLoot:
12:39.49CIA-40- Sunwell Plateau update
12:41.27*** join/#wowace Vecnah (n=vec@vecna.vecnix.net)
12:45.08CIA-4003durcyn 07Ace3 * r72515 10Hourglass/core.lua: just use :Fade and start a new timer on the emphasize group for now, since AnimateBarToGroup doesn't clean up the bar from the destination group after fade and I'm too damn lazy to figure out why.
12:45.16AntiarcIs youtube offline for anyone else?
12:45.41JaxonAntiarc: works for me.
12:45.51durcynhttp://downforeveryoneorjustme.com/youtube.com
12:47.47charondownforeveryoneorjustme.com is down for me :D
12:47.57durcynrecursive irony :o
12:48.35charonor perhaps the script should learn to cache its responses for a few seconds or minutes
12:49.48Megalonhttp://downforeveryoneorjustme.com/downforeveryoneorjustme.com
12:49.49MegalonThe page you are looking for is temporarily unavailable.
12:49.49MegalonPlease try again later.
12:49.51Megalon:/
12:50.04*** join/#wowace profalbert (n=profalbe@80-123-39-222.adsl.highway.telekom.at)
12:52.39CIA-4003xinhuan * r72516 10Omen/ (7 files in 5 dirs):
12:52.39CIA-40Omen: Fix memory leaks in all modules, particularly in the Overview module. Fix
12:52.39CIA-40display problems in Overview mode. Set all update frequencies to 0.25s.
12:52.39CIA-40Deprecate bar:SetValue() and bar:GetValue(). Auto-collapse Omen window on
12:52.40CIA-40initial login too if the option is on.
12:54.29Matrix110|now with Keylogger? :P
12:54.54Xinhuanlol yes, i'll include a keylogger in omen :D
12:55.01Daemonadown here too @ Antiarc
12:55.02*** join/#wowace Kulaar (n=182Kulaa@p5B157CB5.dip.t-dialin.net)
12:55.10Matrix110|didnt you read the threads? .P
12:55.27Tornhoofheh half the classes using omen would show like 1,1,1,1,1,1,1,1 maybe a few 2s in the middle ;)
12:55.35CIA-4003nevcairiel 07Ace3 * r72517 10Bartender4/Bartender4/ (6 files):
12:55.35CIA-40Bartender4:
12:55.35CIA-40- options to configure self-casting
12:55.36CIA-40- implement right-click self-cast
12:56.21Xinhuanwhat's 1,1,1,1,1,1,1,1
12:56.37Xinhuanmashing one button? :)
12:56.41nevcairielyea
12:56.44JaxonXinhuan: shadowbolt
12:56.50charonsad but true... when we did BWL i knew a mage who regularly topped DPS simply with a frostbolt spam macro that would also fire trinkets on every cooldown
12:58.22CIA-4003durcyn 07Ace3 * r72518 10Hourglass/core.lua: Use our own sort function to sort by maximum/current instead of percent/maximum, remove unnecessary :SortBars() calls. Still todo: integrate keylogger code from Omen
12:58.29AntiarcROFL
12:58.35AntiarcYou guys are going to give me a bad name
12:58.41durcyn;)
12:58.42AntiarcAlso, afk writing LibKeylogger
12:58.49JaxonYou are already a liar and a thief.
12:59.01JaxonI've been believing lies when KTM has all the answeres.
12:59.09Xinhuanand operate and illegal piratebootybay
12:59.17Xinhuanan*
13:01.05nevcairielAnyone want to implement the freaking bag bar for me in BT4? :P
13:01.09frybetter be careful with these zip files, they can hack anyone
13:01.11*** join/#wowace Ncl8s (n=Ncl8@dsl-tkubrasgw1-fe38fa00-5.dhcp.inet.fi)
13:01.54durcynnevcairiel: just remove it, death to bag bars
13:02.19Fisker-NO
13:02.36nevcairielIts probably a copy paste job
13:02.39nevcairielbut i feel lazy
13:02.55CIA-4003Shot * r72519 10DoIKnowYou/ (Dataview.xml DoIKnowYou.lua):
13:02.55CIA-40DoIKnowYou:
13:02.55CIA-40- Update frame texts for other character set support (again)
13:04.27*** join/#wowace Cryect (i=Cryect@c-76-111-33-50.hsd1.ga.comcast.net)
13:05.47Tornhoofhmm is there any even which gets fired before console reloadui or logout? something like a cleanup event?
13:06.02*** join/#wowace RLD_osx (n=rldempse@66-169-191-207.dhcp.ftwo.tx.charter.com)
13:06.21nevcairielyou get PLAYER_LOGOUT before logout
13:06.25nevcairielbut not on reload ui
13:06.31*** join/#wowace AvitusLC (n=Avitus@62.135.96.36)
13:06.55charonbtw i've finally gotten round to making a world-readable repository for that python combat log parser (only any good if you know python): git clone git://persephone.dnsalias.net/git/wowtools
13:07.16nevcairielwhat does it do?
13:07.23Xinhuan^
13:07.54nevcairielNot that i know python, just curious
13:07.58charonparses the log into internal data structures so i can do statistics with them... also has some automatic splitting code into (boss)fights and such
13:08.17*** join/#wowace cncfanatics (n=evolve@28.176-201-80.adsl-dyn.isp.belgacom.be)
13:08.34charonthere are also a few "premade" plots that will run the numbers and produce pretty pictures but i haven't ported half of them to the 2.4-compatible data layout yet
13:08.47Jaxon"wowwebstats written with python"
13:08.49durcynAntiarc: i slapped together a chatframe scrollback module for Chatter, where would you like it?
13:08.50Xinhuanso, a wws replacement?
13:08.50nevcairielthat reminds me .. stupid WWS was refusing my two logs from last week yesterday
13:09.03nevcairielgotta try again
13:09.09cncfanaticsyo peeps
13:09.09charonno it's not WWS, though obviously you could run the same statistics as WWS does via that parser
13:09.39Jaxoncharon: a library for statistical analysis of combat logs? :P
13:09.51*** join/#wowace Chompers (n=Chompers@cpc1-cove9-0-0-cust541.brhm.cable.ntl.com)
13:10.05charonmore or less
13:10.14JaxonWhile we are talking about Chatter, how about an option to not fade text when the player is marked as AFK.
13:10.21*** join/#wowace Sliker_Hawk (n=nnscript@212.32.65.95)
13:10.52Gngskhow about an option to anchor the chat tabs to the bottom of a chatframe?
13:10.59CIA-4003nevcairiel 07Ace3 * r72520 10Bartender4/Bartender4/TODO.txt: Bartender4: todo update
13:11.51nevcairielstupid WWS is broken again
13:11.55nevcairieldamn that dev
13:12.37Tornhoofhmm nev, apparently it is called on reload ui
13:13.29sbbah.. wws is still broken?
13:13.31syerenFor those DKP managers out there, which site script would you suggest?
13:13.33sb*sigh*
13:13.47sbwhy using DKP?
13:13.56*** join/#wowace p3lim (n=p3lim@084202208125.customer.alfanett.no)
13:14.05syerenBecause people are used to it ;p
13:14.07Jaxonsyeren: scrap DKP, use the Thunder Billies patented "Don't be an asshole" loot policy.
13:16.18nevcairieldidnt someone report oddness with the BT4 pet bar some time ago? i forgot <.<
13:16.28*** join/#wowace TBBle_ (n=tbble@202.55.155.26)
13:17.07fryis BT4 in some special repo? I cannot find it in the normal Ace addon list
13:17.17Vulcanus<PROTECTED>
13:17.31fryah
13:18.20nevcairielAntiarc: didnt you mention some weirdness with the BT4 petbar?
13:19.44nevcairielmmm i r stupid, i should switch to BT4 when testing with my lock
13:20.08JaxonI've got a hunter and access to a warlock, let me know if you want me to look for anything specific.
13:20.23nevcairieli've a warlock myself, so i just need to know what was broken :D
13:20.39nevcairielI think i got it, though
13:20.46*** join/#wowace Ozguli (n=probli@e83-245-131-221.elisa-laajakaista.fi)
13:21.35*** join/#wowace Vanduror (n=Who@home.codevision.nl)
13:24.25*** join/#wowace blay (i=KevFlow@50.206.8.67.cfl.res.rr.com)
13:29.12Kuja^phyber: http://ace.pastey.net/87113
13:32.01*** join/#wowace ckknight (n=ckknight@WoWUIDev/WoWAce/CurseStaff/CurseForge/ckknight)
13:32.01*** mode/#wowace [+o ckknight] by ChanServ
13:33.11CIA-4003darkwings * r72521 10BigWigs/Sunwell/Felmyst.lua:
13:33.11CIA-40BigWigs:
13:33.11CIA-40<PROTECTED>
13:33.41ckknighthey all
13:33.42*** join/#wowace TNSe (n=evil@cm-84.212.153.1.getinternet.no)
13:35.45*** join/#wowace Cheads (i=chead@0x5731dc20.virnxx18.adsl-dhcp.tele.dk)
13:37.31syerenAll files and directories should be owned by your webserver's user/group
13:37.31syeren(Example: chown apache.apache -R *). All .php files should be
13:37.31syerenreadable/executable
13:37.31syeren$ chmod a+rx -R *.php
13:37.37syerenHow can I do that in Filezilla?
13:37.37Chompersgood morning ckknight
13:37.42syerenWhat exactly are the file properties?
13:37.48ckknighthow are you, Chompers
13:37.49ckknight?
13:37.53Chompersvery good ckk
13:38.06Chomperscleaning out the house of old stuff
13:38.11ckknightokay
13:38.19Chompersyeah...pretty dull
13:38.41Chompershow's your job going?
13:38.43*** join/#wowace Sliker_Hawk (n=nnscript@212.32.65.95)
13:39.02ckknightalright
13:39.24JaxonWould you two get over yourselves already and just fuck?
13:39.33syerenckknight, help me :(
13:39.37syerenYou know what needs to be done :(
13:40.10ckknightgets a butcher knife
13:43.28*** join/#wowace Polarina (n=Polarina@unaffiliated/polarina)
13:43.52*** join/#wowace copystring (n=copystri@p548A1A1B.dip0.t-ipconnect.de)
13:53.55*** join/#wowace Bibi (n=Boubouil@AVelizy-151-1-36-29.w82-120.abo.wanadoo.fr)
13:57.02*** join/#wowace RLD_osx (n=rldempse@66-169-191-207.dhcp.ftwo.tx.charter.com)
13:57.03*** mode/#wowace [+o vhaarr] by ChanServ
13:57.17*** join/#wowace DarkElf (n=Dark_Elf@ip50.net253.mw.net)
14:02.22*** join/#wowace faCe| (n=face@pD955F140.dip.t-dialin.net)
14:02.23*** join/#wowace JJSheets (n=jjsheets@c-98-214-77-115.hsd1.il.comcast.net)
14:02.42CIA-4003nevcairiel 07Ace3 * r72522 10Bartender4/Bartender4/ (Button.lua PetBar.lua):
14:02.42CIA-40Bartender4:
14:02.42CIA-40- fix petbar normal texture appearing when clicking on a empty pet bar slot
14:02.42CIA-40- added ButtonFacade support to the petbar (has one glitch though, a empty pet bar button with a backdrop from BF will not hide the backdrop <.<)
14:03.16JJSheetshmmm... I think I'll look into that...
14:03.41nevcairielIn theory i would know how to work around that in my code
14:03.58nevcairielbut i dont know if TogglePetAutocast is available to me or if its protected
14:04.39nevcairielSo i use blizzys template for pet buttons, to be safe
14:05.42JJSheetsnevcairiel, it kindof is protected.  I solve it by using a "click" button type on right mouse button, with a "clickbutton" attribute equal to the appropriate pet button.
14:05.54nevcairielwhat a hack
14:06.04JJSheetsonly thing that works perfectly though.
14:06.23JJSheetsand I think I have some bugs in my implementation of it.  :)
14:06.29nevcairielIt works this way
14:06.36nevcairielexcept the backdrop that shows
14:06.37JJSheetstrue enough. :)
14:06.49JJSheetsI'll see what I can do...
14:06.50nevcairielexpose the frame reference to the backdrop so i can manually hide it =P
14:07.27CIA-4003jjsheets * r72523 10Manikin/ (Localization/enUS.lua Manikin.lua Triggers.lua):
14:07.27CIA-40Manikin:
14:07.28CIA-40- Added Documentation in game for what is available to substitute in text. E.G.
14:07.28CIA-40$Spell$ gets substituted with the Spell being cast. These values are also used
14:07.28CIA-40in the four conditionals sections for each trigger response.
14:07.44Brunersckknight: found an issue with chinchilla and Bayi's extended questlog, when chinchilla is enabled you cant move the quest tracker around
14:08.16ckknightBruners: can it be moved with chinchilla?
14:08.29Orionshockjust had a weird error on logout... "Pure virtual function call"
14:08.42nevcairielbut usually, hunters and locks have their petbar pretty full .. only looks crazy on temporary bars for summons etc
14:09.08JaxonAt 70 you mean
14:09.49Brunersckknight: if chinchilla is enabled it can be moved around but falls back to a locked spot when you release your mouse button, without chinchilla everything works as it should
14:09.49ckknighthrm
14:09.49ckknighthow are you moving it?
14:10.08CIA-4003jjsheets * r72524 10ButtonFacade/LibButtonFacade/LibButtonFacade.lua:
14:10.08CIA-40ButtonFacade:
14:10.09CIA-40<PROTECTED>
14:10.13Brunersckknight: click and drag
14:10.32ckknightusing Chinchilla's movement system or Bayi's?
14:11.30Brunersckknight: Bayi's i guess
14:11.39ckknightso try moving it with Chinchilla's system
14:13.43Orionshockckknight: question for you about CowTip
14:13.54Orionshockwell tooltips in general
14:14.05ckknight~asktoask
14:14.06purlThis is IRC. Don't ask to ask a question. Just ask your question and if someone's around, they'll be glad to help.
14:14.22Jaxonwell, they might not be glad
14:14.24Brunersckknight: that worked, had no idea chinchilla had movement thingie for the quest tracker
14:14.25Orionshockwhat's the easiest way that you could think of to modify the players name on the game tooltip w/o fubaring other addons that hook the game tooltip.
14:15.18ckknightOrionshock: best advice I can give is see how CowTip's Lines module does it
14:15.39Orionshockok...
14:15.42Orionshockwill do...
14:18.04*** join/#wowace Zariel (n=Chris@host81-154-33-50.range81-154.btcentralplus.com)
14:18.51*** join/#wowace mikezter (n=Miranda@drms-4d006e24.pool.mediaWays.net)
14:19.47*** join/#wowace dabujo_ (i=xx@p4FDB2F60.dip0.t-ipconnect.de)
14:20.54Brunersckknight: good to have that out of the away atleast
14:21.06ckknight;-)
14:21.10CIA-4003elsia * r72525 10Recount/ (GUI_Main.lua LazySync.lua Recount.lua Tracker.lua roster.lua):
14:21.10CIA-40Recount:
14:21.10CIA-40- Guardian's of party members should now be properly identified and linked to their owners.
14:21.10CIA-40- Fixed bug in timedata display
14:21.10CIA-40- Fixed bug in death tracking for non-retained combatants.
14:21.10CIA-40- Performance improvments and cleanup to roster code.
14:21.26CIA-4003nevcairiel 07Ace3 * r72526 10Bartender4/Bartender4/PetBar.lua: Bartender4: properly hide the LBF Backdrop and Gloss on empty buttons (thanks to jjsheets for the API)
14:21.50*** join/#wowace KriLL3 (n=KriLL3@unaffiliated/krill3)
14:22.27Daemonaapplauds to nevcairiel to succesful copy pasting a feature.
14:22.47nevcairieleh?
14:23.02Daemonadamn misread, thought you added the bag bar :X
14:23.10JJSheetslol
14:23.27nevcairielthats one misread
14:23.31nevcairielamazing.
14:23.34ObelixprimeFor the past week I've been getting a pop-up message that "You're addons are causing a lot of errors and this may be slowing down the game - would you like to disable addons"
14:23.45Obelixprimeanyone else getting that?
14:23.52durcynObelixprime: so turn on 'display lua errors' and figure out what's wrong
14:24.03Obelixprimeyeah, going to do that next
14:24.05nevcairieldoes WoW actually output that warning?
14:24.09Daemonaand even better
14:24.14durcynnevcairiel: eventually, yes
14:24.15Daemonainstall buggrabber + bugsack before
14:24.22Daemonaso you can even read the errors ;)
14:24.28JaxonI know Bugrabber will give you that warning
14:24.37durcynit's not buggrabber.
14:24.45nevcairielBugGrabber just starts ignoring errors to not slow stuff down
14:24.49JaxonI don't remember the last time I got errors when I wasn't running buggrabber or bugstack
14:24.51nevcairieland notifies you of that
14:24.59JaxonTherefore I am better than everyone.
14:25.14JaxonBecause i"ve been up for 19 hours watching season 2 of house.
14:25.19Obelixprimea popup appears similar to the warning - do you want to loot this item
14:25.20durcynoShit > BugGrabber imnsho
14:25.41durcynObelixprime: either way, you've still got errors turned off.  go turn them back on so you can actually see the problem.
14:26.38hastealways fun watching the number increase in oShit when you get a recursive error
14:26.53Obelixprimewhere's oSHit
14:26.54Obelixprime?
14:27.04Obelixprimecan't find it on wowi or wowace
14:27.08Obelixprimecurse?
14:27.10hastehttp://ixo.no/git
14:27.45hastebut it won't solve recursive errors for you :)
14:28.37Obelixprimethanks
14:28.48Daemonarecursion is fun without a proper exit statement :D
14:30.31Brunersckknight: i think chinchilla bugs the questtracker for uberquest aswell
14:31.06ckknightand by that, you mean Chinchilla's mover takes precedence
14:31.07CIA-4003snago * r72527 10IHML/ (7 files in 2 dirs):
14:31.07CIA-40IHML:
14:31.07CIA-40- Added macro for Cooking Pot in Ancestral Grounds in Nagrand.
14:31.21*** join/#wowace Sliker_Hawk (n=nnscript@212.32.65.95)
14:31.29nevcairiel(what does the quest tracker have to do with a minimap addon?)
14:31.39ckknightpeople asked for the feature
14:31.47JJSheetslol
14:31.48ckknightit's close to the minimap
14:31.56ckknightif you move the minimap, it looks weird on its own
14:31.59ckknightso people wanted to move it
14:32.07Jaxonnevcairiel: I believe the minimap cluster frame is the anchor for the quest tracker, armor man and quest timer
14:32.20ckknightoh yes, that's right
14:32.26ckknightthere was something else that was arbitrary
14:32.29ckknightI think the alwaysupframe
14:33.41nevcairielThats why my minimap addon simply moves the minimap itself out of the cluster, and leaves all the other stuff like armored man in its place =P
14:33.48CIA-4003durcyn 07Ace3 * r72528 10Hourglass/core.lua: set emphasize bar time to cooldown bar time left instead of profile setting, in case profile changes between bars
14:34.21*** join/#wowace Gandharva (n=Miranda@dslb-084-057-046-187.pools.arcor-ip.net)
14:34.30nevcairielAmmo needs to finish MiniMapster and push it to trunk
14:35.16durcyneh, minimapster is fine if you don't want to move anything else >_>
14:35.25nevcairielI dont :)
14:35.44nevcairielI just move my buffs in the corner to replace the minimap
14:35.47nevcairielso no gap there!
14:35.48durcynoh, and the curved corner textures are labelled backwards, if he's listening
14:36.01nevcairielbackwards how?
14:36.14durcynlast i checked, setting curved top left put the curve in the bottom right, fex
14:36.53JaxonSo it is labelled for what corner the map goes in and not where the curve is.
14:36.56nevcairielHm I dunno, he named them like the files are named
14:37.04durcynoh, suppose that makes sense
14:37.17durcynseemed counterintuitive to me, but i'm strange ;)
14:37.21nevcairielheh
14:38.42Obelixprimehmmm, so having sct_cooldowns enabled, and not having any other sct addons present gives a lot of errors
14:39.05Obelixprimelol
14:39.14*** join/#wowace profalber1 (n=profalbe@80-123-15-162.adsl.highway.telekom.at)
14:39.31Obelixprimegetting rid of those
14:39.39ramozI think SCT_Cooldowns is outdated by a year atleast
14:39.49ramozyou should give SCT_SpellReady a try
14:39.52Obelixprimei used sct for a bit while parrot wasn't hacked
14:40.04Obelixprimewhat does spell ready do?
14:40.11*** join/#wowace Fatalis (i=fatalisd@68-188-76-94.dhcp.stls.mo.charter.com)
14:40.21ramoztells you when a spell/ability is off cooldown
14:42.19Brunershave the orc racial Blood Fury been changed ?
14:42.33Brunerssince tbc
14:45.29*** join/#wowace danto1 (n=dantor@dslb-084-059-197-179.pools.arcor-ip.net)
14:46.41*** join/#wowace Gorgoth_ (n=marco@84-72-69-84.dclient.hispeed.ch)
14:47.02*** join/#wowace charon (n=thomas@77-56-223-244.dclient.hispeed.ch)
14:48.51*** join/#wowace Vig (n=jhaas@213-84-101-170.adsl.xs4all.nl)
14:49.03*** join/#wowace RLD_osx (n=rldempse@66-169-191-207.dhcp.ftwo.tx.charter.com)
14:49.10Vighe guys
14:49.50Obelixprimeany other oaddons people would suggest?
14:50.15Vigoaddons?
14:50.38CIA-4003durcyn 07Ace3 * r72529 10Hourglass/ (core.lua locale-enUS.lua): add font size option, drop height option. if you want to change the height, futz with scale and width.
14:51.01Obelixprimehttp://ixo.no/git/
14:52.38BrunersiiLinks works like [insert itemname] and it gets linked?
14:52.56Vigcan i ask a question about units?
14:53.09profalber1~asktoask
14:53.10purlThis is IRC. Don't ask to ask a question. Just ask your question and if someone's around, they'll be glad to help.
14:55.00VigI have writen my addon so player1 selects a mob, the information is send across a channel to player2, then i want to do something with the mob, but the problem is i cant do anything with the GUID (no unit function works on it), and unitId is not good enuff to identify the mob when u send it to other players.
14:55.48Xinhuantell us what you want to achieve
14:55.58Vigi am stuck on this 1, i want that player2 can for example target the mob player1 has selected
14:56.10Xinhuannot possible to be automated
14:56.16Xinhuanblizzard restriction
14:56.21JaxonTarget and assist functions are secured
14:56.23Xinhuanif you manage to find a way, its considered botting
14:56.29Xinhuanand is bannable
14:56.38Vigno it was an example
14:56.54Xinhuanwell your example is banned and not possible within the wow addon system
14:57.35Xinhuantargetting, assisting, spell/skill casting, etc, all cannot be automated
14:57.52Fisker-slaps Xinhuan around a bit with a large trout
14:57.57Vigyeah i understand, bad exampe, at the moment i want to show the raid target icon the mob has in a window
14:58.26Xinhuannow that's possible, but that window cannot be clickable on to target said mob
14:58.41Vigyeah dont want it to be clickable
14:58.50Xinhuani.e, the window can only be informational, not functional
14:59.37*** join/#wowace hydrogen (n=hydrogen@ignorance.campus.alfred.edu)
14:59.46Xinhuanso what's the issue again?
14:59.52durcynerr, why not just use a <foo>target secure unit frame
14:59.55*** join/#wowace faCe| (n=f@pD955F140.dip.t-dialin.net)
15:00.10Xinhuanthat only works out of combat durcyn
15:00.35durcyni realize that, but using addonmessage to send it is dumb, tbh
15:00.55Vigplayer1 makes a mob through unit function, i have the GUID, i send the information across to player2, the i want to use the
15:01.33durcynwhy would you use comms to send data that's already available through existing tokens, is what i want to know
15:01.35Vigthen ii want to use a unit function on it, but GUID doesnt work and the unitId is something like playertarget and doesnt work also
15:01.55CamciDoes recount2 work without any prob? saw it havent been updated for 3-4 weeks now >_>
15:02.05Elsiait's pre-alpha
15:02.13Camcibeta then?
15:02.18Xinhuanthat's just how it is vig ;p
15:02.20Elsiano, not even beta :P
15:02.22VigI am making assignassist addon that a raidleader can use to assign targets to ppl
15:02.24Camcioh i ee
15:02.37Camciguess ill wait some more then :p
15:02.39durcynoh, cripes, that's your mess?
15:02.48durcynnevermind, he's all your Xinhuan, enjoy
15:03.11Xinhuanthere was already such an addon prenaxx :o
15:03.18Xinhuani dont' ermember the name
15:03.41*** join/#wowace hypetech (n=hypetech@66.83.192.140.nw.nuvox.net)
15:03.44Xinhuanit was just like 6 names you can fill in, and then you set 6 symbols to each name
15:04.01nevcairieli think CTRA could do that like in MC days
15:04.21Vigyeah something like that i am making also anyway
15:04.44Xinhuananyway, you shouldn't be sending the GUID
15:04.50Xinhuanjust send the name and icon of the mob
15:05.07Xinhuanthe player that receives it still must target said mob manually
15:05.27Vigah ok
15:07.31VigAh so the player2 window contains just information... bah not what i want
15:08.00VigIs there anyway then to get a mobist of nearby mobs in the area?
15:08.05Vigmoblist
15:08.06*** join/#wowace Cryect (i=Cryect@c-76-111-33-50.hsd1.ga.comcast.net)
15:08.33Vigprobally not, but just to be sure
15:11.35vithosnot really.  you could collect names by watching combatlog events and mouseovers
15:12.20Vighmm just got an idea, i could use focus to identify the mob, so player1 focus the mob then send player1focus across the channle and player2 identifies the player1focus as mob.
15:12.45Jaxonwhy not just use raidNNtarget
15:13.06vithosyou could send the mob's name, but there's almost always multiple mobs with the same name
15:13.12vithosso that's pretty useless
15:13.16CamciCan you keybind something to your mousewheel?
15:13.21Vigunit functions dont work on a mob's name
15:13.22Camcilike a macro
15:13.23vithosCamci: yes
15:13.31Camci<PROTECTED>
15:13.33Camciand how?
15:13.52vithosi've never done it, i assume the same way you keybind anything else
15:14.00vithosi just know some people do it
15:14.03VigJaxon: what u mean with NN in raidNNtarget?
15:14.08*** join/#wowace grzesieq (n=grzesieq@asv75.neoplus.adsl.tpnet.pl)
15:14.37vithosthe index number of a certain player in the raid
15:15.02Vigif the raidNN player deselects it the target is gone
15:15.09JaxonRight
15:17.39CIA-4003belazor * r72530 10/branches/Cryolysis3/ (11 files in 10 dirs):
15:17.39CIA-40Cryolysis3:
15:17.39CIA-40- Added reagents for each class
15:17.39CIA-40- Added Ritual of Refreshment to Arcane Powder reagent check for Mage
15:18.09Xinhuanvig, whatever approach you use, it still requires manual targetting
15:18.13Xinhuanon the receiving end
15:18.21Vigyeah
15:18.23Xinhuaneven if its using focus targets as suggested
15:18.30Xinhuanbut focus targets doesn't actually work
15:18.30CIA-4003tornhoof * r72531 10Yata/ (Options.lua TotemBar.lua TotemButton.lua):
15:18.32CIA-40Yata:
15:18.34CIA-40- fixed several set issues (i hope)
15:18.35Xinhuansince focus targets are only on client side
15:18.44Xinhuanif i set you as my focus target, you wont' ever know it
15:18.54Xinhuanyou can only see my "target", not my "focus"
15:19.17Vigi could keep broadcasting info dumps of the mobs, health, icons,etc that probally will work but was not my orinal idea
15:19.31Xinhuanyep but at the end of that, do you really think its worth it?
15:19.39Xinhuanthe player knows "i'm getting star"
15:19.47Xinhuanso he clicks "star"
15:19.52Xinhuanthe mob with it that is
15:20.09Xinhuanthat's about as simple as it gets
15:21.04Vigyeah i understand, still hope they make the unit functions work for the GUID, it is going to be in next patch maybe i heard
15:21.20Xinhuanthey might make it work
15:21.29Xinhuanbut its still going to require manual targetting :)
15:22.01*** join/#wowace Gilora (n=Gilora@adsl-76-200-142-118.dsl.pltn13.sbcglobal.net)
15:24.17Xinhuani suspect that if they make GUIDs usable on UnitBlah() functions, it'll only work on targets you have a valid unitID for
15:24.25Xinhuanthey already did this for gametooltips
15:24.38*** join/#wowace ven (n=ven@i59F55B1B.versanet.de)
15:24.41Xinhuanwhich can be :SetUnit(guid)
15:24.52Xinhuanwhich used to be able to track a target's health back in ptr days
15:24.56Xinhuanthen this was removed
15:29.44nevcairielI wonder if i should just move BT4 to trunk with the open positions in the todo
15:29.58CIA-4003nevcairiel 07Ace3 * r72532 10Bartender4/Bartender4/Button.lua: Bartender4: small tweaks
15:30.08*** join/#wowace ven (n=ven@i59F55B1B.versanet.de)
15:30.17hydrogenwill bt4 support mouse-over-keybinding?
15:30.17*** join/#wowace Zhinjio (i=1000@70.91.168.58)
15:30.22nevcairielyes
15:30.35nevcairielI should write a in-game FAQ
15:30.48Xinhuani'm already halfway done with a "help file" for Routes
15:30.50nevcairielfor all the questions
15:31.01Xinhuanit'll include all the basic stuff on how to setup a route
15:31.08Xinhuanand taboos
15:31.22nevcairielI just need basic info like "How do i keybind stuff? - Type /kb, hover button, press key"
15:31.34nevcairielI need a minimap button or something <.<
15:31.36Xinhuani'm actually using "Notepad"'s windows help file :D
15:31.40Xinhuanas a design template
15:31.42DarkElfdoes bt4 have all the features of bt3?
15:31.49Xinhuanfor choosing what to include
15:31.53Xinhuanin the help file LOL
15:32.01nevcairiellol Xinhuan
15:32.07Xinhuanhey its pretty good
15:32.12Xinhuanit has like a "Overview" page
15:32.15CIA-4003pettigrow * r72533 10Violation/ (Violation.toc locales/frFR.lua): Violation: frFR Update
15:32.18Xinhuanthen basic "How to Open a file"
15:32.24Xinhuanthen "How to save a file"
15:32.25Xinhuanblah blah
15:32.28nevcairielDarkElf: i think 2 or 3 are missing still :P
15:32.45Xinhuanand goes a bit about how to save files in ANSI, UTF8 or BigEndian
15:33.02nevcairielNotepad can save files in utf8?
15:33.06Xinhuanyes
15:33.13nevcairielfascinating
15:33.22XinhuanFile --> Save As ...
15:33.30Xinhuanthen "Encoding" dropdown
15:33.36Xinhuanchoose UTF-8 intsead of ANSI
15:33.46Xinhuancan also save as Unicode, or Unicode-BigEndian
15:34.02XinhuanANSI is the default
15:35.59*** join/#wowace Fatalis (i=fatalisd@68-188-76-94.dhcp.stls.mo.charter.com)
15:39.42*** join/#wowace widgertick (n=progdog@unaffiliated/widgertick)
15:40.21*** join/#wowace Delorala (n=gibtsned@p5DC0D392.dip.t-dialin.net)
15:41.16*** join/#wowace kovi (n=matthias@p4FD6613E.dip.t-dialin.net)
15:41.28*** join/#wowace dabujo (i=xx@p4FDB2F60.dip0.t-ipconnect.de)
15:42.25*** join/#wowace dylanm (n=dylanm@c-98-224-225-196.hsd1.mi.comcast.net)
15:51.00*** join/#wowace Yssaril (n=Yssaril@adsl-76-238-0-239.dsl.emhril.sbcglobal.net)
15:52.52*** join/#wowace Odlaw (n=ozzy@c-24-8-99-131.hsd1.co.comcast.net)
15:53.04*** join/#wowace Chaud (n=chaudhar@75-136-135-060.dhcp.gnvl.sc.charter.com)
15:56.43*** join/#wowace Next96 (i=Next96@121.129.140.199)
16:00.23*** join/#wowace Vangual (n=bah@217-162-113-166.dclient.hispeed.ch)
16:05.33*** join/#wowace ND_afk (n=Miranda@h062040167062.gun.cm.kabsi.at)
16:06.14ChompersElsia: is it possible to blacklist the damage your ghost does during the teron fight?
16:06.36ElsiaI think they count as pets, so you can just delete them after the fight
16:06.45Elsiaright click on their bar and select delete combatants
16:07.25Chomperssweet, i'll give it a go then
16:09.17CIA-4003toadkiller * r72534 10LibPeriodicTable-3.1/ (2 files in 2 dirs):
16:09.19CIA-40LibPeriodicTable-3.1:
16:09.21CIA-40-- Consumable.Buff Type.Both -> Consumable.Buff Type.Flask
16:14.00*** join/#wowace Gotai (n=thewill@ip503d59c0.speed.planet.nl)
16:22.26Xinhuanwhen i did teron fight yesterday, the first guy who got ghosted was so terrible
16:22.32Xinhuanthat when i got ghosted second right after
16:22.42Xinhuani novaed by ghosts, slowed them all down once
16:22.49ZhinjioG"morning, Xinhuan
16:22.54Xinhuanthen went over to kill the first person's ghosts in the raid
16:23.05Xinhuanwhen they all died, mine was just about reaching the raid, i killed these too
16:23.18Xinhuanthen by the time i'm done, i then finished off the 3rd person's ghost
16:23.34*** join/#wowace te`afkulaar (n=182Kulaa@p5B1567D4.dip.t-dialin.net)
16:23.38Xinhuanthen i ressed with a soulstone, got ghosted again T_T
16:23.45Xinhuanand at the end of it, i did 3300 dps :D
16:25.50*** join/#wowace Civrock_ (n=Civrock@24-182-74-089.dhcp.hckr.nc.charter.com)
16:29.47Xinhuanhttp://forums.worldofwarcraft.com/thread.html?topicId=6286729479&sid=1
16:30.17Xinhuanfrom a certain vantage point, those ascii art certainly looks disgusting!
16:31.01Kalrothlol
16:32.24*** join/#wowace Sekkyo (n=sekkyo@dsl092-250-144.sfo4.dsl.speakeasy.net)
16:33.07*** join/#wowace dylanm (n=dylanm@c-98-224-225-196.hsd1.mi.comcast.net)
16:33.46*** join/#wowace kovi (i=kovi@p4FD6613E.dip.t-dialin.net)
16:36.11Fisker-~seen kd3
16:36.12purlkd3 <n=kd3@host-12-173-142-252.nctv.com> was last seen on IRC in channel #wowwiki, 4d 42m 51s ago, saying: 'ya, shandris just asked about that on VP too'.
16:36.37*** join/#wowace Kolie (n=kolie@72.146.16.133)
16:36.37*** mode/#wowace [+v Kolie] by ChanServ
16:36.53KolieHey all.
16:38.34*** join/#wowace nappy- (n=Nyri@ip-78-94-63-167.PH-1611A-BSR64K-01.ish.de)
16:39.32cncfanaticshello
16:39.48Koliequite in here today ;)
16:39.53Koliequiet rather.
16:40.52vithoslol, our last gorefiend kill someone spammed recount with the ghosts still added in
16:41.08Elsia`ghosts rock as pets :D
16:41.12vithoshad a shadowpriest at #2 with 2200 dps
16:41.27vithosthe best part was i still did more damage than him
16:41.39*** join/#wowace KriLL3 (i=KriLL3@unaffiliated/krill3)
16:43.11*** join/#wowace cogwheel (n=chatzill@c-67-180-52-41.hsd1.ca.comcast.net)
16:45.14CIA-4003krytharn * r72535 10Reputation/ (Locale-enGB.lua Reputation.lua Reputation.toc): Reputation: -made a small change to the detection of headers. More minor fixes will follow, but this will have to do for now.
16:45.54Kuja^hrm, how can i move the ora2 maintank stuff around when alt and drag isn't working? :P
16:46.17Peoiimmm, badge gem vendor ftw.
16:46.27CIA-4003nevcairiel 07Ace3 * r72536 10Bartender4/Bartender4/ (Options.lua embeds.xml locale/enUS.lua): Bartender4: add simple FAQ
16:50.09*** join/#wowace Cheads (i=chead@0x5731db11.virnxx18.adsl-dhcp.tele.dk)
16:50.29cncfanaticsnevcairiel: BT4 ready yet ?
16:51.13nevcairielmostly
16:52.19cncfanaticssame for FB
16:52.23cncfanaticsmostly ready, except for the GUI
16:52.23CIA-4003zhucc * r72537 10IHML/locales/locale-zhTW.lua:
16:52.24CIA-40IHML:
16:52.24CIA-40- zhTW update
16:52.28cncfanaticswhich is going to be a pain in the asssss
16:52.39cncfanaticsYAY, my priority system is ready
16:52.41cncfanaticsand it works pristine
16:52.55nevcairielI only need support for the stupid bars that i dont use
16:53.01nevcairielbag bar .. xp bar .. reputation bar ..
16:53.01nevcairielzzz
16:53.16cncfanaticshehe
16:53.19cncfanaticsGUI done ?
16:53.34nevcairielusing AceConfig, sure
16:53.45cncfanaticsheh
16:53.51[SW]Dodgenevcairiel: what do you think when you are done? :)
16:54.32cncfanaticss/what/when/ ? :p
16:54.44nevcairieli've been thinking about just releasing it now for more testers
16:54.50[SW]Dodgemaybe ^^ i'm a noob in englsih :D
16:54.51nevcairieland finish the other bars later
16:55.30Peoiipeople still use the bag bar/xp bar/rep bar?
16:55.36nevcairieli dunno
16:55.42nevcairielbut i still get complaints when its broken
16:55.46Peoiiyar :/
16:55.56Peoiithey're the first things I disabled I think.
16:56.28[SW]Dodgebag bar -> onebag and hotkey for bag open^^
16:56.35[SW]Dodgexp bar -> pitbull
16:56.40KolieI love onebag.
16:56.42[SW]Dodgerep bar -> pitbull ^^
16:56.55nevcairielxp/rep bar -> xparky or fuxpfu
16:57.01ckknightI like fuxpfu
16:57.31[SW]Dodgei have experienceFu
16:57.37*** join/#wowace TE|AFKulaar (n=182Kulaa@p5B154615.dip.t-dialin.net)
16:58.08cncfanaticsI'm not even going to add an exp or rep bar
16:58.13cncfanaticsprolly no bagbar either :p
16:58.34KolieAnother vote for fuxpfu
16:58.41nevcairielbagbar is so damn simple to do, i just copy/paste my micromenubar and change the containing buttons
16:58.49cncfanaticsmmmh
16:59.10cncfanaticsfor fb I'll prolly make a module that spawns 5 FB buttons and makes bag buttons out of em
17:00.19ckknighthrm, might as well as you bunch something: Given a proper tutorial and guides and all, how many of you would have issues with using the svn+ssh vs. http (for svn write access). Note: this is not for wowace, but for curseforge
17:00.52cncfanaticsI wouldn't
17:00.58cncfanaticsbut I'd rather not use svn at all but git instead
17:01.00nevcairielPeople that do, shouldnt be allowed to write addons :p
17:01.13ckknightwell, yes, there's git support as well, it uses git+ssh for push access
17:01.23ckknightnevcairiel: truth.
17:02.04ckknightbasically, if I go with svn+ssh, I can have all protocols use the same auth system (ssh-pubkey), and I can have a lot more fine-grained control over things, such as path-based auth and the like
17:02.13DarkElfwishes blizzard would make a quest item bag so they didnt take up inventory space or count against the bag total
17:02.16cncfanaticsckknight: what exactly is cursefurge ? a soruceforge for addons ?
17:02.21ckknightyea, basically.
17:02.26cncfanaticsintresting
17:02.30cncfanaticsI'm currently on gitorious :p
17:02.37ckknightI've been using gitorious
17:02.43ckknightI'm planning on stealing lots of features from them
17:02.44ckknight:-P
17:02.49cncfanaticsgood boy
17:03.07KolieWhy does gitorious sound so wrong?
17:03.17ckknightcurseforge is gonna be pretty shiny, though. I plan on moving at least some of my stuff to it once it "releases"
17:03.44Kolie11•12ckknight11• Am I a first adopter?
17:03.50ckknightno colors
17:03.54ckknightthat's your warning.
17:04.02Kolie:) freenode doesnt have +c?
17:04.10ckknightdon't think so
17:04.25KolieCan I test if they are off?
17:04.42ckknightif what's off?
17:04.44Kolie•ckknight• This should be uncolored.
17:04.51ckknightit is uncolored
17:04.55ckknightbut not utf-8 compliant
17:05.41Kolie•ckknight• Am I a first adopter?
17:06.04nevcairielfreenode does have +c
17:06.06ckknightyour mom's a first adopter
17:06.09CIA-4003gagorian * r72538 10DrDamage/ (7 files in 2 dirs):
17:06.11CIA-40DrDamage:
17:06.12nevcairielbut its more fun to yell at people and kick them
17:06.13CIA-40- Added Wrath of Air Totem to manually selectable buffs
17:06.15CIA-40- Added stat comparison to caster moduel tooltips as in example 1 dmg: (haste/crit/hit) 0.75/1.3/0.9. You can set comparison to 1 dmg, crit rating, hit rating or haste rating.
17:06.17nevcairieland CIA-40 can do colors! :)
17:06.31Kolieckknight just likes making my life difficult nevcairiel
17:06.43ckknightnevcairiel: it's special
17:06.53KolieIm special ed too!
17:06.57nevcairielcommits look silly with colors off
17:07.39KolieSo ckknight, how do you get all your adoring fans to beta test your stuff, no one likes my wares.
17:08.05ckknightpeople know my stuff, they'll test it if I provide shiny features
17:08.22KolieI provide shiny features! And I think people know my stuff?
17:08.30CIA-4003nevcairiel * r72539 10Bartender4/: Bartender4: merge to trunk
17:08.45ckknightnot here
17:08.52ckknightyou're a small fish in a mighty big pond
17:08.55nevcairielThe curse client was a total mess before, you really have to convince people to install it again =P
17:08.57PeoiiKolie: You have stuff?
17:09.12Kolie•Peoii• I write the curse client ( and the curse beta client )
17:09.26PeoiiI repeat... Kolie
17:09.28Peoii:
17:09.30PeoiiYou have stuff?
17:09.35KolieYes.
17:09.35Peoiistupid new keyboard... :(
17:09.57Peoiiit's a long morning for me, sorry...  been reworking our loot system addon :/
17:10.17ckknightPeoii: he doesn't write addons, he writes apps and cracks software and the like
17:10.29*** join/#wowace Tinyboom (n=Tinyboom@180.84-49-87.nextgentel.com)
17:10.32*** part/#wowace Tinyboom (n=Tinyboom@180.84-49-87.nextgentel.com)
17:10.52*** join/#wowace Tinyboom (n=Tinyboom@180.84-49-87.nextgentel.com)
17:10.53Kolie•ckknight• You flatter me too much. I just tool around on the curse client.
17:10.53GagorianHmm it seems DrDamage was featured on wowinsider
17:11.04Gagorian:l
17:11.25KolieBut he is correct, I am not an addon writer perse.
17:11.30ckknightI hate when they feature my stuff and not tell me
17:11.35KolieI help install your addons for people more easily.
17:12.48Gagorianckknight: I don't care that much but it'd always be curtious to send an e-mail about it
17:12.59ckknightyea
17:13.02PeoiiKolie: hrm... if you can add a feature to force people to update their addon when I publish a new version, I'd be all for it :P  I mean brute force "Mr. T coming into your house and beating you silly until you update" type forced...
17:13.04GagorianAt least could check the article before it's published
17:13.25GagorianIn case there's anything completely wrong
17:13.46PeoiiI swear, getting people to update if I have to make a comm change is about like pulling eye teeth.
17:13.53ckknightI agree
17:14.34p3limhva is _the_ best error addon? (using BaudErrorFrame atm)
17:14.41KoliePeoii, definatly do able, like a dont run if you dont have latest version kinda thing?
17:14.44PeoiiOfficers of the guild come to me and say "can the loot addon do this?" "Sure, but it'll require everyone to update" "well hell"
17:15.44*** join/#wowace Fatalis (i=fatalisd@68-188-76-94.dhcp.stls.mo.charter.com)
17:16.18PeoiiLike disable wow.exe until they've updated their addons, yea, something like that. :P I dunno, just personal frustration at the morning, cause today is gonna force people to update yet again...  Heck, I've still got 2 people in guild running incompat versions of Omen, but they're healers, so no one really cares.
17:16.44*** join/#wowace Erica (n=erica647@cpe-075-178-181-026.nc.res.rr.com)
17:18.17PeoiiThis is what we get for running a Loot Council though.
17:20.00*** join/#wowace Kaelten (n=kaelten@65.213.133.66)
17:20.17CIA-4003nevcairiel * r72540 10/branches/Bartender4/: Bartender4: removing branch
17:20.27Fisker-OMGOMGOMGOGMOGMGOMGOGMGMGOGMIOGOMGOGMGOGMOG
17:20.33Ericawow
17:20.35Kolieorly?
17:20.42Ericacould it be???
17:20.57Fisker-is it done comrade?
17:21.00*** join/#wowace dylanm (n=dylanm@c-98-224-225-196.hsd1.mi.comcast.net)
17:21.26nevcairielyou missed the interesting commit :P
17:21.33VulcanusI bet nev is just teasing us
17:21.39Ericatell us
17:21.52Kolie[12:08pm] <CIA-40> nevcairiel * r72539 Bartender4/: Bartender4: merge to trunk
17:21.53Vulcanus[19:08:23] CIA-40 nevcairiel * r72539 Bartender4/: Bartender4: merge to trunk
17:21.53DaemonaCIA-40: nevcairiel * r72539 Bartender4/: Bartender4: merge to trunk
17:21.57nevcairielrofl
17:22.00VulcanusXD
17:22.01KolieI win.
17:22.06Ericayay!
17:22.07VulcanusHIGHLIGHT SPAM TYM
17:22.16*** join/#wowace dylanm (n=dylanm@c-98-224-225-196.hsd1.mi.comcast.net)
17:22.25Vulcanusso how horribly is it going to break if I install it? ;p
17:22.25Fisker-CIA-40: nevcairiel * r72539 Bartender4/: Bartender4: merge to trunk
17:22.37nevcairielwell you need to re-bind your keys
17:22.38KolieLittle late, Fisker-
17:22.40nevcairielbut thats all
17:22.42Fisker-and no i didn't miss it mr. nevcairiel
17:22.43Vulcanusohnoz
17:22.45Daemonawatches Fisker- jumping on the Fail Train.
17:22.46Fisker-or should i say?
17:22.48Fisker-MRS nevcairiel
17:22.57Vulcanustheres no gurls on the intarwebs remember
17:23.00nevcairielonly in your dreams Fisker- honey :P
17:23.04Fisker-anything new nevcairiel ?
17:23.06Fisker-or anything removed?
17:23.09Ericabutton facade support too?
17:23.10Fisker-anything madness, etc?
17:23.18Fisker-does cycircled work for it etc.?
17:23.31Vulcanusit does in bt3 lol
17:23.41charonwill it blow up in my face if i install it without reading the readme and faq first? :p
17:24.03nevcairielFisker-: nah cyCircled doesnt work, you need ButtonFacade now!
17:24.07CIA-4003toadkiller * r72541 10AutoBar/ (12 files):
17:24.07CIA-40AutoBar :
17:24.07CIA-40-- Consumable.Buff Type.Both -> Consumable.Buff Type.Flask
17:24.07CIA-40-- Change clumsy and ambiguous "Buff: Both Battle and Guardian Elixir" to "Buff: Flask"
17:24.08CIA-40-- All hail bobbyblade who found the crash wow error: Using "|" in a string followed by numbers is bad M'Kay.
17:24.19Vulcanuswtfz
17:24.27Vulcanusi likes my ccircled :(
17:24.44nevcairielThen you will also like ButtonFacade
17:24.46*** join/#wowace skrag (n=skrag@c-24-9-130-108.hsd1.co.comcast.net)
17:24.46Daemonadoes it import BT3 settings? ;)
17:24.49Ericame likes new toys  :)
17:24.56VulcanusQ_Q
17:24.56nevcairielDaemona: no chance in hell :P
17:25.00DaemonaQQ
17:25.37Vulcanuswhy is buttonfacade better? =p
17:25.56*** join/#wowace Resa (n=resa1983@CPE001310828e4e-CM0019474d5e2c.cpe.net.cable.rogers.com)
17:25.58Ericamore customizable I understand and easier to write skins for
17:26.14Vulcanusah
17:26.16Fisker-so that means i can have sex with men while setting up new skins?
17:26.19Vulcanusbetter go SS my keybinds
17:26.23Fisker-nevcairiel
17:26.26EricaI do  /wink
17:26.28CIA-4003gagorian * r72542 10DrDamage/Caster.lua:
17:26.28CIA-40DrDamage:
17:26.28CIA-40- Only do stat comparison if the spell is affected by crit/hit/haste (like not on healing stream totem)
17:26.32Fisker-i hope to god you made dreamlayout for that buttonfacade then
17:26.41*** join/#wowace Chaud (n=chaudhar@75-136-135-060.dhcp.gnvl.sc.charter.com)
17:27.01Ericathe api I think is already on the wiki
17:27.16nevcairielFisker-: dreamlayout is integrated into ButtonFacade
17:27.28Kolie•ckknight• Idle in my channel pl0x?
17:27.45Ericaok I gotta go try this out... thanks Nevcairiel!  :)
17:27.47TE|AFKulaaris ButtonFacade_VoliiMetal equal to cyCircled_VolM
17:27.48Fisker-my life is complete nevcairiel
17:27.56Fisker-might as well end it
17:28.10ckknightKolie: which channel?
17:28.17Kolieits #curseclient
17:30.26nevcairielThere, even added some FAQ elements to the forum post
17:30.41*** join/#wowace Hjalte (n=Hjalte@0x57307814.svgnxx3.adsl-dhcp.tele.dk)
17:30.45irae|Capullocan i use IsSpellInRange on unique IDs?
17:30.52irae|Capulloor only on mobnames?
17:31.28vithosunits, not mob names
17:31.57CIA-4003elsia * r72543 10Recount/Recount.lua:
17:31.57CIA-40Recount:
17:31.57CIA-40- Set proper default for MainWindowMode.
17:32.02CIA-4003belazor 07classes * r72544 10Cryolysis3/ (7 files in 7 dirs):
17:32.04CIA-40Cryolysis3:
17:32.06CIA-40- Hey, here's an idea: use correct variable names! /golfclap @ self
17:33.23dylanmirae|Capullo: http://www.wowwiki.com/UnitId
17:35.05*** join/#wowace Fatalis (i=fatalisd@68-188-76-94.dhcp.stls.mo.charter.com)
17:38.03CIA-4003dodge 07rewrite * r72545 10CoolDownButtons/ (7 files in 2 dirs): CoolDownButtons: heavy changes (not usable!) Do NOT update if you are using branches!
17:38.48HjalteElsia: Were you able to fix anything from what I told you? :)
17:39.05irae|Capulloso when i have 2 mobs with the same name and i dont have the mob in target/focus/mouseover i cant use the rangecheck?
17:39.36dylanmNope.
17:39.37Elsianot yet, but I fixed the totem problem
17:39.38*** join/#wowace mhiku (n=jf@124.106.237.144)
17:39.49mhikucan this be fixed asap? http://www.youtube.com/watch?v=s_mIUCmZ7X0
17:40.01*** join/#wowace Aeyan (n=pancake@cpe-071-076-230-073.triad.res.rr.com)
17:40.59*** part/#wowace mhiku (n=jf@124.106.237.144)
17:41.01CIA-4003dodge 07rewrite * r72546 10CoolDownButtons/ (14 files in 5 dirs): CoolDownButtons: adding new files
17:41.56CIA-4003dodge 07rewrite * r72547 10CoolDownButtons/ (Core.lua Init.lua Locales/ Locales/enUS.lua): CoolDownButtons: more files /shy
17:41.58*** join/#wowace Javek (n=Javek@adsl-75-15-128-12.dsl.snlo01.sbcglobal.net)
17:44.45*** join/#wowace Chaud (n=chaudhar@75-136-135-060.dhcp.gnvl.sc.charter.com)
17:45.00*** join/#wowace Kolie (n=repli@adsl-070-154-141-174.sip.bna.bellsouth.net)
17:45.16*** mode/#wowace [+v Kolie] by ChanServ
17:45.49p3limwhat is _the_ best error addon? (using BaudErrorFrame atm)
17:45.56*** join/#wowace Kolie (n=kolie@72.146.16.133)
17:45.56*** mode/#wowace [+v Kolie] by ChanServ
17:46.04Fisker-nevcairiel
17:46.08Fisker-i'm not seeing a bag bar!
17:46.32nevcairielthats a good thing
17:46.37nevcairielthat means its working
17:46.51Fisker-i don't like you
17:46.56*** join/#wowace Mera (n=ecarlat@77.203.252.29)
17:47.00PeoiiI do.
17:47.14Fisker-as do i
17:47.43Kulaarhow do i acess the buttonfacade thing?
17:47.48nevcairiel./bf
17:47.53Kulaarah :)
17:47.54Kulaarthx
17:47.57Fisker-i'm not your boyfriend nevcairiel
17:47.58Fisker-hoho
17:48.02Fisker-though i wish i were
17:48.04Fisker-:(
17:48.12nevcairielBT needs some stuff to integrate the skin config into its menu
17:48.19nevcairieladds to TODO
17:49.08Vulcanusalso bt needs cyCircled support, buttonfacade doesn't support eet it seems :p
17:49.30nevcairielnot going to happen
17:49.32Vulcanusthe circle buttons that is
17:49.33Daemonareminds me of that macro one of our taurens uses with the orb of the sin'dorei .... /use orb /dance /y Dont you wish your girlfriend was hot like me
17:49.35Vulcanuswhy not :(
17:49.36GnarfozVulcanus: ...just that BF works the other way around
17:50.04nevcairielVulcanus: bug the BF skin guy to convert that eet skin ;)
17:50.21Vulcanus"eet" isn't a skin, it's "it" in lolspeak :p
17:50.35DaemonaElsia, http://ace.paste.net/87125
17:50.50Vulcanus"Serenity: Classic" is the skin name it seems
17:51.02*** join/#wowace RLD_osx (n=rldempse@66-169-191-207.dhcp.ftwo.tx.charter.com)
17:51.08Elsiathat pastey doesn't work for me
17:51.39Hjaltepastey*
17:51.45dylanmhttp://ace.pastey.net/87125
17:51.47dylanmEhhh?
17:52.22*** join/#wowace Viserion (n=Viserion@dial-69-55-144-106.sofnet.net)
17:53.10*** join/#wowace evl (n=evl@c85-196-101-98.static.sdsl.no)
17:53.11danto1what does ([^>]+) in a string.find function mean? Everything until ">"?
17:53.28ElsiaDaemona: weird error.. there is an if right before it checking if it's nil :P
17:54.02nevcairieldanto1: yes
17:54.04Kulaarone last question to bt4: how can i hide the "buttontext" (the button the key is assigned to) ?
17:54.14danto1thanks
17:54.41nevcairielKulaar: you cant
17:54.45Kulaar:'(
17:55.08Kulaaron the todo? :P
17:55.41JavekCould someone check my FuBarPlugin patch http://jira.wowace.com/browse/FUB-143.  ckknight wanted another person to verify it before I commit it.
17:56.48nevcairielKulaar: possibly, you mean hiding the keybinding, right?
17:56.56Kulaaryes
17:57.16Kulaarthats the easy way to express it :)
17:58.48JavekDamn, there's already a problem, ClockFu's tooltip isn't registered prior whereas by addon's is for some reason
17:59.07Daemonahmmm could it be craftslist hooking badly?
17:59.11Daemonathats the only other error i got
17:59.15Daemonapastey inc
17:59.17Daemona@ Elsia
17:59.44DaemonaElsia, http://ace.pastey.net/87127
18:00.37ElsiaDaemona: not my addon ;)
18:01.21CIA-4003gagorian * r72548 10DrDamage/ (Caster.lua Melee.lua):
18:01.21CIA-40DrDamage:
18:01.21CIA-40- Local copies of a few blizzard API functions I forgot (<3 luac)
18:03.52*** join/#wowace Thelyna (n=burp@222-152-89-21.jetstream.xtra.co.nz)
18:04.38Peoiihrm... how often is GUILD_ROSTER_UPDATE published?
18:05.49CIA-4003toadkiller * r72549 10AutoBar/ (AutoBarDB.lua AutoBarOptions.lua):
18:05.49CIA-40AutoBar :
18:05.49CIA-40-- Update Button Category name when changed.
18:06.17DaemonaElsia i know, just thought might be due to a bad hook or whatever
18:06.18Daemona;)
18:06.34Elsiacould be but you need to report that to the other addon not mine
18:07.49Daemonawell the delete on joining a raidgroup when loging in isnt working too :X
18:10.07*** join/#wowace Tuller (n=muffins@c-76-27-160-125.hsd1.va.comcast.net)
18:13.14*** join/#wowace cncfanatics (n=evolve@28.176-201-80.adsl-dyn.isp.belgacom.be)
18:13.30Elsiadid you restart the wow client after updating?
18:14.48Daemonauuh not the last 2 hours but i didnt update either? *confused*
18:14.54KriLL3what's with the windy cloud things way out into thin air? there are no objects close enough to stand on and you do need to stand still to collect them...
18:15.29Daemonaits a "feature" KriLL3
18:15.53KriLL3oh I see
18:16.06KriLL3the same way a carrot on a stick is
18:16.21CIA-4003Ganders * r72550 10NinjaYell/core.lua:
18:16.21CIA-40NinjaYell:
18:16.21CIA-40- Finally fixed srcFlags for SPELL_AURA_APPLIED
18:17.23ElsiaDaemona: you must have updated recently, because that error is in new code, update again, quit client and let me know if the problem persists
18:18.12Daemonakk
18:18.21*** join/#wowace cncfanatics (n=evolve@28.176-201-80.adsl-dyn.isp.belgacom.be)
18:19.39HjalteElsia: This is strange. I'm looking at my Recount data from yesterday. It's 4 tries on Archimonde. I have self, group and ungrouped shown so everyone should still be in the memory. However, at least myself is missing from all tries.
18:20.20ElsiaHjalte: what class are you?
18:20.24HjalteElsia: I'm a warlock
18:20.53Elsiathat's very odd indeed. I have never seen myself disappear from recoutn
18:21.05CIA-4003ReSa * r72551 10FuBar_RecZone/ (6 files):
18:21.06CIA-40FuBar_RecZone:
18:21.06CIA-40- Added Zul'Aman
18:21.06CIA-40- Babble-Zone-2.2 -> LibBabble-Zone-3.0
18:21.06CIA-40- Jostle-2.0 -> LibJostle-3.0
18:21.13Elsiacan you wipe your wtf/*/recount.lua and let me know if that changes anything?
18:21.23HjalteElsia: I'll try and do that.
18:21.40HjalteThat won't erase the saved data?
18:22.08DaemonaElsia i restarted wow, upon entering the game i was still in my raid and couldnt delete data
18:22.22Daemonahttp://ace.pastey.net/87129
18:23.13Ozgulihmm.. does the "cleanup saved variables" in wau delete everything or just the files that aren't neccessary, as in addon no longer installed?
18:23.34nevcairielthe second, i hope =P
18:23.35HjalteOzguli: Just the files that it doesn't find an addon for, I believe.
18:23.55HjalteElsia: I'm still not there.
18:24.12HjalteElsia: I was there yesterday, I remember.
18:24.19HjalteWhen we had the tries.
18:24.22*** join/#wowace Fatalis (i=fatalisd@68-188-76-94.dhcp.stls.mo.charter.com)
18:24.56ElsiaDaemona: you get those two errors you reported?
18:25.05ElsiaDaemona: what revision?
18:25.24ElsiaHjalte: killing your wtf should wipe all data
18:25.59HjalteElsia: I only deleted the Recount.lua in my saved variables folder, It was only 3 kb large. Where is the fight data stored?
18:26.06*** join/#wowace Erzy (n=AFAP-Erz@c-fb60e253.533-1-64736c12.cust.bredbandsbolaget.se)
18:26.17Elsiathere is a separate one under your characters subdirectoery
18:26.26HjalteYou want me to delete that one too?
18:26.41*** join/#wowace mort (n=mort@azureus/mort)
18:26.49HjalteAlthough, as you've mentioned, that will wipe all data :)
18:27.18[SW]DodgeElsia: Message: ..\AddOns\Recount\GUI_Config.lua line 73:   bad argument #1 to 'upper' (string expected, got table)
18:27.33*** join/#wowace Shirik (n=nospam@conspiracy/developer/Shirik)
18:27.33*** mode/#wowace [+v Shirik] by ChanServ
18:28.53*** part/#wowace profalbert (n=profalbe@80-123-15-162.adsl.highway.telekom.at)
18:28.57Elsia[SW]Dodge: do you have a trace for that one?
18:29.18[SW]Dodgeyou mean debug stack?
18:29.22*** join/#wowace Polleke (i=Polleke@unaffiliated/polleke)
18:29.50Elsiayep
18:30.00*** join/#wowace charon (n=thomas@77-56-223-244.dclient.hispeed.ch)
18:30.11[SW]Dodgehttp://rafb.net/p/FXX1nG83.html
18:30.46Elsiathanks
18:30.57[SW]Dodgei posted dmg to party and then 1minute later iu used enrage an then the error happens
18:32.02PeoiiElsia:  Interface\AddOns\Recount\Recount.lua:1165: attempt to index field 'GuardianOwnerGUIDs' (a nil value)   <-- Rev 72543.  Got spammed by it, reloaded to test another change in my code, got hit with it once, then it completely stopped.
18:32.39*** join/#wowace mikezter_ (n=Miranda@drms-4d006e24.pool.mediaWays.net)
18:33.12ElsiaPeoii: thanks that makes sense, committing a fix right now.
18:33.13CIA-4003javek * r72552 10LibFuBarPlugin-3.0/LibFuBarPlugin-3.0.lua:
18:33.13CIA-40LibFuBarPlugin-3.0:
18:33.13CIA-40* Fix FUB-143, Detached tooltips now correctly open on load
18:33.47CIA-4003elsia * r72553 10Recount/Recount.lua:
18:33.47CIA-40Recount:
18:33.47CIA-40- Prevent removing guardians from the GUID stack if none has been created yet.
18:34.50Peoiinp, just was like "oh great, wtf did I do now?" then saw recount spamming me :/  needs.. more... coffee.
18:36.25*** part/#wowace Resa (n=resa1983@CPE001310828e4e-CM0019474d5e2c.cpe.net.cable.rogers.com)
18:36.43CIA-4003Vig * r72554 10AssignAssist/ (5 files):
18:36.43CIA-40AssignAssistAssignAssist:
18:36.43CIA-40- raid target selecting (80% done)
18:37.25CIA-4003elsia * r72555 10Recount/GUI_Main.lua:
18:37.25CIA-40Recount:
18:37.26CIA-40- Check if we get proper bar color to register.
18:37.31*** join/#wowace tedr0ck (n=tedrock@d235-144-17.home1.cgocable.net)
18:43.09CIA-4003Vig * r72556 10AssignAssist/AssignAssist.lua:
18:43.09CIA-40AssignAssistAssignAssist:
18:43.09CIA-40- raid target selecting (80% done)
18:43.38JavekIs there a function besides error() that will print an error in Wow, but not exit the script?  More like warning()
18:44.20JavekI guess I could just use message() or print to console
18:44.37dylanmYou make a custom solution. Like a debug() function that prints to the ChatFrame or your own panel or whatever.
18:45.41JavekIt'd be nice to have an addon messages collector, it's too easy to lose messages in the console, and dialogs are too invasive
18:45.56Javekit'd be cool to have a toaster lib that pops up messages and lets you look back on addon messages
18:48.26*** join/#wowace piggles (n=piggles@cpc8-seve16-0-0-cust421.popl.cable.ntl.com)
18:48.33*** join/#wowace Ozguli (n=probli@e83-245-131-221.elisa-laajakaista.fi)
18:51.15*** join/#wowace charon_ (n=thomas@77-56-223-244.dclient.hispeed.ch)
18:55.31*** join/#wowace Vangual (n=bah@217-162-113-166.dclient.hispeed.ch)
18:57.42*** join/#wowace Ozguli` (n=probli@e83-245-131-221.elisa-laajakaista.fi)
19:09.18*** join/#wowace Kurax (n=kurax@222.130.186.125)
19:09.51CIA-4003drool * r72557 10Nauticus/Locales/locale.frFR.lua: Nauticus: more complete french translations, thanks thelys/yann!
19:10.21CIA-4003javek * r72558 10CrushChance/main.lua:
19:10.21CIA-40CrushChance:
19:10.21CIA-40* Adjust crit chance for Survival of the Fittest talent
19:11.22charoni need ~asktoask for WoW... people keep asking "are you a tank?" ... ask a question that i can answer with "no" without either lying or coming up with a clever response ffs!
19:14.40Chaudwhy would someone ask if you were a tank =\
19:14.55CyrezThat might be useful for my Warrior if I still played, lol.
19:15.10Chaudyou armory people before you ask them to come to an instance =\
19:15.14*** join/#wowace Tekkub (n=tekkub@WoWUIDev/WoWI/Featured/Dongle/Tekkub)
19:15.14*** mode/#wowace [+v Tekkub] by ChanServ
19:15.22nevcairielcharon: "yes, but i am not interested in tanking your puny 5man instance"
19:16.02Chaudyou can always try and take 2 trash pulls at once
19:16.29charonChaud: you do armory them? heh. and i thought it was just me being arrogant ;)
19:17.20ChaudI never take anyone anywhere without armorying
19:17.43Chaudza, kara, heroics, ect
19:17.45charonso i told him i don't tank any 5 or 10 mans, and he asks "no kara?"... i seem to come across very confused
19:18.11Chaudtell him you will tank his mag/gruul pug
19:18.39CyrezI'd prefer somebody that's not stupid over somebody with good gear and a good template. Armory won't tell you that.
19:19.16Chaudovergeared and the right spec usually mean it wont be a problem
19:19.22Chaudso I just don't take anyone with blues
19:22.14CIA-4003nevcairiel * r72559 10Bartender4/TODO.txt: Bartender4: update TODO list
19:22.29nevcairielBut that one with blues could still be very good ;)
19:22.40danto1does anybody of you use "guild2guild"?
19:22.50nevcairielMm i should collect my dungeon set for wearing when i dont want to be bothered
19:22.54CyrezAnd there's other flaws, too.
19:23.09CyrezLocks and Hunters that are speced to rely on their pet.
19:23.20grzesieqhm, anyone heard anything about wow-europe.com/account problems?
19:23.41ChaudI don't care if someone in blues is good =\
19:23.43CyrezThey don't need much other than strong ranged pew pew.
19:23.48Chaudthey are bad or an alt
19:24.01ChaudI don't play to carry random's alts
19:24.29Cyrezgrzesieq: It's a trap.
19:24.51nevcairielMy alt has T4 and other full epic stuff
19:24.52Chaudbesides, why do something the hard way when you can do it the easy/boring way!
19:25.07Chaudthen I would take you =p
19:25.25nevcairielI havent been to any 5man for so long
19:25.38nevcairieli mean, i dont do shit except raiding and coding anyway with that char =/
19:25.50Chaudheroic daily for 6 badges in like 30 min is easy
19:25.56Chaudwell, some days
19:27.32CIA-4003kurax * r72560 10AtlasLoot/ (8 files in 3 dirs):
19:27.32CIA-40AtlasLoot: New item searching feature:
19:27.32CIA-40- Partial matching, users don't have to input the exact item name to find it.
19:27.32CIA-40- Search result paging and categorizing.
19:27.32CIA-40- Search filtering by choosing data modules to search on.
19:32.55CIA-4003nevcairiel * r72561 10Bartender4/Button.lua: Bartender4: fix tooltip disabling
19:34.30Fisker-i do not fear death nevcairiel
19:35.50nevcairielBut you should
19:35.55nevcairielits all painfull and such
19:36.48*** join/#wowace Daemonette (n=Ferret@87-194-241-29.bethere.co.uk)
19:37.11Daemonadurcyn i saw you did some updates to timetodie, any idea if you can make it update more often on bosses and not only each % ?
19:41.59danto1haha i found an exploit in the addon "guild2guild".. it is possible to read the guildchat of any people who have this addon installed, even writing in the guild chat is possible
19:42.20nevcairiellol
19:42.33*** join/#wowace ckknight_ (n=ckknight@WoWUIDev/WoWAce/CurseStaff/CurseForge/ckknight)
19:42.33*** mode/#wowace [+o ckknight_] by ChanServ
19:42.47*** join/#wowace Keias (i=Saiek@c-69-245-192-208.hsd1.in.comcast.net)
19:42.48hydrogennice!
19:43.18danto1just check if there exists a channel named "g2gdefault" on your server
19:44.46nevcairielnop
19:44.49hydrogenoh yes there does!
19:44.50nevcairielempty :(
19:45.10hydrogennot much of one, though
19:45.34grzesieqhm. is it just me or wow-europe.com forums use PDT time? -.-
19:45.41*** join/#wowace kenlyric (n=chatzill@c-68-54-218-192.hsd1.in.comcast.net)
19:45.46nevcairielMust be you!
19:45.58danto1then /run SendAddonMessage("G2G", "<G2G748>Verteidiger der Horde;1L", "WHISPER", "Name of a Player in the Channel")
19:46.02*** join/#wowace Bibi` (n=Boubouil@AVelizy-151-1-96-181.w86-205.abo.wanadoo.fr)
19:46.14danto1or replace Verteidiger der Horde by whatever you want
19:47.01danto1now you will be addonwhispered whith the guild chat
19:47.36danto1to write something, /run SendAddonMessage("G2G", "G2GG"..Tempvar, "WHISPER", "Name of the Player") Tempar is the var which contains your message
19:49.14Chaudis there some software that can go through a webpage and select all the no radio buttons ?
19:50.23danto1notice that you need a way to display incoming addonwhispers
19:52.45*** join/#wowace NeoTron (n=neotron@c-67-168-102-246.hsd1.wa.comcast.net)
19:54.04danto1did someone tried it?
19:54.45danto1has*
19:59.34danto1nevcairiel: on which realm did you find the channel?
19:59.43nevcairielI didnt
20:00.06danto1sorry, hydrogen
20:03.14*** join/#wowace [VM]Mysticfox (i=none@cpe-24-25-169-233.maine.res.rr.com)
20:17.45*** join/#wowace mikezter_ (n=Miranda@drms-4d006e24.pool.mediaWays.net)
20:20.10*** join/#wowace krka (n=krka@c83-250-42-60.bredband.comhem.se)
20:20.34*** join/#wowace thul (n=Cain@gauk.unixgen.com)
20:22.25*** join/#wowace dylanm (n=dylanm@c-98-224-225-196.hsd1.mi.comcast.net)
20:25.09*** join/#wowace rebug (n=rebug@adsl-69-105-97-210.dsl.irvnca.pacbell.net)
20:25.21Matrix110|hnmmm
20:25.26Matrix110|Bartender4 now in trunk?
20:26.30Fisker-Bartender4 now in trunk
20:26.47Matrix110|gotta migrate then!
20:26.53Fisker-gotta migrate then?
20:26.56*** join/#wowace Erica (n=erica647@cpe-075-178-181-026.nc.res.rr.com)
20:26.57Fisker-1-0 and so forth
20:27.28Matrix110|:-(
20:27.57Matrix110|not in trunk
20:28.06Kulaarit is
20:28.20Matrix110|well
20:28.37Matrix110|gotta run a update on wau first to dl new list
20:28.40*** join/#wowace KriLL3 (n=KriLL3@unaffiliated/krill3)
20:28.41Matrix110|i guess
20:29.32danto1is it possible to execute slashcommands via an addon?
20:31.08nevcairielwith some hax
20:31.12nevcairielnot directly
20:31.24nevcairieland not secure commands either
20:31.59danto1what happens if i use SendChatMessage with a slash command?
20:32.21danto1does it just post the command into the chat?
20:33.33*** part/#wowace Erica (n=erica647@cpe-075-178-181-026.nc.res.rr.com)
20:33.36nevcairielyea
20:33.54Droolanyone have examples of an addon that auto shows a fubar tooltip when something happens - without the user going to pull it down...
20:34.10*** join/#wowace Kolie (n=repli@adsl-070-154-141-184.sip.bna.bellsouth.net)
20:34.15Droolneed to force open a tooltip for a few seconds
20:34.26*** mode/#wowace [+v Kolie] by ChanServ
20:35.59dylanmnevcairiel: Would you have to just loop through SlashCmdList and search around?
20:36.29Shirikkinda
20:37.12*** join/#wowace Vegeta]BT[ (n=Vegeta-G@89.166.242.114)
20:38.51nevcairielYou can like put the cmd in the editbox and hit the virtual submit button
20:39.00dylanmI'm pretty sure that's what the FrameXML does anyway.
20:39.03dylanmOh, right.
20:39.05Shirikfor k,v in pairs(SlashCmdList) do local x = 1; while (_G["SLASH_"..k..x]) do if _G["SLASH_"..k..x] == slash then _G["SLASH_"..k..x](cmd) return; end x = x + 1; end
20:39.09Shirikend
20:39.27CIA-4003toadkiller * r72562 10AutoBar/AutoBarButton.lua:
20:39.27CIA-40AutoBar :
20:39.27CIA-40-- Tarkumi: fix for right click spell tooltip.
20:39.31dylanmExactly.
20:40.23EvilJohnbartender 4 eh? I'mscared
20:41.04Matrix110|its missing a bag bar:-(
20:41.47EvilJohnhm
20:41.58nevcairielpress "b"
20:42.00nevcairiel:)
20:42.06nevcairielor wait
20:42.13Matrix110|i rebinded
20:42.17Matrix110|:P
20:42.30Matrix110|although i got nothing else on b :D
20:42.36nevcairielheh
20:43.32Matrix110|hmm will this bartender 3 style come back (no idea what its called) where the icons dont have a border but some greyish background
20:43.44nevcairielMatrix110|: get ButtonFacade
20:43.49dylanmDreamlayout. Get ButtonFacade.
20:43.51Matrix110|ah
20:43.53Matrix110|kk
20:44.39danto1can i do something else then sending messages via the SendChatMessage function?
20:45.12dylanmI don't follow.
20:45.30dylanmIs this in reference to your old question?
20:46.05nevcairielI knew people would cry for the bagbar .. guess i'll work on it next
20:46.26Matrix110|well i dont really need a bagbar
20:46.31Matrix110|just a onebag button :D
20:46.37danto1the very old question, i have found a way to remotly control the guild chat form players who have installed guild2guild
20:46.47danto1i want to do something funny
20:46.48dylanmHaha.
20:47.10dylanmMatrix110|: Make a macro or stop being a clicker!
20:47.12dylanm:p
20:47.23Matrix110|never
20:47.45hydrogenuses two mice
20:47.52hydrogenI can click all sorts of things!
20:48.24danto1the problem is, if i send too much messages via the "victim", it will log out and disable the addon
20:48.49dylanmWell duh.
20:51.55*** join/#wowace Nargiddley (n=narg@203-97-236-74.cable.telstraclear.net)
20:53.40Tinyboomnevcairiel: bartender4 getting anywhere remotely close to release? ;)
20:53.50nevcairielnever!
20:53.52nevcairiel:)
20:53.54Tinyboomhaha
20:59.00*** join/#wowace Shyva (n=n0time@c51470e48.cable.wanadoo.nl)
20:59.21danto1there are so boring guilds out there...
20:59.54danto1not a single word since the last 30mins
21:00.46Matrix110|hmm besides BagBar(or BagButton) Bartender 4 + Button Facade is great so far
21:01.30Matrix110|hmm is there some /command to open the bags?
21:02.06*** join/#wowace Jeremy__ (n=chatzill@c-24-20-133-89.hsd1.mn.comcast.net)
21:02.08nevcairiel./script ToggleBackpack()
21:02.33Matrix110|hope there is some nice bag icon for a macro
21:02.53hydrogenwhy not just use 'b' ...
21:03.33Matrix110|because iam used to my bag button:P
21:05.31thulI just want a mature, grownup guild that accepts that I work and study and can raid only 1-2 nights per week :-P
21:05.33CIA-4003Vig * r72563 10AssignAssist/ (AssignAssist.toc embeds.xml):
21:05.33CIA-40AssignAssist:
21:05.33CIA-40- added use of embeded libs instead of dependecies
21:08.38Matrix110|there is not 1 icon remotely looking like a bag
21:10.41CIA-4003nevcairiel * r72564 10Mapster/Mapster.lua: Mapster: set the map frame to toplevel so clicking it raises it above all other frames
21:10.48sbthul: 1-2 nights / week sucks :p
21:11.04thulpfft, it rocks
21:11.49copystringthats kara clear, za and maggi maybe :p
21:12.07sbnevcairiel: mh - do you want to implement LibGuildPositions in mapster? ;)
21:12.40hydrogenthul: move to a rp server
21:12.47hydrogenthey tend to be a lot less 13 years old
21:12.48hydrogen:)
21:12.55thulhydrogen: hehe
21:12.56hydrogena bit behind the times as well, but
21:13.14hydrogentransferred to steamwheedle cartel a while back and has throughly enjoyed it
21:14.44thulI just want a social bunch to chat with, arena with and raid with :-P
21:14.57thulbeing a rogue doesen't help, maybe I should lvl my pala, shaman or warrior
21:16.46CIA-4003adirelle * r72565 10CastYeller/ (. CastYeller.lua CastYeller.toc embeds.xml): CastYeller: dropped all referecences to Parser-3.0.
21:19.26*** join/#wowace Halcyon_ (n=Halcyon@Lc872.l.pppool.de)
21:20.49*** join/#wowace Allara (n=chatzill@c-24-20-133-89.hsd1.mn.comcast.net)
21:25.36*** join/#wowace Seerah (n=Ryan_L@adsl-156-42-135.mem.bellsouth.net)
21:31.56[SW]Dodgesomeone knows an addon that replaces the spell name with a spell link in combatlog? :)
21:34.04*** join/#wowace Batos (n=Batos@193.69.144.170)
21:39.08*** join/#wowace Tinyboom (n=nahh@180.84-49-87.nextgentel.com)
21:39.56*** join/#wowace Batos (n=Batos@193.69.144.170)
21:43.53*** join/#wowace Hjalte (n=Hjalte@0x53587e4e.svgnxx3.adsl-dhcp.tele.dk)
21:46.36stew_aanyone know why my curseforge uploads dont appear?
21:47.13KalrothIt's a curse site :P
21:48.05*** join/#wowace Vanduror (n=Who@home.codevision.nl)
21:48.51Cheadsjust played the most evil 2v2 ever... rogue and warlock against druid, hunter, rogue!!
21:49.37Cheadsbuggy arena =(
21:51.06Hjaltewtf, it can bug that way?
21:51.14CheadsI have no idea
21:51.24Cheadsthey attacked one at a time..
21:51.48Cheadsfirst killed the sneaky druid... then the hunter entered.. and then the rogue came with the hunter had died
21:53.01*** join/#wowace dylanm (n=dylanm@c-98-224-225-196.hsd1.mi.comcast.net)
21:53.59*** join/#wowace ven (n=ven@i59F55B1B.versanet.de)
21:56.30*** join/#wowace lotekk- (n=lotekk-@unaffiliated/lotekk-)
21:56.38*** part/#wowace lotekk- (n=lotekk-@unaffiliated/lotekk-)
22:02.10*** join/#wowace Kaelten (n=kaelten@65.213.133.66)
22:05.04*** join/#wowace Jygga (i=Ordog@port-87-234-84-6.dynamic.qsc.de)
22:06.17*** join/#wowace mikezter (n=Miranda@drms-4d006e24.pool.mediaWays.net)
22:11.54CIA-4003ackis * r72566 10AckisRecipeList/AckisRecipeList.lua:
22:11.54CIA-40AckisRecipeList:
22:11.54CIA-40- fix for reputations
22:20.43CIA-4003xinhuan * r72567 10Routes/ (Locales/Locale-enUS.lua Modules/TomTom.lua Routes.lua):
22:20.43CIA-40Routes:
22:20.44CIA-40- Update Routes taboo regions editing draggable pins to work with Mapster's latest change (making the map toplevel).
22:20.47CIA-40- Switch to using new public TomTom APIs. TomTom integration is not enabled yet as it is not updated in public yet.
22:26.31*** join/#wowace WyriHaximus (n=webmaste@i131220.upc-i.chello.nl)
22:26.31HjalteDoes anyone have a clue what could have caused this error? [2008/05/04 00:15:01-4053-x1]: <string>:"TaskViewer:OnLoad":1: attempt to call global 'TaskViewer_OnLoad' (a nil value)
22:27.09Hjaltenever mind
22:27.11Xinhuanmeans the addon didn't load
22:27.15HjalteI seem to have found the culprit :)
22:27.15Xinhuanproperly
22:27.26HjalteAssignAssist doesn't seem to be quite ready yet
22:33.39*** join/#wowace Chompers (n=Chompers@cpc1-cove9-0-0-cust541.brhm.cable.ntl.com)
22:36.01Aiianeive seen a couple of addons that do IM-style windows for whispers, any recommendations on which seems the most complete/bugfree/clean?
22:36.16nevcairielWIM worked pretty good for me, not sure how it is today
22:36.48HjalteAiiane: If you want something simple, Cellular is quite fine.
22:39.44Aiianejust getting tired of attempting to keep conversations straight when getting spammed with enchanting requests
22:39.49*** join/#wowace Chaud (n=chaudhar@75-136-135-060.dhcp.gnvl.sc.charter.com)
22:40.32Chaudhow can I keep mirc from using the VPN connection every time I connect =\
22:43.07Daemonachaud set a route to the irc server that doesnt use the vpn as gateway aka setting a static route
22:44.05*** join/#wowace Vulcanus (n=Vulcanus@084202194021.customer.alfanett.no)
22:49.07sbnevcairiel: still working fine
22:52.36*** join/#wowace orican (n=orican@60-241-56-168.tpgi.com.au)
22:54.05*** join/#wowace Tuller (n=muffins@c-76-27-160-125.hsd1.va.comcast.net)
22:54.07nevcairielhaha i just got a ingame mail with 50g attached, saying thanks for bartender
22:55.01Stanzillalol
22:55.27TullerI think the last time someone did that, I got 1g
22:56.07nevcairielI put my name and server in the in-game FAQ of BT4
22:56.12nevcairielmaybe more people notice that its me now
22:57.38Polarinanevcairiel: ROFL!!!
22:57.42frywell that's nice!
22:59.51Tulleryeah I had that stuff in a readme before
23:00.10sbTuller: could you please make empty bag space visible when not viewing 'main page'? (search, some category, ...) (combuctor) :o
23:00.22*** join/#wowace kenlyric (n=chatzill@c-68-54-218-192.hsd1.in.comcast.net)
23:00.33sbso you can search for xx-item and still have access to your free bag space
23:04.31*** join/#wowace Vulcanus (n=Vulcanus@084202194021.customer.alfanett.no)
23:05.14StanzillaTuller: have you read my comment on SellFish's wowi page? :)
23:05.53Tullerhrm?
23:07.14mikmaTuller: lol u suxxxxx
23:10.16Tullerright
23:10.21TullerI'd rather not have the tooltips have the same color
23:11.29*** join/#wowace Gandharva (n=Miranda@dslb-084-057-046-187.pools.arcor-ip.net)
23:13.41Hjalteckknight: If someone has the latest Cartographer 2, he will also have LibGuildPositions-1.0 installed, right? - I know this is a repeated question, but now that I am certain to have LibGuildPositions-1.0 installed, I am still unable to see any guild members on the world map.
23:13.57ckknightHjalte: hrm
23:13.59ckknightbug, then
23:14.04ckknightneed to test it more
23:14.10ckknightbut too much irl stuff :-(
23:15.20Hjalteckknight: Oh, I'm sad to hear that. I also posted a bug on jira, that I am receiving almost every time I loot items from my mail or loot items off corpses.
23:15.36Chaudstop looting then!
23:16.05PolarinaHow do I disable LibGuildPositions?
23:16.46ckknightHjalte: k, I'll look into it soon, almost done with this curseforge svn stuff
23:17.06*** join/#wowace Vanduror (n=Who@home.codevision.nl)
23:17.25StanzillaTuller: not the tooltips, just the text. i.e. "Sells for: blah" and "Charactername: blah"
23:17.41TullerStanzilla: I know that :P
23:17.47Stanzillak :P
23:17.58Tullerand I want that to not be the same, because its not the same information :)
23:18.06Tullerone's item count, one's item sell value :)
23:18.21*** join/#wowace Lywellyn (n=lywell@oh-76-1-48-205.dhcp.embarqhsd.net)
23:18.49Stanzillakk
23:19.31*** join/#wowace YammYgirlcoding (n=hoho@201.53.190.87)
23:20.49Lywellyn*sigh* Evil blizzard.  Copied a character days ago, and the wait time just keeps increasing. :(
23:22.24*** join/#wowace Atriace (n=omnizeta@243.9.119.70.cfl.res.rr.com)
23:22.37ckknightP.S. Hjalte, if you find the bug, you'll get a cookie
23:22.57CIA-4003nevcairiel * r72568 10Bartender4/ (Button.lua MicroMenu.lua StanceBar.lua):
23:22.57CIA-40Bartender4:
23:22.57CIA-40- fix hiding of the stance and menu bar
23:22.58CIA-40- fix a bug that was preventing the interaction indicators (highlight/pushed textures) to show up correctly in some cases
23:22.58CIA-40- re-enabled the checked texture for the stance buttons (why was that off <.<)
23:23.26Hjaltestarts dreaming about cookies.
23:24.11[SW]Dodgeckknight: did you started work on new parrot yet?
23:24.26sbckknight: i found what caused my cart3 + LGP issues!
23:24.35sbdont know if it is already fixed
23:24.57Hjaltesb: what error did you have?
23:24.58ckknightwhat was the issue?
23:25.09sbguild members not showing up on map
23:25.25Hjaltesb: I have that as well :)
23:25.54sbckknight: function Cartographer:ShowGuildMember(name, x, y, zone)
23:26.03sbgets "Position" as first arg
23:26.16ckknightoh
23:26.17sbso function Cartographer:ShowGuildMember(somevariablehere, name, x, y, zone) - and it works
23:26.23sbor something else ;)
23:26.29ckknightgoddamn Callback lib
23:26.34ckknightconfused me
23:28.34Hjalteckknight: I did some testing with mail, and I got a much more precise error message now. I'll attach it to the jira bug report :)
23:28.41ckknightokay, it's on gitorious
23:29.11*** join/#wowace chexsum (n=chexsum@CPE-121-222-23-13.qld.bigpond.net.au)
23:29.32*** join/#wowace Demon (n=Corgan@cpe-66-91-6-220.hawaii.res.rr.com)
23:30.22Lywellynwhoa wait....bartender4? :o
23:32.11*** join/#wowace Legorol (n=legorol@stud-nat-blk12.trin.cam.ac.uk)
23:35.11*** join/#wowace Kirkburn (n=Kirkburn@wikia/Kirkburn)
23:36.37ulicLywellyn: yep, just checked the forums myself for more info, looks like it moved to trunk for beta testing
23:42.16*** join/#wowace Kyahx (n=kyahx@97.90.239.118)
23:42.32HjalteAntiarc: Got this error after importing my mains Chatter profile on my alt: http://ace.pastey.net/87158
23:45.48ChaudGL with chatter and profiles =\
23:46.01*** join/#wowace Ellipsis (n=ellipsis@97-113-12-2.tukw.qwest.net)
23:47.55Odlawok, someone wants a macro to cast a spell when he does not hold shift down, i know there is /cast [nomodifier] <spell name> would /cast [nomodifier:shift] <spell> work?
23:48.44*** join/#wowace Kalman|work (n=delay@adsl-76-226-82-53.dsl.sfldmi.sbcglobal.net)
23:50.40*** join/#wowace Lonny (i=Lonny@bzq-179-108-128.static.bezeqint.net)
23:50.59nevcairiellua> #("•")
23:50.59lua_botnevcairiel: 1
23:51.30nevcairiellua> string.byte("•")
23:51.30lua_botnevcairiel: 149
23:52.39*** join/#wowace RaydenUni (n=bozartmp@cpe-74-74-225-9.rochester.res.rr.com)

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