IRC log for #wowace on 20090211

00:01.34ckknightdoes anyone know if it's possible to handle HTTP POSTs with an encoding? I have some data I want to send to the server, but I'd like to gzip it instead of sending it raw. I have control over both the client and server, but is there a proper way to do this?
00:02.05taledendepends on your web server software probably
00:02.39ckknightI have full control
00:02.50taledenI think apache might handle it seamlessly -- detecting the (gzip) encoding header, unzipping, and feeding the resulting stream to the next layer (php? ruby? python? whatever)
00:02.54taledenbut I'm not sure about that
00:03.12taledenI know recent versions of php also have stream handlers which I believe can handle gzip, so if apache doesn't do it you can do it yourself in php
00:03.12ckknightas far as I can tell, no
00:03.24ckknightoh, I better clarify
00:03.27taledencheck your options in apache.conf maybe?  might be disabled by default
00:03.36ckknightI want the request to be encoded, not just the response
00:03.42ckknightthat's the oddity
00:03.45*** join/#wowace fewyn (n=fewyn@249.215.205.68.cfl.res.rr.com)
00:03.46taledenI got that part :)
00:03.56ckknightI can't find anything useful in google :(
00:03.58taledenthe request has headers too, which apache can see
00:04.10taledenso I thought maybe apache would see that the client said the post was gzipped and unzip it on the fly
00:04.11ckknightyea, but Content-Encoding isn't a standard header
00:04.14taledenbefore passing it to the script handler
00:04.19ckknighthmm
00:04.20taledenreally?  even in http 1.1?
00:04.28ckknightyea
00:04.31taledenhm
00:04.35taledenwell
00:04.40ckknightAccept-Encoding is a request thing, and Content-Encoding is in the response
00:04.40taledenyou could roll your own then I guess
00:04.45ckknightbut not in the request
00:04.50ckknightmaybe...
00:04.56taledenpass one POST var that says "gzip=1" and the other "data=..."
00:05.05taleden... being your (base64 encoded?) gzipped data
00:05.10ckknightwell, the content type is x-protobuf
00:05.13ckknightwhich is a binary format
00:05.22ckknightnot urlencoded
00:05.27ckknightno big deal there, though
00:05.36ckknightI can achieve smaller (about 50% savings) by gzipping, I've found
00:05.56taledenwhat's your actual situation?  is it really apache/php?
00:06.01ckknightapache/python
00:06.23taledenand you're not POSTing in the standard urlencoded format?
00:06.28ckknightcorrect
00:06.50taledendoes python have a raw input handler?  i did something similar while writing a json server handler in php
00:07.00ckknightyea, I can handle that all fine
00:07.01taledenthat is, the POST data was json, not urlencoded var=value pairs
00:07.11ckknightI wrote a json parser as well as a protobuf parser
00:07.11thulpython has everything and you should bow your head to the mighty god of pythonian.
00:07.17taledenso in php I did basically fopen("php://input") which is a special tag for php to read its input stream raw
00:07.21taledenand then passed that result to json_decode
00:07.24ckknightand my code is actually gonna be in the next version of werkzeug
00:07.27ckknightso I have that all fine
00:07.33ckknightI could even gunzip right there
00:07.42ckknightI just don't think there's a good, standard way to do this :(
00:07.51taledenI'd say try whatever python's mechanism is to get the raw input stream
00:08.03taledenas if you'd called it on the command line and typed to stdin
00:08.06ckknightI have absolutely no issues getting the raw input stream, taleden
00:08.13ckknightthat's not the issue
00:08.26ckknightit's that this is a fucked up situation and I wish there was a standard way to do this
00:08.28thulhttp://www.youtube.com/watch?v=GgNBhNIbQ_0
00:08.29taleden..so, you can't just feed that stream to a gzip library?
00:08.50sztanpeti think he wants it to interop with browsers
00:08.50taledenwell, as you pointed out, HTTP doesn't give you an encoding/compression header for requests
00:08.54taledenwhich maens, you're right, there's no standard
00:08.58taledenso don't worry about it, roll your own
00:09.18taledendo browsers ever gzip their requests?
00:09.28taledenif there's no HTTP header to indicate that, I can't imagine why any browser would
00:09.29sztanpetno
00:09.31taledensince it couldn't be sure the server would understand
00:10.00taledenso who cares about interop with browsers?  he must have his own client software doing the gzipping, so he can control both ends of it, like he said
00:10.29ckknightyea, I control the client
00:10.36ckknightand this API system won't be accessed through browsers
00:10.37ckknighthmm
00:10.44taledenso who cares about standards?
00:10.48taledenyou've found that no such standard applies
00:10.50taledenso make some shit up that works
00:11.05ckknightanybody know if there's a standard way to specify the content type for something that's gzip'd, while still telling what it is?
00:11.13ckknighti.e. I want to gzip an x-protobuf stream
00:11.15ckknighterr
00:11.17Repo10prat-3-0: 03sylvanaar * r235 / (4 files in 2 directories):
00:11.18ckknightapplication/x-protobuf
00:11.20Reporefactored to Prat:RegisterDropdownButton, which handles the func fixup. it also let me not embed acehook into playernames
00:11.24ckknightwhat does that become?
00:12.31ckknightis there even a standard for a mimetype like that?
00:12.45taledenprobably not
00:12.51taledenseems like an issue of layers
00:12.57taledenyou have an outer layer, which is type "gzipped data"
00:13.02taledenand the inner layer of type "x-protobuf"
00:13.15taledenbut in theory, you might have any number of layers.. maybe base64(gzip(x-protobuf))
00:13.21ckknightit's not base64'd
00:13.26taledenI know, I'm using an example
00:13.28taledenof additional layers
00:13.31ckknightthere's no issues sending binary across the stream
00:13.33ckknightbut yes
00:13.36ckknightthat's what I want to convey
00:13.36taledenbecause once you have more than one layer, there's no reason you might not have 100 layers
00:13.47taledenand I don't know of any standard that handles an arbitrary number of wrapped layers
00:13.50ckknightmaybe I'll just send Content-Encoding along...
00:13.52taledenin the context of HTTP content-types
00:14.23taledenwhatever the outermost layer is, use the standard content-type for that
00:14.33sylvanaarif it isnt html, then it doesnt matter
00:14.34taledenonce it's in the hands of your python script, indicate whatever you want however you want
00:14.42taledenbecause I think you're beyond the scope of standards at that ponit
00:15.09ckknightyea
00:15.12ckknightlousy incomplete standards
00:15.24taledenwell, conservative standards :)
00:15.30sylvanaarhttp defines accept-encoding, because you dont start by sending a huge wad
00:15.36taledencan't anticipate every situation, and layered encodings is a weird one
00:15.44ckknightsylvanaar: but I'm starting out sending a POST
00:15.47sylvanaarright
00:16.08taledenso you tell the webserver how to interpret the POST, in whatever its outermost encoding layer is
00:16.18*** join/#wowace Movix (n=mattes@82.242.144.196)
00:16.22taledenonce the webserver interprets that layer and hands the enclosed data to your script, even if it has further encoding layers, you deal with those yourself
00:16.23sylvanaaris it to a web page?
00:16.29sylvanaaror are you making a web service
00:16.32sylvanaarad hoc
00:16.43ckknightI'd call it a web service
00:16.55sylvanaarthen dont use the http headers
00:17.23taledenwell, I dunno, I'd say use them for that first layer
00:17.37sylvanaaryou own both ends including the URI
00:17.57taledenfor example I recently wrote a client to talk to a credit card processor's web services platform at work, and their first layer is xml based, so I had to send a content-type:application/xml with my requests
00:18.10taledenbut everything after that, the format of the xml post body, was specified by the processor's api
00:18.30taledenand they basically made up whatever was convenient for them, cuz it sure didn't look like any of the other payment processor api's I've seen, they're all different at that layer
00:19.10sylvanaarare you doing something similar to webhooks?
00:26.40Repo10broker-currency: 03Azethoth * r53 core.lua: -- Fix init crasher
00:32.08Repo10prat-3-0: 03sylvanaar * r236 modules/ChatTabs.lua: fixed call of UnhookScript to call Unhook
00:33.09*** join/#wowace Anaral (n=Anaral@WoWUIDev/Norganna/QA-Engineer/Anaral)
00:42.23*** join/#wowace Nenue (n=Radio@cpe-72-227-95-124.maine.res.rr.com)
00:43.01taledenanyone know a comprehensive list of disorient and stun effect names?
00:43.35*** join/#wowace rapidgame (n=rapidgam@60-234-223-209.bitstream.orcon.net.nz)
00:44.42rapidgameanyone here have mediawiki experience?
00:45.21*** part/#wowace lmeyer (n=lars@dslb-082-083-198-246.pools.arcor-ip.net)
00:47.03Repo10prat-3-0: 03sylvanaar * r237 modules/ChatTabs.lua: fix an error message - lets hope there arent more
00:51.04ckknighttaleden: I decided to send it as application/x-protobuf-gzip
00:51.04ckknight:P
00:51.42taleden:)
00:54.10Repo10prat-3-0: 03sylvanaar * r238 modules/AltNames.lua: verified #94 is working. fixed a bug i introduced a min ago
00:55.56Repo10prat-3-0: 03sylvanaar 043.0.3 * r239 : Tagging as 3.0.3 ... finally
00:56.04Torhalckknight: ChickenWire. Go, go, go!
00:56.25ckknightbut I'm working on client-server binary transfer with compression
00:56.33ckknightdoesn't that sound like more fun?
00:56.44TorhalDoes it involve nekkid chicks bellydancing?
00:56.59sylvanaarcant you just reuse something already written
00:57.18sylvanaarthere are 1 million different X over HTTP implementations
00:57.54ckknightsylvanaar: what would I reuse?
00:58.14ckknightthat is not inferior to what I have, that is
00:58.19sylvanaarhaha
00:59.17sylvanaarwell, not knowing all the specifics, i just posed the question in general
00:59.51ckknightI'm using protobuf
00:59.54ckknightsupporting it is not hard
01:01.18ckknightI just wanted to support gzipped POST requests, which is a nonstandard thing
01:03.49sylvanaaryeah, i wonder how its done for web services, or if it is
01:04.27ckknightpretty sure it's just not done
01:08.00fewyni'm looking for an addon that can auto accept invites from certain people? someone told me an addon called automator but i can't find it anywhere
01:08.07ckknightAutomaton
01:08.08ckknightmaybe
01:15.30*** join/#wowace Wobin (n=Wobin@203-158-45-155.dyn.iinet.net.au)
01:15.30*** mode/#wowace [+v Wobin] by ChanServ
01:17.47taledendoes any event fire when entering or leaving an arena match or bg?
01:18.02GreltokPLAYER_ENTERING_WORLD
01:18.40taledenhm
01:18.59taledenIsActiveBattlefieldArena() apparently returns false during setup, only true after it begins, so it probably won't be ready yet at P_E_W
01:19.21GreltokHow about select( 2, IsInInstance() )?
01:19.34Greltoklocal instanceType = select( 2, IsInInstance() )
01:19.39Greltokif instanceType == "pvp" or instanceType == "arena" then
01:19.43taledenhmm
01:19.44taledenthat might do it
01:20.48GreltokIf a player moves from one BG directly to another (through being queued), then the only event fired is PLAYER_ENTERING_WORLD, afaik.
01:21.18ArrowmasterZONE_CHANGED_NEW_AREA should fire
01:21.22GreltokWell, RAID_ROSTER_UPDATE may fire too.
01:21.44Primeryou're fired
01:22.01taledenP_E_W is fine as long as IsInInstance() returns current data immediately
01:22.23GreltokI believe it does.
01:22.27taledencool
01:22.37Arrowmasteri think it does most of the time, it might have had a race condition before
01:22.38GreltokOr at least I've not noticed that it doesn't. ;)
01:24.45Arrowmasterhttp://wow.curseforge.com/projects/handynotes_lunarelders/
01:24.48Arrowmasterheh a little late
01:25.34*** join/#wowace PProvost (n=PProvost@WoWUIDev/WAU/Admin/Pprovost)
01:25.34*** mode/#wowace [+v PProvost] by ChanServ
01:27.11RaydenUniwhen you guys do Heigen, does someone always play the "We Can Dance" song?
01:27.30taledenno but I wish someone would, it might remind people to not such
01:27.32taledensuck*
01:27.35RaydenUnihttp://www.youtube.com/watch?v=HcOZ6xFxJqg
01:27.38taledenstill never done that without 5 deaths
01:27.45RaydenUniit's pretty epic
01:27.48RaydenUnii tanked it last time
01:27.54RaydenUnii'm good at tanking heigen apparently
01:28.10taledenour tanks do fine, its just our melee that always get themselves killed
01:28.17Arrowmasterdid anybody else get a PM on the wowace forums about a job openning
01:28.22taledenor rather, sometimes kill themselves, sometimes get killed by lazy dispellers
01:29.03taledenwas it from that one shady dude who posted about his NDA and his special quakecon contacts?
01:29.29Arrowmasterno it was from an account thats never made any forum posts
01:29.41RaydenUniSafety Dance is the name of the song
01:29.52GreltokIt sounds legit.  You should send him your credit card number.
01:30.06Arrowmasterit actually is legit
01:30.14Arrowmasterjust shady way of advertising
01:30.25Arrowmasterwondering if i was singled out or if it was spam
01:30.45taledenyou're a special snowflake arrowmaster, it was an offer for you and only you
01:30.54Arrowmasteri didnt mean that
01:31.01GreltokAye, probably as a motivational speaker.
01:31.47Arrowmasteri ment if it was only sent to preselected people or if it really was spam that they tried to send to everybody including the non programmers
01:33.19RaydenUnii didn't get it
01:33.33Arrowmasterok BioWare has officially died as being a quality game developer
01:33.36Arrowmasterhttps://jobs.ea.com/jobs/jobposting.aspx?refresh=1&postid=a0z50000000Hnb1
01:33.46Arrowmaster'Develop and debug in-game user interface systems based upon our technical design requirements, using ActionScript. '
01:34.01RaydenUnifor using flash for their gui?
01:34.09RaydenUniwhy not?
01:34.15Arrowmasterbecause its fucking retarded?
01:34.19RaydenUniwhy?
01:34.24Arrowmasterits flash
01:34.28RaydenUniok, and?
01:34.33ArrowmasterITS FLASH
01:34.38RaydenUniflash it's good for art and stuff like that
01:34.41RaydenUniis*
01:34.53Arrowmasteron the web maybe
01:34.58RaydenUniwhy not in games?
01:35.00Arrowmasterbut as a game gui
01:35.07ArrowmasterITS FUCKING FLASH
01:35.10RaydenUniand?
01:35.15RaydenUniwe considered using flash for our game
01:35.19Arrowmasterwhy the fuck would you embed flash into your game
01:35.25Arrowmasterits fucking retarded
01:35.25RaydenUnibut the guy doing the gui wanted to dig into it and write his own framework
01:35.56RaydenUniit's not like your gui has to be uber fast
01:36.22RaydenUnigosh darn it
01:36.30RaydenUnii watched the last episode of Big Bang Theory without realizing it
01:36.36RaydenUninow 10 episodes are ruined
01:36.37RaydenUnidamn it
01:38.03*** join/#wowace FtH|Daemona (n=koaschte@i59F625D9.versanet.de)
01:44.55Repo10morg-dkp2: 03Morgalm * r51 / (5 files in 4 directories): MorgDKP2
01:44.59Repo-WEB! added compatibility fix for eqdkp1.4 plugin (thx kalem)
01:45.03Repo-fixed bidwar mode not showing member dkp in bidtip
01:45.04Repo-updated ruRU (thx Mehanic)
01:47.27Repo10morg-dkp2: 03Morgalm 04v3.0 * r52 : Tagging as v3.0
01:48.34*** join/#wowace sacarasc_ (i=sacarasc@cpc2-kemp3-0-0-cust161.lutn.cable.ntl.com)
01:50.56Repo10grid-auto-frame-size: 03CrazyBenny 042.2.2 * r53 : Tagging as 2.2.2
01:59.25pompyRaydenUni: owned
01:59.51RaydenUniit's not like i'm going to wonder how it all ends now
01:59.52RaydenUnidamnit
02:01.09Hirsutesylvanaar: You been notified of the errors with the update to Prat an hour ago?
02:03.05sylvanaardid you exit your game and restart?
02:03.27Hirsutesylvanaar: Was updated while I was out of game, have since exited and restarted more than ones.
02:03.30Hirsutes/ones/once
02:03.49sylvanaarpretty sure its working, what error
02:04.18Hirsutehttp://www.pastey.net/108073
02:04.39sylvanaarexit and restart game
02:04.56HirsuteOkay, I'll do it again. *shrug*
02:05.06sylvanaarmaybe my fault hold on
02:07.15*** join/#wowace Dark_Elf (n=Dark_Elf@ip165.net253.mw.net)
02:07.54Repo10prat-3-0: 03sylvanaar * r240 services/unitpopupmenus.lua: missing file - meh
02:08.16sylvanaari blame the CC for deleting my working copy
02:08.22HirsuteAh.  Thanks sylvanaar!
02:09.38Repo10prat-3-0: 03sylvanaar 043.0.4 * r241 : Tagging as 3.0.4
02:13.50*** join/#wowace Bibi (n=Bibi@unaffiliated/bibi)
02:13.52sylvanaarHirsute work now?
02:14.23Hirsutesylvanaar: checking right now
02:17.20Hirsutesylvanaar: Yep, golden.
02:18.45*** join/#wowace ckknight (n=ckknight@WoWUIDev/WoWAce/CurseStaff/CurseForge/ckknight)
02:18.45*** mode/#wowace [+o ckknight] by ChanServ
02:20.34Arrowmasterhttp://www.wowace.com/projects/cartographer/tickets/99-carthographer/
02:20.36Arrowmaster...........
02:22.01NeoTronArrowmaster: how... wow
02:22.27Dark_Elflooks like problem with damagemeters to me
02:23.45Arrowmasterckknight: why do new tickets always get assigned to the project manager by default?
02:24.30taledenwho else would they get assigned to?
02:25.08Arrowmasternobody
02:25.38taledenmakes sense to me to assign it to somebody to start with, so that person gets a notification (once those are fixed, anyway)
02:26.03taledenand presumably the project manager would be the one choosing who else to assign it to instead
02:26.03Arrowmasterdoesnt make sense when that person doesnt work on the project anymore
02:26.10taledenthen why are they the manager?
02:26.16Arrowmasterbecause its their project
02:27.12taledenif they're not working on it, seems to me they should assign a new manager
02:27.29Arrowmasterits still their project
02:27.47taledenwell, they can either pay attention and have it be their project, or not pay attention and then.. is it really their project?
02:28.00Arrowmasteryes its still their project
02:31.18*** join/#wowace syeren (i=syeren@cpc1-oldh5-0-0-cust719.manc.cable.ntl.com)
02:31.37Arrowmasterand this is why i hate Swatter
02:31.38Arrowmasterhttp://www.wowace.com/projects/cartographer/tickets/95-error-when-logging-in/
02:36.21TorhalArrowmaster: Any time someone sends me an error log with Swatter in it, I tell them I can't help them because the log is useless.
02:36.42TorhalAnd WTF is DingoII?
02:40.32*** join/#wowace Movix (n=mattes@82.242.144.196)
02:42.20*** join/#wowace Ironhand (i=x@xyx.nl)
02:48.50*** join/#wowace sacarasc (i=sacarasc@cpc2-kemp3-0-0-cust161.lutn.cable.ntl.com)
02:48.52pompyhm my friend just told me that in phase 2 on malygos, he came down and jus meleed the group. hm.
02:49.29Xinhuanknown bug
02:49.33Xinhuanwipe and try again ;p
02:50.23*** join/#wowace TNSe (n=evil@cm-84.212.153.14.getinternet.no)
02:54.10*** join/#wowace sacarasc (i=sacarasc@cpc2-kemp3-0-0-cust161.lutn.cable.ntl.com)
02:54.19NechcknTorhal  internal version name
03:00.57*** join/#wowace Matrix110| (i=Matrix11@pD957D6A8.dip.t-dialin.net)
03:05.48RaydenUnipfft
03:05.52RaydenUniknow the trash before faerlina?
03:06.00RaydenUnithe caster that cast in groups?
03:06.07RaydenUnii pulled two groups and all the healers flipped out
03:06.08RaydenUni:(
03:06.12RaydenUnii'm not allowed to do that anymore
03:06.37Arrowmasterwe pulled the entire room once
03:07.09RaydenUnii told everyone i was going to pull 2 groups
03:07.12RaydenUnithey all said let's not
03:07.14RaydenUniso i did anyways
03:07.17RaydenUnionly one person died!
03:07.27RaydenUnibut apparently all the healers blew their cooldowns
03:07.55TradeMarkit's cake on 10-man
03:08.00Xinhuano_O
03:08.04Xinhuanwe pull the whole room at one go
03:08.09TradeMarkbut yeah a lot of damage in 25
03:08.20Arrowmasterwe did it on 25
03:31.25*** join/#wowace Matrix110| (i=Matrix11@pD957C74D.dip.t-dialin.net)
03:32.53*** join/#wowace Cyrez_ (n=thecyrez@c-67-161-63-60.hsd1.ca.comcast.net)
03:33.48*** join/#wowace evl (n=evl@c85-196-101-98.static.sdsl.no)
03:36.43*** join/#wowace mjc (n=mjc@c-66-176-165-198.hsd1.fl.comcast.net)
03:37.42*** join/#wowace bien| (n=bien@pD9E6BCB9.dip.t-dialin.net)
03:48.10*** join/#wowace Tones (n=IceChat7@c-68-41-84-228.hsd1.mi.comcast.net)
03:49.26TonesANYONE IN HERE?
03:49.37TonesRAR CAPS
03:55.04*** part/#wowace ddollar (n=ddollar@unaffiliated/daved)
04:03.58*** join/#wowace cloudwolf (n=cloudwol@c-76-22-101-49.hsd1.wa.comcast.net)
04:04.44Repo10auctionlite: 03MerialKilrogg * r49 / (4 files in 1 directory): Allow getAll queries.
04:19.57*** join/#wowace TradeMark (n=trademar@ip-118-90-41-202.xdsl.xnet.co.nz)
04:22.15*** join/#wowace Thelyna (n=burp@222-152-8-215.jetstream.xtra.co.nz)
04:30.49*** join/#wowace nywef (n=fewyn@249.215.205.68.cfl.res.rr.com)
04:34.53*** join/#wowace Arrowmaster` (n=Arrow@WoWUIDev/WoWAce/ResponsibleForEverythingAndNothing/Arrowmaster)
04:40.52*** join/#wowace WobWork (n=Wobin@203-158-45-155.dyn.iinet.net.au)
04:40.52*** mode/#wowace [+v WobWork] by ChanServ
04:41.08*** join/#wowace Wobin (n=Wobin@203-158-45-155.dyn.iinet.net.au)
04:41.08*** mode/#wowace [+v Wobin] by ChanServ
04:43.53*** join/#wowace Next96 (i=Next96@121.129.140.168)
04:52.36RaydenUniheigan is hard with only one person who can get rid of disease
05:03.59*** join/#wowace NightHawkTheSan1 (n=jonathan@65-102-139-93.tukw.qwest.net)
05:06.05*** join/#wowace Aurica (i=Silowyi@24-155-117-69.dyn.grandenetworks.net)
05:08.35*** join/#wowace wallen (i=wallen@78.134.21.2)
05:09.33*** join/#wowace TNSe (n=evil@cm-84.212.153.14.getinternet.no) [NETSPLIT VICTIM]
05:09.33*** join/#wowace Zyndrome (n=faggotry@81-233-206-163-no89.tbcn.telia.com)
05:09.34*** join/#wowace Xinhuan (n=xinhuan@WoWUIDev/WoWAce/xinhuan)
05:09.34*** join/#wowace keias (i=bleh@c-69-245-244-213.hsd1.in.comcast.net)
05:09.34*** join/#wowace falconindy (n=dave@cpe-72-224-61-75.nycap.res.rr.com) [NETSPLIT VICTIM]
05:09.34*** join/#wowace p4aved (n=dave@123-243-26-39.static.tpgi.com.au) [NETSPLIT VICTIM]
05:09.34*** join/#wowace Shadowed (n=outlaw@c-69-181-37-145.hsd1.ca.comcast.net)
05:09.34*** join/#wowace Kemayo (n=kemayo@pool-71-104-213-131.lsanca.dsl-w.verizon.net)
05:09.34*** join/#wowace Jygga (i=Jygga@port-212-202-202-32.dynamic.qsc.de) [NETSPLIT VICTIM]
05:09.34*** join/#wowace Droolio (n=drool@87-194-188-170.bethere.co.uk)
05:09.34*** join/#wowace Civrock (n=Civrock@24-182-64-044.dhcp.hckr.nc.charter.com) [NETSPLIT VICTIM]
05:09.34*** join/#wowace renchap (n=renchap@mara.renchap.com) [NETSPLIT VICTIM]
05:09.34*** join/#wowace Bruners (i=lasseb@colargol.tihlde.org)
05:09.35*** join/#wowace Cryect (n=fefsd@c-76-97-244-212.hsd1.ga.comcast.net) [NETSPLIT VICTIM]
05:09.35*** join/#wowace qvr (i=qvr@ip6.mmh.iki.fi) [NETSPLIT VICTIM]
05:09.35*** mode/#wowace [+v Kemayo] by irc.freenode.net
05:09.59*** join/#wowace rbarreiros (n=brandon@a81-84-28-246.cpe.netcabo.pt)
05:10.26*** join/#wowace thul_ (i=thul@82.116.79.87)
05:12.06*** join/#wowace Repo (n=supybot@69.57.184.216)
05:16.54*** join/#wowace Repo (n=supybot@69.57.184.216)
05:18.15*** join/#wowace kd3 (n=kd3@wikia/kaydeethree)
05:20.08*** join/#wowace TradeMark (n=trademar@ip-118-90-41-202.xdsl.xnet.co.nz)
05:20.26*** join/#wowace cloudwolf (n=cloudwol@c-76-22-101-49.hsd1.wa.comcast.net) [NETSPLIT VICTIM]
05:23.26*** join/#wowace Wobin (n=Wobin@203-158-45-155.dyn.iinet.net.au)
05:23.27*** join/#wowace Vegeta]BT[ (n=Vegeta-G@xdsl-92-252-42-4.dip.osnanet.de) [NETSPLIT VICTIM]
05:23.27*** join/#wowace Taroven (n=chatzill@FL-ESR1-69-61-177-254.fuse.net)
05:23.27*** join/#wowace Gngsk (n=Gngsk@c-69-138-214-242.hsd1.md.comcast.net)
05:23.27*** join/#wowace cog|away (n=cogwheel@WoWUIDev/WoWProgramming/morlando/cogwheel)
05:23.27*** join/#wowace NivFreak (n=niv@gw-105.extranet.sea01.isilon.com) [NETSPLIT VICTIM]
05:23.27*** join/#wowace Random (n=Denial@unaffiliated/windaria)
05:23.27*** join/#wowace SunTsu (n=miyamoto@cl-1212.ham-01.de.sixxs.net) [NETSPLIT VICTIM]
05:23.27*** join/#wowace Pneumatus (n=WiN@unaffiliated/pneumatus)
05:23.27*** join/#wowace Dotoff (i=Dotted@bureaucrat.wowwiki.dk)
05:23.27*** join/#wowace Primer (n=vi@ns1.mcdownloads.com) [NETSPLIT VICTIM]
05:23.27*** join/#wowace Pucmel (n=npucmel@dwarf.dkm.cz) [NETSPLIT VICTIM]
05:23.27*** join/#wowace tz8 (n=tjanssen@protagonist.faked.org) [NETSPLIT VICTIM]
05:23.28*** join/#wowace steev (n=steev@gentoo/developer/steev) [NETSPLIT VICTIM]
05:23.28*** join/#wowace ReAn (n=rean@d137-186-231-119.abhsia.telus.net)
05:23.28*** join/#wowace Industrial (n=Industri@194.145.194.227)
05:23.28*** join/#wowace pentium166 (n=pentium1@d146-30-30.home1.cgocable.net) [NETSPLIT VICTIM]
05:23.37*** mode/#wowace [+v Wobin] by irc.freenode.net
05:24.48*** join/#wowace Groktar (n=gr@adsl-69-110-90-49.dsl.pltn13.pacbell.net)
05:24.56Groktartwilight vanquisher groktar, yay
05:30.47*** part/#wowace Seerah (n=Ryan_L@adsl-177-35-246.mem.bellsouth.net)
05:30.59TorhalZhinjio: Feh.
05:37.46*** join/#wowace duaiwe (n=jonathan@65-102-139-93.tukw.qwest.net)
05:46.00*** join/#wowace HolgerDK (n=markj@0x57372ad4.nfnqu1.dynamic.dsl.tele.dk)
05:59.59Repo10luamodule: 03sylvanaar * r10 / (3 files in 1 directory): recoded to use  compat5.1 as the base code.
06:01.40*** join/#wowace duaiwe (n=jonathan@65-102-139-93.tukw.qwest.net)
06:02.07Groktarno deaths on 3d, either
06:11.23Repo10auracle: 03taleden * r30 / (5 files in 1 directory):  (Message trimmed by 1 line)
06:11.26Repo- (hopefully) fixed a bug that caused saved variables to not update correctly from addon version 0.2.3 to 0.3.x
06:11.29Repo- fixed a bug that caused changes to window visibility by group and combat status to not take effect immediately
06:11.33Repo- window styles may now set scale and opacity, which will be inherited by trackers
06:11.35Repo- windows may now set visibility based on instance type (none,battleground,arena,5man,raid)
06:11.54Repo10auracle: 03taleden 040.3.2-beta * r31 : Tagging as 0.3.2-beta
06:15.27*** join/#wowace WoW-Bot (n=WoW-Bot@pool-71-179-90-251.bltmmd.fios.verizon.net)
06:19.03*** join/#wowace Hell-Razor (n=Unknown@unaffiliated/hell-razor)
06:23.05*** join/#wowace Vilkku (n=Vilkku@dsl-tkubrasgw1-fe22fa00-138.dhcp.inet.fi)
06:26.27Torhaltaleden: Why the "hopefully"?
06:27.56*** join/#wowace Aii (n=Aiiane@knuth.cs.hmc.edu)
06:28.04*** join/#wowace Vangual (i=d5ada582@pdpc/supporter/active/vangual)
06:33.47*** join/#wowace orionshock (n=chatzill@ip68-225-195-1.ph.ph.cox.net)
06:34.14taledencuz I've been trying to fix that bug for like 5 revisions now
06:34.19taledenand haven't gotten it right yet :)
06:34.31taledenit only affects people who ran 0.2.3 before upgrading to 0.3.0, but still
06:34.48orionshock?
06:35.27Torhaltaleden: Have you tried installing 0.2.3 and upgrading from there?
06:35.35taledenit has to do with updating the saved vars table structure between versions, when the structure changes
06:35.36TorhalOnly way to be sure, methinks.
06:37.10orionshocktaleden: easy, just add in a version field to the sv table.. if it's not there or less than the last stable then redo the db structure.
06:38.04taledenorion: that's what I did
06:38.04taledenoriginally
06:38.04taledenbut I forgot that acedb doesn't actually store anything that matches its defaults table
06:38.11taledenand I had the version in the defaults, so it was never stored, so every upgrade it magically became the new default
06:39.54*** join/#wowace Arrowmaster (n=Arrow@WoWUIDev/WoWAce/ResponsibleForEverythingAndNothing/Arrowmaster)
06:41.09*** join/#wowace Zyndrome (n=faggotry@81-233-206-163-no89.tbcn.telia.com)
06:42.05orionshocklol
06:42.20orionshockcheck out guild craft's core file for the way i did it :)
06:44.02*** join/#wowace Zynderps (n=faggotry@81-233-206-163-no89.tbcn.telia.com)
06:45.21*** join/#wowace Arrowmaster (n=Arrow@WoWUIDev/WoWAce/ResponsibleForEverythingAndNothing/Arrowmaster)
06:50.17Brunerswhy is that kmcguire dude taging every commit, he cant even had time to test what he changed before he tags
07:03.16*** join/#wowace Fatalus (n=gaben@68-188-68-189.dhcp.stls.mo.charter.com)
07:07.13*** join/#wowace Cheads (i=chead@0x573bcdc3.henqu2.dynamic.dsl.tele.dk)
07:08.19*** join/#wowace Nahkiss (n=nahkiss@a91-154-34-216.elisa-laajakaista.fi)
07:09.36*** join/#wowace Maelos (n=rafi@rrcs-24-199-0-50.west.biz.rr.com)
07:11.37*** join/#wowace p3lim (n=p3lim@084202164112.customer.alfanett.no)
07:16.24*** join/#wowace [1]thinkong (n=thinkong@59.10.77.243)
07:22.38*** join/#wowace Arrowmaster` (n=Arrow@WoWUIDev/WoWAce/ResponsibleForEverythingAndNothing/Arrowmaster)
07:25.11*** join/#wowace NightHawkTheSan1 (n=jonathan@65-102-139-93.tukw.qwest.net)
07:26.50*** join/#wowace Elkano (n=elkano@WoWUIDev/WoWAce/Elkano)
07:36.45*** join/#wowace evl (n=evl@c85-196-101-98.static.sdsl.no)
07:45.17*** join/#wowace evl (n=evl@c85-196-101-98.static.sdsl.no)
07:53.45*** part/#wowace falconindy (n=dave@cpe-72-224-61-75.nycap.res.rr.com)
07:57.30*** join/#wowace sacarasc (i=sacarasc@cpc2-kemp3-0-0-cust161.lutn.cable.ntl.com)
08:03.32Repo10fu-bar_skills-plus-fu: 03Jaydehawk 04v3.0.5 * r128 : Tagging as v3.0.5
08:04.09*** join/#wowace NightHawkTheSan1 (n=jonathan@65-102-139-93.tukw.qwest.net)
08:04.50*** join/#wowace evl (n=evl@195.159.161.2)
08:10.07*** join/#wowace Miyagui (n=nnscript@190.232.187.7)
08:11.17*** join/#wowace WalkerBoh (n=sam@bravocharlie.mcky203.eiu.edu)
08:14.02*** join/#wowace plexiglass (n=plx@85-18-78-55.ip.fastwebnet.it)
08:14.39*** join/#wowace Zeksie (n=zeksie@cpc2-nott9-0-0-cust211.nott.cable.ntl.com)
08:21.16*** join/#wowace Taladris (i=Taladris@c-65-96-121-76.hsd1.ma.comcast.net)
08:25.13*** join/#wowace Kalroth (n=kalroth@0x573f1066.hjnqu1.static.dsl.tele.dk)
08:26.25Repo10gnomishyellowpages: 03lilsparky * r31 / (11 files in 2 directories):  (Message trimmed by 1 line)
08:26.28Repoadded new custom artwork
08:26.31Repospellid list now included for current build -- scanning remains as a fail-safe for out-of-data spellid list
08:26.34Repochanged keyboard handling to only take keyboard focus when ctrl is pressed
08:26.37Repoctrl-x deletes
08:29.12*** join/#wowace Srosh (n=Srosh@c222004.adsl.hansenet.de)
08:33.01*** join/#wowace nevcairiel (i=nevcairi@WoWUIDev/WoWAce/Ace3/nevcairiel)
08:33.01*** mode/#wowace [+o nevcairiel] by ChanServ
08:39.08*** join/#wowace Mackatack (n=mackatac@92.64.15.170)
08:40.21*** join/#wowace pb_ee1 (n=nospam@meilleu015869-2.clients.easynet.fr)
08:41.01*** join/#wowace MoonWolf (n=MoonWolf@dhcp-077-250-125-249.chello.nl)
08:41.02*** mode/#wowace [+o MoonWolf] by ChanServ
08:44.06*** join/#wowace Windaria (n=Denial@unaffiliated/windaria)
08:50.41mitch0the license info doesn't seem to propagate from wowace to curse. is that a known issue? (or does anybody care at all? :)
08:52.00*** join/#wowace Worf (n=worf@84-119-46-51.dynamic.xdsl-line.inode.at)
09:03.51Repo10morg-dkp2: 03Morgalm * r53 / (4 files in 2 directories): MorgDKP2
09:03.54Repo-fixed rare loot closed nil error
09:03.57Repo-fixed rare raidtracker nil error
09:04.00Repo-removed rounding from zerosum module
09:04.31Repo10morg-dkp2: 03Morgalm 04v3.1 * r54 : Tagging as v3.1
09:10.00Fisker-pastamancer aka spaghettimancer?
09:11.04*** join/#wowace EvilJohn (n=eviljohn@99-16-140-147.lightspeed.austtx.sbcglobal.net)
09:12.55*** join/#wowace Megalon (n=starfox@d90-129-192-33.cust.tele2.at)
09:12.55*** join/#wowace NeoTron_ (n=neotron@c-67-170-9-10.hsd1.wa.comcast.net)
09:20.38*** join/#wowace Sliker_Hawk (i=SlikerHa@5ad83aef.bb.sky.com)
09:27.12*** join/#wowace Sirow (n=Sirow001@p57A4D4C6.dip.t-dialin.net)
09:35.34*** join/#wowace Wraithan (n=wraithan@c-76-105-137-246.hsd1.or.comcast.net)
09:48.59*** join/#wowace rbarreiros (n=brandon@a81-84-28-246.cpe.netcabo.pt)
09:49.48Repo10gnomishyellowpages: 03lilsparky * r32 / (2 files in 1 directory): fixed link activation
09:53.02*** join/#wowace lmeyer (n=lars@dslb-082-083-198-246.pools.arcor-ip.net)
09:56.50*** join/#wowace EvilJohn- (n=eviljohn@99-16-140-147.lightspeed.austtx.sbcglobal.net)
09:57.53*** join/#wowace Higdur (n=nike@nl119-202-155.student.uu.se)
10:02.29Repo10fu-bar_skills-plus-fu: 03Jaydehawk * r129 / (3 files in 1 directory): FuBar_SkillsPlusFu:
10:02.32Repo- 3.0.6 - added cooldowns for Mooshroud, Ebonweave, Spellweave and Icy Prism (serious2)
10:03.06*** join/#wowace Natherul (n=Natherul@81-229-191-248-no31.tbcn.telia.com)
10:06.56Elkanoomg ^^ http://projects.sfmedialabs.com/?p=3
10:10.35*** join/#wowace Fisker- (i=ballmer@62.61.142.209.generic-hostname.arrownet.dk)
10:11.31winkillerAckis: ping
10:13.01Primerwow
10:13.06Primerdude just handed me mats for a high level enchant and I just DC'd
10:13.16Primerand I can't reconnect
10:13.21Primerand I want to go to bed
10:13.34sacarascHah
10:14.20nevcairiellol
10:14.38Shefkinevcairiel: Just the person I wanted to bug.
10:15.03ShefkiCan you look at this:
10:15.04Shefkihttp://www.wowace.com/projects/ace3/tickets/23-confirm-on-a-select-config-entry-misbehaves/
10:16.38*** join/#wowace LANFiRE (n=lanfire@ppp91-77-131-80.pppoe.mtu-net.ru)
10:19.30*** join/#wowace Vangual (i=d5ada582@pdpc/supporter/active/vangual)
10:25.27*** join/#wowace nuoHep` (n=nuoHep@89.222.156.36)
10:25.32*** join/#wowace Vangual_ (i=d5ada582@pdpc/supporter/active/vangual)
10:29.27nevcairielShefki: I'll take a look
10:34.30Shefkinevcairiel: There's a patch, but I'm not sure if that's exactly the proper solution.
10:34.58ShefkiIt certainly fixes it for me.  But it probably is not desireable for some control types.
10:37.20ShefkiIncidentally, I've probably found a way to cause the Dropdown control to crash wow in PB4.
10:37.29ShefkiOnly seems to happen on Windows though.
10:38.36Brunerswtf, some retard is undercutting me with 30g on gems ><
10:39.09ShefkiThere's a guy in my guild who undercuts other guild members by 40g on gems.
10:39.18ShefkiThere's some quality drama for you.
10:45.59nevcairielShefki: yeah your patch is a rather radical attempt at fixing it, heh
10:52.49Brunersanyone got a half decent retri paladin key layout?
10:52.52*** join/#wowace sztanphet (n=sztanpet@142.58ec54.tvnetwork.hu)
11:00.07winkiller1 autoattack
11:00.10winkiller2 autoattack
11:00.13winkiller3 autoattack
11:00.22winkillerWASD - movement
11:01.24Brunersone million seals and judgements now :S
11:01.26sacarasc5 pewpewpew
11:02.19*** join/#wowace [fd] (i=c3d41d53@gateway/web/ajax/mibbit.com/x-7e312bf1068fb57c)
11:04.25Megalonone millions seals
11:04.33Megalonbut you only use one, so who cares
11:04.52Megalon:7
11:14.24hastewhy play with WASD, when you can play with FRST!
11:16.22*** join/#wowace eoM_rM (n=moe@p5489DA1A.dip.t-dialin.net)
11:16.54quiescenso.o
11:22.23Brunershaste: FRST ?
11:22.35hastedifferent keyboard layout :p
11:22.39hastesame as ESDF
11:27.56*** join/#wowace Camci (n=enescamc@ua-83-227-134-226.cust.bredbandsbolaget.se)
11:28.39*** part/#wowace Vangual_ (i=d5ada582@pdpc/supporter/active/vangual)
11:28.53*** join/#wowace spudmonkey (n=bob@adsl-71-145-177-189.dsl.austtx.sbcglobal.net)
11:36.11*** join/#wowace faCe| (n=face@p5489DA1A.dip.t-dialin.net)
11:45.43*** join/#wowace Kalroth (n=kalroth@0x573f1066.hjnqu1.static.dsl.tele.dk)
11:49.38*** join/#wowace Sliker_Hawk (i=SlikerHa@5ad83aef.bb.sky.com)
11:57.25Brunershaste: what retarded layout is that? :P
11:58.06*** join/#wowace pulls (n=pulls@c-45e9e255.021-40-6b736411.cust.bredbandsbolaget.se)
12:01.48Grumlol indeed it doesnt match up with any i can find ^^
12:02.38hasteBruners: colemak
12:03.18Brunersnever heard of
12:03.43hasteit be nice :3
12:03.55Brunersi have tried to use dvorak
12:04.11Brunersbut i gave up after a week
12:04.12Bruners:P
12:05.10*** join/#wowace Venara (n=venara@p5B3F6146.dip.t-dialin.net)
12:05.17*** join/#wowace sztanpet (n=sztanpet@142.58ec54.tvnetwork.hu)
12:05.28Brunershaste: is there øæå ?
12:07.15hastenot easily
12:07.44hasteusing qwerty positions: altgr+r = ø, altgr+w=å, altgr+z=æ
12:08.02hastea friend of mine uses a modified layout which is better for norwegian tho'
12:08.35thul_why is it that some nations, like norway for instance, forbid pro boxing, beacause 15-40% of pro boxers have sympthoms of brain damage (most of those, very mild damage), while smoking is legal with the justification: "people have to have the freedom to make their own choices, also stupid ones" ?
12:09.16nevcairielYou don't show people smoking as entertainment
12:09.23Brunersits violence
12:09.38Megalonk1 fight club!
12:10.15thulwell, "it is violence" or "it is entertainment" are very value-base opinions. A bit "good god fearing christians should not..." etc :-P
12:10.23Brunerswhy is it so that some nations forbid snus but allows pro boxing? :P
12:10.57Brunersand smoking
12:11.56thulwell, that is the kind of paradoxic rule-making that I do not understand.
12:13.04Xinhuanwoo 100 wintergrasp wins done
12:13.13Xinhuanalso i think blizz increased the VoA mount drop rate this patch
12:13.19Xinhuani saw/heard at least 5 drop today
12:13.30Xinhuanon my faction/server
12:13.36Brunersi havent even done 10 wintergrasps
12:13.49nevcairielVoA?
12:14.01Cheadshaven't gotten one single drop from VoA yet.. for some odd reason
12:14.02nevcairielthere drops a mount?
12:14.33WobinVoA drops a mount?
12:14.44Xinhuanya
12:14.45Xinhuanalways has
12:14.48Xinhuanwas 1% before patch
12:14.55Xinhuanafter patch it seems more like 5% now
12:15.04nevcairielwowhead doesnt even know about it
12:15.08Xinhuanit does
12:15.16Xinhuanhttp://www.wowhead.com/?item=43959
12:15.25Xinhuansee date of first comment
12:15.50Brunersaha
12:15.56Brunersso thats where the grand mammoth comes from
12:17.00nevcairieloh my its MS patch day again
12:17.29Brunerspatching what?
12:18.31nevcairielIE7 security, new malware removal tool, some other random shit
12:19.09*** join/#wowace [dRaCo] (n=drc@brsg-4dbb7b12.pool.einsundeins.de)
12:19.09Brunersbetter not include restarting
12:19.23nevcairielsecurity in SMB protocol, too apparently
12:20.32*** join/#wowace Higdur (n=nike@97-110-117-82.cust.blixtvik.se)
12:21.39Megalonbtw, what triggers that serverwide "The Ice Stone has melted!" message?
12:21.56nevcairieli dunno
12:21.58nevcairielbut i got it alot
12:22.45SunTsuIt's sort of annoying
12:23.44nevcairielman i'm tired
12:23.56nevcairieland its middle of the day =(
12:26.41Xinhuanif i switched from USB modem -> Ethernet modem + ethernet card, does that offload CPU network stuff to the card
12:26.45Xinhuan?
12:27.56[dRaCo]it should
12:28.47nevcairieldepends on your card
12:28.59evlmost modern cards offload
12:29.00nevcairielbut most modern cards at least support checksum offloading
12:30.29*** join/#wowace MentalPower (i=MPower@WoWUIDev/Norganna/Administrator/MentalPower)
12:30.29*** mode/#wowace [+v MentalPower] by ChanServ
12:36.09Xinhuanusing an old 3com one
12:36.31Xinhuani can also use the realtek onboard one
12:36.34nevcairielwhat kind of bandwidth is going through that card?
12:36.37Xinhuanis there any advantage of using either?
12:36.42Xinhuanadsl1
12:36.55nevcairielmbit?
12:37.07Xinhuan180 kb/sec max download i think
12:37.12Xinhuan1megabit
12:37.18nevcairieland you worry about offloading?
12:37.24Repo10mtarget: 03gameldar * r22 MTarget.lua:
12:37.24Xinhuanjust curious
12:37.27RepoMTarget: fixed up the initialisation error and added more output for the broadcast setting.
12:37.36Repo10torta: 03Quezacolt * r29 / (11 files in 2 directories): Changed UI.xsd path in XML files
12:37.38Xinhuanit doesn't hurt!
12:37.52Repo10mtarget: 03gameldar 04beta2 * r23 : MTarget:
12:39.35nevcairielthe usual onboard realteks can at least do checksum offloading, however i'm not sure where a onboard actually processes the checksum then, maybe still in the cpu :p
12:41.19Kalrothoffloading is BAD
12:41.22Kalrothslaps nevcairiel
12:41.27Kalrothbad nev, bad!
12:41.33nevcairielyou're bad!
12:41.45Kalrothnevcairiel: who's immortal, baby!
12:41.59nevcairielYou're not, since i can kill you right now
12:42.09Kalroththat's no fair
12:42.43nevcairielalso, i havent really been playing for a month due to exams and shit
12:42.50nevcairielgeneral boringness of content
12:45.35Repo10libperiodictable-3-1: 03Azethoth * r152 / (3 files in 3 directories): -- Tainted Crystal 39266
12:52.29*** part/#wowace lmeyer (n=lars@dslb-082-083-198-246.pools.arcor-ip.net)
12:54.39*** join/#wowace kenlyric (n=chatzill@c-69-136-165-148.hsd1.in.comcast.net)
13:05.53Xinhuanzeksie :)
13:06.09Zeksiewut :)
13:06.23Xinhuanpinging you to this thread - http://forums.wowace.com/showthread.php?p=265491#post265491
13:09.44Zeksieyeh. i see the point.
13:09.47Zeksiemmm
13:10.07Xinhuanoh and how can i activate "fading out" on my "target"?
13:10.23Xinhuanit seems to work on all frames except my targat
13:10.28Xinhuanfor range finder that is
13:10.54Zeksiewere you targetting a player or an npc?
13:10.59Xinhuanso i end up using that "little hand"
13:11.21*** join/#wowace waallen (i=wallen@78.134.21.2)
13:11.25Zeksieif an npc returns nil for UnitCanAssist("player","target"), then the range finder will also not function for it
13:11.26Xinhuanoh ok i get it, it doesn't work on hostile units, unless its a spell?
13:11.35Xinhuana hostile one i mean
13:11.44Zeksieyeh, that too. the range finder is for friendlies
13:11.59Xinhuanhmm
13:12.16Xinhuanwell ok you figure out the bandage stuff ;p
13:12.24Zeksieyeh. thinking about that.
13:16.10*** join/#wowace Jygga (i=Jygga@port-212-202-202-32.dynamic.qsc.de)
13:18.09Xinhuanoh also zeksie, xperl has a problem with something else as well
13:18.11Zeksieeasy actually. can just do away with the GetItemCount check. if they item is in the setup, then they must have dragged it there. if later they use them all up, it just won't work
13:18.31Zeksiego on?
13:18.40Xinhuanhttp://forums.wowace.com/showthread.php?t=15729
13:18.42Xinhuanread that
13:18.49Xinhuanits affecting loading in xperl
13:19.58Zeksiehappen to know the problem it's causing?
13:21.58Zeksieso much more in it i wish I'd have re-wrote when I took it over. it's so cumbersome to change now :|
13:22.05Xinhuanits to do with frame positioning/scaling
13:22.21Xinhuanlike it uses default instead of the saved ones
13:22.25Xinhuanfrom SVs
13:22.30Zeksiemmm
13:22.56Xinhuanoh does anyone know if scroll of ressurect works to let ppl play wrath for 10 days?
13:23.05Xinhuanwebsite says "tbc"
13:23.20nevcairieli think there is a 10day tbc trial now, but i dont think as resurrect yet
13:23.23nevcairieler
13:23.25nevcairiel10day wotlk
13:23.46jnwhitehyou can only get to dalaran by porting or battlegrounds, right?
13:24.01Cheadssummon
13:24.24nevcairieljnwhiteh: there is a crystal below it that can port you up there, or you just fly in? :)
13:24.31jnwhitehI'm level 70
13:24.32nevcairielthe crystal requires you to have been in there onec, though
13:24.52nevcairielwell then find a mage =P
13:25.28Pneumatus(or get to level 74 so you get the quest to port there)
13:25.59Xinhuanjnwhithe: you know star's rest?
13:26.08Xinhuanthe image of the wizard teleports you up
13:26.16Xinhuanonly available after a certain point i think
13:26.19Xinhuannot sure when
13:26.22Pneumatuslevel 74 :)
13:26.23nevcairiellvl 74 is that point
13:26.23nevcairiel:P
13:26.29nevcairieland there are alot of npcs that do that
13:27.15Xinhuanjust pay a mage 5g to port u lol
13:27.43*** join/#wowace Civrock (n=Civrock@24-182-64-044.dhcp.hckr.nc.charter.com)
13:27.54Pneumatusbut yeh, before 74 your choice is lock summon/mage portal/BG queue
13:28.26Xinhuanbgqueue can only be done by someone NOT at lvl 80
13:28.29Xinhuanfyi ;p
13:29.28ZaoXinhuan: Aren't there BG tiers for 71-80 for some BGs?
13:29.36PneumatusAV is 71-80
13:29.47Xinhuanits 71-79
13:29.51Xinhuan80 gets its own tier
13:29.51Cheadslevel 70 isn't in that bracket anyway
13:30.07ZaoWhat about eots?
13:30.08Xinhuanbut if clad is 70, then he can only get lvl 70s
13:30.22jnwhitehyeah we'll just wait I guess
13:30.22jnwhiteh=/
13:30.37ZaoAh no, AV it is.
13:30.48Zaowowwiki claims 71-80 for AV.
13:30.48jnwhitehgetting from Fjord to IF sucks tho
13:30.53jnwhitehand trying to do the Love dailies
13:31.04Xinhuanaha
13:31.24jnwhitehOh, need to go to Dalaran to finish it
13:31.25jnwhitehbugger
13:31.32nevcairiellove has dailies?
13:31.53jnwhitehi didn't mean dailies
13:31.55jnwhitehI meant dealie
13:32.04nevcairielheh
13:32.54Repo10malygosflamer: 03stolenlegacy * r2 MalygosFlamer (28 files in 10 directories): Initial upload
13:34.05Fisker-slaps nevcairiel around a bit with a large trout
13:34.13*** join/#wowace Shot` (n=lies@5ad73f3c.bb.sky.com)
13:38.21*** join/#wowace [ND] (n=[ND]@h062040167062.gun.cm.kabsi.at)
13:39.39*** join/#wowace taleden (n=atfrase@user-38q41i6.cable.mindspring.com)
13:42.32*** join/#wowace Inc` (n=incendiu@pool-72-64-103-206.dllstx.fios.verizon.net)
13:51.09*** join/#wowace faCe| (n=face@p5489DA1A.dip.t-dialin.net)
13:52.46*** join/#wowace sb|work (n=sb@80.67.20.227)
14:05.08*** join/#wowace chexsum (n=Douglas@123.211.93.192)
14:10.42chexsumnuma numa ey
14:12.24*** join/#wowace Cheads (i=chead@0x573bcdc3.henqu2.dynamic.dsl.tele.dk)
14:14.26Repo10classloot: 03Pneumatus * r68 ClassLoot.lua: - Fix logic error with the new class wrapping code
14:18.40*** join/#wowace Atriace (n=omnizeta@236.164.202.68.cfl.res.rr.com)
14:19.21*** join/#wowace Higdur (n=nike@nl119-202-155.student.uu.se)
14:24.36*** join/#wowace Seerah (n=Ryan_L@adsl-66-7-181.mem.bellsouth.net)
14:26.06*** join/#wowace Lysithea (i=Lyset@c-3e4ee455.017-172-73746f34.cust.bredbandsbolaget.se)
14:27.58ckknighttruth: http://img.4chan.org/b/src/1234359049160.jpg
14:28.46nevcairielwonders how many USians would actually believe that
14:28.52nevcairielthinks of a high number
14:29.38chexsumi dont get it
14:29.57*** join/#wowace Lyn (n=Lyn@Ldea0.l.pppool.de)
14:32.20sacarascHaha
14:32.35sacarascckknight: You still suck for linking to /b/
14:32.47ckknightI disagree
14:32.56ckknightchexsum: it's not Europe, and Europe's not a country.
14:33.12chexsumi didnt know that
14:33.18ckknight...
14:33.21ckknightgo to the corner.
14:33.55*** part/#wowace Fisker- (i=ballmer@62.61.142.209.generic-hostname.arrownet.dk)
14:34.10*** join/#wowace Fisker- (i=ballmer@62.61.142.209.generic-hostname.arrownet.dk)
14:42.44*** join/#wowace Medalist (n=Medalist@88.245.22.184)
14:45.12*** join/#wowace Jagobah (n=jago7777@adsl-217-156-219.owb.bellsouth.net)
14:51.20*** join/#wowace syeren (i=syeren@cpc1-oldh5-0-0-cust719.manc.cable.ntl.com)
14:51.59Kaelteng'morning
14:53.19Pneumatusmorning Kaelten
14:53.57PneumatusKaelten: i know UAC is being looked at, but if you didnt know already, if you "Install with CC" from curse.com, even if the CC is running elevated it asks you once again if you want to run it elevated
14:54.18Kaeltenomg
14:54.23Kaeltenyeah, I know why
14:54.30Kaeltendidn't think about it though
14:55.16kenlyricwtf does CC do
14:55.21kenlyricthat it needs run elevated?
14:55.28Pneumatusnothing :)
14:56.33nevcairielIt requests the access to be able to update itself
14:56.42nevcairielhowever, it does that always
14:56.50nevcairieland not only when running the updater
14:57.01*** join/#wowace PProvost (n=PProvost@WoWUIDev/WAU/Admin/Pprovost)
14:57.01*** mode/#wowace [+v PProvost] by ChanServ
14:57.17Kaeltenhe said it was because he needs the main proc to be admin so it can launch the updater as admin
14:57.38nevcairielcant the updater elevate itself after launch?
14:57.47Pneumatusthe main proc can run as a normal user, then when the updater runs it can ask to elevate
14:58.13nevcairielI should poke my head into UAC programming
14:58.13*** join/#wowace Dark_Elf (i=Dark_Elf@ip195.net253.mw.net)
14:58.15Pneumatusor it can install itself under /users/public and never have to worry about it :)
15:00.23nevcairielsadly, there isnt much public documentation about that
15:00.41nevcairielall docs are in the MSDN or TechNet librarys, which only are available to subscribers
15:01.08PneumatusKaelten: dunno if its known either, but the CC doesnt track current/latest versions properly for working directories
15:01.18nevcairieldoes it have to?
15:01.20*** join/#wowace sztanpet (n=sztanpet@142.58ec54.tvnetwork.hu)
15:01.24Kaeltenyeah they're basically ignored
15:01.38Pneumatusclear the version columns for them then?
15:02.07*** join/#wowace steino (n=steino@c510083A9.inet.catch.no)
15:04.14*** join/#wowace evl (n=evl@c85-196-101-98.static.sdsl.no)
15:25.36*** join/#wowace EthanCentaurai (n=ethan@92.24.134.248)
15:31.04*** join/#wowace Iboong (n=user@77.87.207.194)
15:32.51*** join/#wowace ckknight (n=ckknight@WoWUIDev/WoWAce/CurseStaff/CurseForge/ckknight)
15:32.51*** mode/#wowace [+o ckknight] by ChanServ
15:35.52*** join/#wowace Cheads (i=chead@0x573bcdc3.henqu2.dynamic.dsl.tele.dk)
15:38.27PProvostNevcariel - docs are open: http://msdn.microsoft.com/en-us/library/default.aspx
15:38.37PProvostWhat are you looking for?
15:38.54nevcairielSpecific information about UAC restrictions and elevation
15:38.58thulhttp://www.boingboing.net/2009/02/09/every-swear-word-on.html
15:39.10PProvostRestrictions? Or how to launch elevated?
15:39.44nevcairielInformation what i can do and more specifically, cannot do, while running as a restricted user
15:39.57nevcairielHow elevation works, what restrictions apply to that, etc
15:40.03nevcairielI was unable to find details about that yet :P
15:40.04PProvostIt isn't really about API. Basically you are running as "User"
15:40.19PProvostAnd when you try to do something that doesn't work, it prompts the user to elevate
15:40.26Thraenevcairiel: Vista / Windows 7, or earlier?
15:40.36PProvostUAC is Vista+ only
15:40.36nevcairielDid anything earlier have UAC? :)
15:40.42ThraePrompting to elevate sounds like Vista+
15:40.59PProvostSo things like:
15:41.03nevcairielBut yeah, targeted directly at UAC, Vista+
15:41.05PProvost- writing to windows
15:41.09PProvost- writing to program files
15:41.15PProvost- writing to someone else's homedir
15:41.22PProvost- writing to hkcu
15:41.25PProvostetc
15:41.29PProvostAll require elevation
15:41.40PProvostAnd you can elevate by spawnin a new process
15:42.07KaeltenPProvost: can a process currently being executed be elevated?
15:42.15PProvostNope. Restart
15:42.31Kaeltencan an application running as normal launch an app as admin
15:42.32PProvostOr you can register your app as always requiring elevation
15:42.39PProvostKaelten: yes
15:42.57Thraenevcairiel: Basically the difference between an "Admin" and a LUA (Limited User Account) in Vista is that the Admin account can self-elevate, while the LUA account requires Admin credentials to elevate.
15:43.05PProvostLook at the System.Diagnostics.ProcessStartInfoo object
15:43.21PProvostUse psi.Verb = "runas"
15:43.25Kaeltenwhat it boils down to, is that the new client tries to elevate itself all the fucking time, and it pisses people off
15:43.28Kaeltenheh
15:43.48PProvostthen System.Diagnostics.Process.Start(psi)
15:44.03PProvostThey have two choices:
15:44.09ThraeKaelten: If you make a UAC Manifest file, you can make it elevate once for the entire session.
15:44.12PProvost1. Install Wow somewhere unprotected
15:44.15PProvost1. STFU
15:44.24PProvost(that should have been 2)
15:44.32nevcairielThe elevation is required for the auto-updater of the client
15:44.37nevcairielnot the actual addon updating
15:44.47PProvostnevcairiel: Stop installing in program files
15:44.50ThraeKaelten: However, since WoW should be installed in Public\Games, people shouldn't be getting Elevation requests unless they're LUA
15:44.55PProvostMake it a net installer
15:45.02nevcairielPProvost: its a damn application, they belong in profram files :P
15:45.12RepoKnowledge base page update: http://kb.www.curseforge.com/pkgmeta-file/ by ckknight
15:45.37*** join/#wowace AckisWork (i=8ee55c3d@WoWUIDev/WoWAce/ARL/Troll/Ackis)
15:45.39Thraenevcairiel has a point.
15:45.40*** join/#wowace cncfanatics (n=cncfanat@WoWUIDev/cncfanatics)
15:45.41PProvostnevcairiel: ClickOnce deployment
15:45.50PProvostClickOnce apps don't go in Program Files
15:46.00PProvostAnd can auto update
15:46.03*** join/#wowace p3lim (n=p3lim@084202164112.customer.alfanett.no)
15:46.03nevcairielPProvost: the point is not to stop the elevation prompt for me, or you, or Thrae, its for the joe-user out there running vista, and not caring where he installs it
15:46.23PProvostYou can't solve this
15:46.26*** join/#wowace Tuikku (n=tuikku@as36-201.tontut.fi)
15:46.30PProvostThis is why Joe user hates Vista
15:46.40Thraenevcairiel: You could install it in the Public directory where WoW installs itself, going the Blizzard route.
15:46.44PProvostEvery f-ing app elevates at one point or another
15:46.49PProvostAnd it pisses people off
15:47.06nevcairielIndeed, but the problem is that the updater wants to elevate on every launch
15:47.11PProvostOr the Ruby way: C:\Ruby
15:47.12nevcairieland not only when it auto-updates
15:47.23nevcairieli hate apps that spam my root dir
15:47.28PProvostnevcairiel: You could do this
15:47.36Thraenevcairiel: That's probably because it's changing a file in Program Files
15:47.37PProvostMake the auto-updater be a separate process
15:47.43PProvostAnd spawn it elevated only when you need to
15:47.45nevcairielPProvost: it is, i believe
15:47.56Thraenevcairiel: Like writing to a configuration file
15:48.04nevcairielThrae: i thought those go into appdata
15:48.06nevcairielchecks
15:48.11*** join/#wowace Yasuo (n=Administ@dslb-088-074-043-216.pools.arcor-ip.net)
15:48.17PProvostThe main (unelevated app) can spawn elevated (and prompt) another app
15:48.18nevcairielYes they do
15:49.10nevcairielI still think an app should be able to elevate itself, like i have one option in my app that requires elevation, so only when the user clicks that option he asks for the right =P
15:49.22nevcairielwith that windows-shield icon on the button :)
15:49.36PProvostThere are lots of security reasons why that doesn't work
15:49.43PProvostRegardless, this is what is
15:49.45*** join/#wowace durcyn (n=durcyn@70.114.145.93)
15:49.49PProvostLaunch a new exe and elevate it
15:49.57PProvostThree lines of code
15:50.18PProvostThis is in powershell syntax, but you will get the gist: http://www.pastey.net/108105
15:50.39Kaeltennevcairiel: oh, don't forget when you hit 'install via the client' on the website, it asks for elevatin too!
15:50.49nevcairielhuh
15:50.49nevcairielwhy is that
15:51.22PProvostIf the client has the "always UAC" bit set in the manifest, it will always elevate no matter what
15:51.27ThraeUAC prompts UAC which prompts UAC to elevate.
15:52.13ThraeMore like "Are You Sure?" before UAC prompt which then prompts another "Are You Sure?" which has following it another UAC prompt.
15:52.24PProvostBetter in Win7
15:52.36ThraeAfter testing Windows 7, I finally decided to go silent on UAC in Vista too.
15:52.37nevcairielWin7 reduces the UAC prompting by alot
15:53.04nevcairielAnd it finally fixed the group-access issue t hat vista has
15:53.22nevcairielwtb release
15:53.40nevcairielor RC with the annoying bugs in the beta fixed
15:57.37steevyou get nothing!
15:57.42*** join/#wowace Hjalte (n=chatzill@62.242.38.50)
15:57.45steevyou can't download 7 anymore either
15:57.48Kaeltennevcairiel: the weblink launches a new copy of the client
15:58.00Kaeltenwhich sockets into the main thread and tell it to install and then shuts down
15:58.12nevcairielthat sounds really hackish
15:58.21Kaeltenstandard practice from what I understand
15:58.29*** join/#wowace RockSlice (n=kvirc@c-68-56-29-29.hsd1.fl.comcast.net)
15:58.41nevcairielBut what exactly requires admin there?
15:58.50Kaeltennothing
15:58.54*** join/#wowace durcyn (n=durcyn@70.114.145.93)
15:58.55Kaeltenbut because of the manifest file
15:58.57Kaeltenit asks anyway
15:59.00nevcairielah
15:59.10nevcairielso that would be gone if you can fix it to only elevate the updater
15:59.13Pneumatuscouldnt the updater be a separate process?
15:59.23Kaeltenthe updater is
16:00.45nevcairielThat would certainly improve usability if you can change it to do that
16:00.49nevcairielon vista
16:05.10Repo10libhealcomm-3-0: 03jlam * r43 LibHealComm-3.0.lua: Divine Plea reduces healing by 50% in WoW patch 3.0.9.
16:07.33ckknightNivFreak: ping
16:10.31*** join/#wowace Vegeta]BT[AFK (n=Vegeta-G@xdslgq253.osnanet.de)
16:10.58ckknight~seen NivFreak
16:11.02purlnivfreak is currently on #wowace (10h 47m 35s), last said: 'bleh, extended'.
16:11.59AckisWorkugh I'm so tired
16:12.06AckisWorkhamsters are fast and sneaky little buggers
16:12.48durcynbut you eventually caught your breakfast, well done
16:13.04AckisWorkha
16:13.30AckisWorkckknight: Thank you for your kind offer Ackis, however, our client has rejected.
16:13.31AckisWorkhahahah
16:13.39ckknight?
16:13.44AckisWorkfor ackis.com :P
16:13.48ckknightlol
16:14.02*** join/#wowace Aeyan (n=pancake@cpe-071-076-230-073.triad.res.rr.com)
16:14.34ckknightnow that I have a blog, I don't know what to put in it
16:14.35ckknightP
16:14.37ckknight:P*
16:14.45nevcairielI wanted to start blogging
16:14.47Kaeltenlinks to b?
16:14.48pentium166get a camera and some cats
16:14.49nevcairielbut i'm too lazy
16:14.50Grumnude pictures!
16:15.07pentium166the internet needs more cat photos
16:15.15*** join/#wowace vhaarr (n=folk@WoWUIDev/WoWAce/Rabbit/vhaarr)
16:15.15*** mode/#wowace [+o vhaarr] by ChanServ
16:15.17ckknightlol, pentium166
16:15.23AckisWorklol yes more cat pics
16:15.40ckknightI lack pets
16:16.21Elkanostill got a P66 and a PII233 at home ^^
16:16.33AckisWorkckknight: get a hamster
16:16.41ckknightI actually wanna get a pair of chinchillas
16:16.48ThraeI've still got a 8086 somewhere...
16:17.09Thrae10MHz with the TURBO button pressed!
16:17.15ElkanoI hated my dad the day I noticed he disasambled the atari800 though :(
16:17.27GrumThrae: and if the button bugged you had to hold it !!! awesome
16:17.52nevcairielI belive my old 8086 had 8 MHz, but no turbo button
16:17.52Elkanowell, heading into Battlefield Heroes beta ^^ *vanish*
16:18.22ThraeYeah 8MHz was its default setting.
16:18.28AckisWork~google Battlefield Heroes
16:18.41nevcairielfull 20MB of hard disk
16:18.49nevcairiel360kb 5 1/4 disks
16:19.02Thrae10MB here and 640KB ram
16:19.10nevcairielyeah 640 was default :)
16:19.41ThraeOld computers (not as old as the 8086) make great routers and small fileservers
16:19.43pentium166i have not one, but TWO mostly working p166 boxes
16:19.47nevcairielI didnt have a 8087 coprocessor though :(
16:20.01quiescensfileservers not so much
16:20.12ThraeSure, for home use
16:20.15nevcairielThrae: my K6-2 does my routing work now
16:20.15quiescensmost modern hard drives would take too much effort to install
16:20.16ThraeP2 and up
16:20.21AckisWorkTandy 1000 LX with 256 kb memory and 1 360kb 5 1/2 drive
16:20.35ThraeWell, I'm assuming you have some IDE HDDs laying around like I do
16:20.46ThraeI have like 15 IDE HDDs of varying size
16:21.00nevcairielalot of my older IDE HDDs died
16:21.07ThraeMy fileserver is currently SATA though
16:21.08nevcairielgot some 100 and 200 GB left
16:21.12pentium166i put a 250gb ide hard drive in one of my 166es and it worked fine
16:21.35Thraenevcairiel: Buy a cheapo USB->IDE adapter / enclosure
16:21.45ThraeCheaper then DVDs in the long run
16:21.55nevcairielYeah i have an adapter
16:22.22nevcairielBut no enclosure, just some very simple usb thingy
16:23.17thul~asktoask
16:23.18purlThis is IRC. Don't ask to ask a question. Just ask your question and if someone's around, they'll be glad to help.
16:23.25NivFreakckknight: pong
16:23.29thul~ask
16:23.29purlQuestions in the channel should be specific, informative, complete, concise, and on-topic.  Don't ask if you can ask a question first.  Don't ask if a person is there; just ask what you intended to ask them.  Better questions more frequently yield better answers.  We are all here voluntarily or against our will.
16:23.36ckknightNivFreak: I saw something cool you'd be interested in
16:23.43ckknightNivFreak: the 2.1 Mac Curse Client
16:23.46NivFreaknice
16:23.48NivFreakurl?
16:23.55ckknightoh, you don't get to see it
16:23.59NivFreaklol
16:24.01ckknightyou're not worthy
16:24.04nevcairiellol
16:24.45Repo10test-alpha: 03ckknight * r110 / (2 files in 1 directory): Add manual changelog
16:25.04*** join/#wowace QQngsk (n=Gngsk@c-69-138-214-242.hsd1.md.comcast.net)
16:25.15steevhttp://www.i4u.com/article23190.html
16:29.22*** join/#wowace ddollar (n=ddollar@unaffiliated/daved)
16:31.31Repo10broker-reagents: 03Rabbit * r8 reagents.lua: 3.1 won't change ammunition, continue tracking it for now.
16:31.53Kaeltendude it's a mac client
16:32.04Repo10test-alpha: 03ckknight * r111 Changelog.txt: *fart noise*
16:32.29KaeltenNivFreak: we're working out some library stuff now, so it can run on other people's machines
16:32.35Kaeltenbut after that I'll get you a preview copy
16:33.04ckknightno, he's not worthy
16:33.07ckknightI already said so
16:33.15ckknight:P
16:33.25Kaeltenoh....
16:33.41ckknightsorry, NivFreak, there's a series of trials you have to pass
16:35.44NivFreakKaelten: sounds like a plan
16:35.58NivFreakckknight: I already run a half dozen of your addons, isn't that enough of a trial? :)
16:36.09ckknightyou have to run 30 of mine
16:36.11ckknightminimum
16:36.38NivFreakif you count all the broken rock libs, I'm probably there ;)
16:37.19cncfanaticswtf
16:37.26cncfanaticswhen I go to a vendor, stuff has no name
16:37.31cncfanaticsand tooltips are stack at retrieving item info
16:37.43NivFreakrelog
16:37.43CrazyBenny_just wait a bit
16:37.55nevcairielcncfanatics: just logged into dalaran after patching?
16:37.59nevcairielthats called lag
16:37.59cncfanaticsnevcairiel: yea
16:38.00nevcairiel:)
16:38.07nevcairielpatching clears cache
16:38.07cncfanaticsI've been logged since 5 minutes >.>
16:38.11nevcairieland dalaran lags like hell
16:38.19nevcairielrelogging should be fine
16:38.29cncfanaticsdid a few times already
16:38.34cncfanaticsguess I'll just wait :p
16:38.43cncfanaticsand wtf is up with the ice has melted ?
16:38.49cncfanaticsgetting that spammed as world emote every few minutes
16:40.30nevcairielyeah we dont know yet
16:40.51cncfanaticsTHe ice has melted is normaly a zone emote in certain zones in midsummer
16:40.53cncfanaticsprolly a fuckup
16:41.52Repo10mini-pet: 03LordFarlander * r170 MiniPet.lua: MiniPet:
16:41.55Repo- Randomizer fix
16:42.01Repo10coconuts: 03LordFarlander * r162 Coconuts.lua: Coconuts:
16:42.04Repo- Randomizer fix
16:42.43Repo10tabard: 03LordFarlander * r54 / (4 files in 2 directories):  (Message trimmed by 1 line)
16:42.46RepoTabard:
16:42.49Repo- Randomizer fix
16:42.52Repo- Championing support
16:42.55Repo- Disable option
16:43.50Fisker-i exploited again!
16:43.55Fisker-wtb ban
16:43.58quiescensreported
16:44.10Fisker-thanks
16:44.16Funkeh`Fisker-, your mom
16:44.26Fisker-no your mom
16:44.40Funkeh`wait a minute
16:44.44Funkeh`I see what you did there
16:45.12Funkeh`I really can only reply to that in one way tbh
16:45.14Repo10mini-pet: 03LordFarlander 044.6.171-beta * r171 : Tagging as 4.6.171-beta
16:45.22Funkeh`Fisker-, no, your mom
16:45.35Repo10coconuts: 03LordFarlander 042.6.163-beta * r163 : Tagging as 2.6.163-beta
16:46.23*** join/#wowace Higdur (n=nike@97-110-117-82.cust.blixtvik.se)
16:48.59*** join/#wowace vv9049n (i=nnscript@cm9205.red83-165.mundo-r.com)
16:50.09cncfanaticsFunkeh`, Fisker-: fal
16:50.12cncfanaticsFisker-: what did u do this time ?
16:50.19Gnarfoz~fail cncfanatics
16:50.20purlcncfanatics, you Fail!
16:50.47*** join/#wowace Camci (n=enescamc@ua-83-227-134-226.cust.bredbandsbolaget.se)
16:50.55cncfanatics~epic fail Gnarfoz
16:50.56purlGnarfoz, you have failed in such a spectacular way that one thousand years from now people will tell their children stories about a failure so great that it eclipsed every success from that period of time. And you Gnarfoz, you are that epic failure.
16:51.05*** join/#wowace Odlaw (n=ozzy@c-98-245-39-78.hsd1.co.comcast.net)
16:51.38GnarfozI didn't fail? wtf
16:52.45*** join/#wowace fewyn (n=fewyn@249.215.205.68.cfl.res.rr.com)
16:52.50Fisker-cncfanatics the silvershafted arrows can be reused for the achievement
16:52.59Fisker-so you only need one!
16:54.42cncfanaticsmeh
16:54.43cncfanatics<PROTECTED>
16:55.24RepoKnowledge base page update: http://kb.www.curseforge.com/pkgmeta-file/ by ckknight
16:55.46Gnarfozsilvershafts Fisker-
16:56.07Repo10talented: 03kunda * r391 Locales/deDE.lua: deDE update
16:56.35*** join/#wowace Gagorian (i=rw3@a91-153-60-25.elisa-laajakaista.fi)
16:58.44nevcairielyay i got a perma-peddle
16:58.55*** join/#wowace cncfanatics (n=cncfanat@WoWUIDev/cncfanatics)
16:59.31Stanzillagz :)
17:01.56Repo10talented: 03jerry 04v1.9.5-release * r392 : Tagging as v1.9.5-release
17:02.27*** join/#wowace Funkeh` (n=funk@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
17:02.34*** mode/#wowace [+o Funkeh`] by ChanServ
17:04.58Fisker-i got 2 black dresses nevcairiel
17:05.26Fisker-and 2 picnics
17:05.26nevcairieli got a picnic too
17:05.26nevcairielgot a black dress for the achievement from a guildy
17:05.47*** join/#wowace Shot (n=lies@5ad73f3c.bb.sky.com)
17:06.06nevcairielstill need 6 friendship thingys
17:06.16Fisker-what?
17:06.24Fisker-The achievement doesn't count unless you get it from a basket
17:06.36nevcairielthats what you think
17:07.38AckisWorkoh love is in the air starts today eh?
17:07.45Fisker-Then how nevcairiel ?
17:07.45nevcairielindeed
17:07.57Fisker-tell me or i will destroy you
17:08.47Stanzillanormal trade does not work, we just tried that
17:08.54*** join/#wowace Tekkub (n=tekkub@WoWUIDev/WoWI/Featured/Dongle/GitHub/Tekkub)
17:08.54*** mode/#wowace [+v Tekkub] by ChanServ
17:10.07Fisker-anyways you have been reported for exploiting
17:10.29*** join/#wowace Kalroth (n=kalroth@2506ds1-hj.0.fullrate.dk)
17:10.35AckisWorkhttp://www.warcraftpets.com/news/archives/?m=2&y=2009#armored_murloc
17:10.44*** join/#wowace pompy (n=Pomp@c-71-58-3-50.hsd1.nj.comcast.net)
17:11.09nevcairielAckisWork: haha, you wont get it
17:11.10nevcairiel:P
17:11.43AckisWorkPlayers who participate in the tournament can also earn both the exclusive Armored Murloc in-game pet, and the “Vanquisher” title on their live characters by meeting certain eligibility criteria.
17:11.54*** join/#wowace Elkano (n=elkano@WoWUIDev/WoWAce/Elkano)
17:12.04Fisker-nevcairiel
17:12.04Fisker-tell
17:12.12nevcairielAckisWork: "can" :)
17:14.16*** join/#wowace keias (i=bleh@c-69-245-244-213.hsd1.in.comcast.net)
17:14.45Fisker-y so lieous nevcairiel?
17:14.50*** join/#wowace Nickenyfiken (n=najk@c83-255-99-92.bredband.comhem.se)
17:15.36cncfanaticsFisker-: you need to die asap
17:15.41Fisker-no
17:17.57pompy'We've been looking at player feedback in this regard, and are working to develop a better interface to warn players that will be saved to an instance that's been partially, or completely cleared. This is something that might not happen in 3.1, but we'll be discussing this further internally in the near future.'
17:18.01pompybout time they talk about it
17:18.24*** join/#wowace Miyagui (i=miya@190.43.4.232)
17:18.58durcynsomeone remind me to shoot myself next time i have to fsck a 4.5tb volume
17:19.36Fisker-old news pompy
17:20.18Jaxondurcyn: that'll teach you for having a 4.5TB volume.
17:21.05Fisker-tell me nevcairiel
17:23.09AckisWorkhey nevcairiel thanks for telling me about the dress
17:23.49Fisker-you weren't told shit as you can't exploit it
17:25.29*** join/#wowace mitchnull (n=mitchnul@catv3EC947C2.pool.t-online.hu)
17:25.48AckisWorkr u sure?
17:26.41Fisker-wyes
17:26.42Fisker-yes
17:28.50Fisker-unsuccessful troll = unsuccessful
17:29.20Zyndromewalks in
17:29.29Zyndromehay guise wuts goinThe Ice Stone has melted!
17:30.03Fisker-no
17:30.19quiescensdarn ice stone
17:30.42durcyndoes that make it a lava puddle now, or what
17:30.45durcynhow does one melt stone, exactly
17:30.56durcynTELL ME, Fisker-
17:31.03CrazyBenny_its ice stone!
17:31.38nevcairielthe only reference to ice stone i could find was from ahune, the frost lord
17:32.54Fisker-GM's said it was from the summer festival apparently
17:32.58Fisker-btw nevcairiel
17:32.59Fisker-tell me
17:33.56Fisker-tell me nevcairiel
17:37.39*** part/#wowace pompy (n=Pomp@c-71-58-3-50.hsd1.nj.comcast.net)
17:38.56Fisker-tell me nevcairiel
17:39.35*** kick/#wowace [Fisker-!i=nevcairi@WoWUIDev/WoWAce/Ace3/nevcairiel] by nevcairiel (No.)
17:39.42*** join/#wowace Fisker- (i=ballmer@62.61.142.209.generic-hostname.arrownet.dk)
17:39.46Fisker-doesn't exist etc.
17:41.06Repo10test-alpha: 03ckknight * r113 TestAlpha.lua: Blah!
17:42.15*** join/#wowace pompy (n=Pomp@c-71-58-3-50.hsd1.nj.comcast.net)
17:42.23*** join/#wowace Bibi (n=Bibi@unaffiliated/bibi)
17:44.35*** join/#wowace Vilkku (n=Vilkku@dsl-tkubrasgw1-fe22fa00-138.dhcp.inet.fi)
17:45.03Fisker-why so afraid nevcairiel ?
17:45.14Repo10test-alpha: 03ckknight * r114 TestAlpha.lua: Blah!
17:45.23nevcairielI'm not afraid, i'm just enjoying it :)
17:46.38Fisker-nah
17:46.59Fisker-Because i'm enjoying you thinking it's possible to exploit it when it isn't
17:47.38*** join/#wowace LANFiRE` (n=lanfire@ppp91-77-131-202.pppoe.mtu-net.ru)
17:48.43*** join/#wowace Groktar (n=gr@adsl-69-110-90-49.dsl.pltn13.pacbell.net)
17:49.46ckknight@ticket curseforge 1070 is now fixed
17:49.47Repockknight: http://www.curseforge.com/projects/curseforge/tickets/1070 - Generate LICENSE.txt from the CF/WowAce license. Reported by: Ackis. Type: Enhancement. Updated: 3 minutes ago. Component: Packager. Status: Fixed. Priority: Medium. Assignee: ckknight. Votes: +5. Comments: 1
17:50.05manymh.
17:50.18manyodd.
17:50.38manyreceived money from auction house, without plugins: empty body. with plugins: crash.
17:51.55manytakes a wild guess to blame fubar-mailfu
17:52.34Gnarfozwtf are plugins
17:52.47Gnarfozalso, mailfu keeps getting more broken each patch :(
17:52.58many*addons ;)
17:53.50*** join/#wowace Matrix110 (i=Matrix11@pD957C74D.dip.t-dialin.net)
17:53.57nevcairielplugs Fisker- in Gnarfoz
17:54.10Gnarfoznevcairiel: /kick nevcairiel no.
17:54.31nevcairielno work :(
17:54.49nevcairielwhat did mailfu ever do anyway?
17:54.57Repo10ora2: 03Rabbit * r653 Optional/MainTank.lua:
17:55.00RepoDon't set the main tank list again and refresh the header if the list of maintanks is identical to our old one.
17:55.10Gnarfozdisplay new mail bool + count on fubar
17:55.20Gnarfoz+tristate colored icon
17:55.22Gnarfoz(and text)
17:55.44GnarfozI fail at patching Broker_Mail to be as good as MailFu :(
17:56.19Gnarfozclad's texcoord thingy would probably make the tristate colored icon possible again, not sure
17:56.42nevcairieldepends how the original image was designed
17:56.51nevcairielin mailfu
17:57.20Gnarfozone image, color via ... yeah whatever the api call was for that, SetVertexColor?
17:57.33sacarascnevcairiel: Are you in EU? Because I just saw a Nevariel on my realm
17:58.04Gnarfozanyway, MailFu still has SEE-Mail and still thinks "a buyer has been found for your auction of [thing]" means you've got new mail
17:58.18Gnarfozalso, it doesn't even use the "new" (lol, it's years OLD by now :P) mail API ^^
17:58.28Gnarfozso it can't display the last 3 senders
17:58.35Gnarfozs/last/latest/
17:58.55*** join/#wowace robotusch (n=robotusc@50A2DA43.flatrate.dk)
18:00.29nevcairielsacarasc: i am EU, but i don't use any weird versions of my name, only the real one, or something completly different
18:00.39Pneumatushmm, i wonder whats causing dovecot to crash :o
18:01.37Gnarfoznevcairiel: create an alt called "Nêvcàírèl" now, you know you want to
18:02.00*** join/#wowace Iboong1 (n=user@77.87.207.194)
18:05.17*** join/#wowace Fogger (n=rendermi@host81-132-166-113.range81-132.btcentralplus.com)
18:08.43Fisker-so nevcairiel
18:08.53Fisker-getting some exploits, which don't exist, done?
18:09.24Gnarfozprobably not, since they don't exist!
18:09.26quiescenshmm
18:09.28quiescensundocumented change?
18:09.39quiescensmercurial stone is a trinket and has stam + hit
18:10.14*** join/#wowace Cavisty^gerber (n=Cavisty@c-98-192-207-73.hsd1.md.comcast.net)
18:12.24NivFreakquiescens: orly
18:12.41quiescenstrue story~
18:13.12NivFreakI'll have to get mine back out of the gbank then
18:13.19quiescensboe +27 sta 27 hit trinket
18:14.35PProvostMercurial Stone? This? mercurial stone
18:14.41PProvosthttp://www.wowhead.com/?item=31080
18:14.43PProvost?
18:14.57quiescensyes, that mercurial stone
18:15.21NivFreakFisker-: reused how?
18:16.02PProvostI thought I read about that somewhere... hmmm
18:16.15quiescensI would imagine someone else has noticed it
18:16.36quiescensI'm not implying I was the only one, I'm just saying it wasn't in the patch notes
18:17.35quiescenskind of odd they would change that all of a sudden though
18:17.51*** join/#wowace Dashkal (n=dashkal@WoWUIDev/Nexus/dashkal)
18:19.36PProvostIt is listed in the last comment on that wowhead page. Posted yesterday.
18:22.04*** join/#wowace Natherul (n=Natherul@81-229-191-248-no31.tbcn.telia.com)
18:23.45jnwhitehGnarfoz: which tri-state-icon thingy?
18:24.37Gnarfozjnwhiteh: MailFu's. the mail icon can be either gray (no mail pending), green (unknown or known new mail, MailFu doesn't use the newer mail API so it can't tell who mail is from), red (AH mail pending)
18:24.49Pneumatusconfirming the Mercurial Stone is now a trinket
18:25.00jnwhitehah yeah that would be really easy with texCoords and iconR, iconG and iconB
18:26.35*** join/#wowace Matrix110| (i=Matrix11@pD957C74D.dip.t-dialin.net)
18:26.38Gnarfozjnwhiteh: as I suspected. <3
18:26.44jnwhiteh:P
18:27.59ShotPneumatus: what?
18:28.46Shotnvm, i read up
18:36.00*** join/#wowace chiper (n=chiper@69.43.204.8)
18:42.35*** join/#wowace TheDeamon (i=TheDeamo@69-20-145-84.static.ida.net)
18:42.39*** join/#wowace Nickenyfiken (n=najk@c83-255-99-92.bredband.comhem.se)
18:45.17Stanzillavhaarr: thaddius messages are still weird
18:45.20StanzillaI logged the last part
18:45.24vhaarrI know
18:45.30vhaarrI just killed him this VERY second
18:45.34Stanzillak :P
18:45.44vhaarrlike, I'm not kidding
18:45.50durcyni don't know, the throw timer was very handy in phase two.
18:45.50vhaarrsame second you said it he was on 1%
18:46.03durcynjust in case feugen and stalagg decide to pop back up after their corpses despawn
18:46.06Stanzilla19:45:07. Combat logging disabled.
18:46.07Stanzilla^^
18:46.15Stanzillaso you don't need my log, right?
18:46.20vhaarrdurcyn: what, you got throw messages in p2?
18:46.25durcynvhaarr: did last night, yes
18:46.28vhaarroO
18:46.31vhaarrwell I didn't now
18:46.36durcynhrm
18:46.50durcynwas the current svn head of about 18 hours ago
18:47.37NivFreakI haven't tested it since your last changes, but the older version I had kept those timers running
18:47.40NivFreakI learned to ignore it ;)
18:47.55*** join/#wowace MoonWolf (n=MoonWolf@dhcp-077-250-125-249.chello.nl)
18:47.55*** mode/#wowace [+o MoonWolf] by ChanServ
18:48.36NeoTronI definitely noticed that the charge warnings didn't work :-/
18:48.48vhaarrye they did not
18:48.52vhaarrreally weird
18:48.56vhaarrit's annoying me now
18:49.31*** join/#wowace durcyn (n=durcyn@70.114.145.93)
18:49.33NeoTronironically it did warn me only once and it didn't change
18:49.45vhaarrhm, the module had an error though
18:49.53vhaarrthat might have been the reason, but it shouldn't I guess
18:51.14Repo10banana-dkp: 03Rabbit * r128 BananaDKP.lua: Bugfix.
18:52.00Stanzillahm yeah, just saw the error
18:56.08Repo10big-wigs: 03Rabbit * r4969 Naxxramas/Thaddius.lua: Bugfix.
18:56.54AckisWorkvhaarr: tag?
18:57.11vhaarrno :P
18:57.30AckisWorkhehe
18:57.40Primerhate pugs. Pugged a 25 man OS last night, my trinket dropped, and 10 people rolled
18:57.46Primerluckily it stayed within guild
18:57.50Primerbut still
18:58.11quiescensninjas primer's trinket
18:58.38durcynobviously not your trinket if you didn't loot it.
18:58.42NeoTronvhaarr: I'll try next time I run naxx
18:58.58Gnarfozdurcyn: indeed
18:59.18vhaarrNeoTron: ye I'll probably do 10man later and see if that fixed it, but I really don't think it did
18:59.28vhaarrso I'll have to look a bit more at it after 25man
19:00.01PneumatusThe Ice Stone has melted c/d
19:01.03*** join/#wowace Bibi (n=Bibi@unaffiliated/bibi)
19:01.14Repo10malygosflamer: 03stolenlegacy * r3 MalygosFlamer/MalygosFlamer.lua: Fixed a leftover from debug phase.
19:01.15quiescensthe ice stone has melted
19:01.17RepoThere should no longer be a "Debuff expired" spam when malygos dies.
19:01.23*** join/#wowace waallen (i=wallen@78.134.22.80)
19:01.28*** join/#wowace Iboong (n=user@77.87.207.194)
19:02.08Gnarfoz@project malygosflamer
19:02.10RepoGnarfoz: http://www.wowace.com/projects/malygosflamer/. MalygosFlamer. Game: WoW. Status: Needs approval. stolenlegacy (Manager/Author). Updated: 53 seconds ago
19:02.15AckisWorkhttp://i288.photobucket.com/albums/ll199/Hunterman08/WoWScrnShot_021109_114852.jpg
19:03.11AckisWorkisn't there another addon that lets you target dargons easily for P3?
19:03.44quiescens?
19:06.57*** join/#wowace Matrix110 (i=Matrix11@pD957C74D.dip.t-dialin.net)
19:09.32*** join/#wowace pompy1 (n=Pomp@c-71-58-3-50.hsd1.nj.comcast.net)
19:10.31GnarfozAckisWork: grid with pet layout enabled?
19:10.46GnarfozAckisWork: other working unitframe mod with raid pet units enabled?
19:11.01AckisWorkmaly helper/
19:11.12Fisker-is there an addon like addonspamfu?
19:11.26AckisWorkyes Fisker-
19:11.42GnarfozAckisWork: what... MalygosHelper has nothing to do with this. it's entirely a unitframe thing.
19:11.44Repo10zzml: 03Turaka * r21 / (2 files in 1 directory):
19:11.47Repo* Little bugfix, so that melee works at least again properly.
19:12.02Repo10zzml: 03Turaka 04v3.1 * r22 : * Tagging v3.1
19:12.25Fisker-no AckisWork
19:12.53AckisWorkGnarfoz: never used it, was asking if it would do it for me since it mentions that it keeps track of combo points
19:13.06Gnarfozyes, combo points are related to targetting :P
19:13.10Gnarfoz</sarcasm>
19:13.24Gnarfozseriously: you just need a unitframe addon that is able to display raid pets :)
19:13.52AckisWorknot like I do the fight ever :P
19:13.54Gnarfozif it has specific magic for malygos, it will even show the name of the player instead of "Wyrmrest Skytalon" for all 25 dragons :p
19:14.04Gnarfozwhy even ask, you ex-raider! :p
19:14.24quiescensWyrmrest Skytalon #7 > other wyrmrest skytalons
19:14.37AckisWorkI use sraidframes btw :P not sure if I can configure it that way
19:14.58AckisWorkGnarfoz: I have to get the achievements :(
19:15.21Fisker-tell me AckisWork
19:15.29Fisker-what do you offer your master?
19:16.10*** join/#wowace Jagobah (n=jago7777@adsl-217-152-34.owb.bellsouth.net)
19:23.04*** join/#wowace EthanCentaurai (n=ethan@89.240.100.28)
19:24.15quiescensthe ice stone has melted
19:24.28Kuja^orly?
19:25.55*** join/#wowace [dRaCo] (n=drc@brsg-4dbb7b12.pool.einsundeins.de)
19:29.37*** join/#wowace Shot (n=lies@5ad73f3c.bb.sky.com)
19:29.51*** join/#wowace pompy (n=Pomp@c-71-58-3-50.hsd1.nj.comcast.net)
19:30.07*** join/#wowace Speeddymon (i=TomSpear@tera-24-206-151-175.kw.tx.cebridge.net)
19:31.08Speeddymonanyone around that can look at a bug with the curse site itself? or is there another channel for curse?
19:32.49Speeddymonhaving issues with posting a comment at the moment if someone cares to take a look
19:35.49Pneumatusanyone EU having problems with people being DCd all the time in raids?
19:36.09sacarascNope
19:36.17sacarascNot been in a raid since .9 though
19:36.40CrazyBenny_Pneumatus: since todays patch? yep
19:36.50Pneumatusyeh, since today's patch :)
19:36.59Fisker-Anyone know what addon has Crb as addon for comm?
19:37.04PneumatusCarbonite
19:37.41JaxonI can't stand that addon, the questing logic is so freakin' weird.
19:37.58Pneumatusnot to mention ALL the guild/whisper addonmessage spam it sends
19:38.27JaxonPneumatus: I think I spent more time setting it up than using it, so I didn't get into that part.  Are you getting spammed by guildmates?
19:39.05Pneumatuscarbonite constantly spams guild and any people on your friends list with addon messages until you switch it to private mode
19:39.20Pneumatusor solo mode
19:39.22Pneumatusor w/e its called
19:39.35Pneumatusi harassed all my guildmates using it to switch it to stfu mode
19:39.44Pneumatusbecause it sends an insane amount of addon data constantly
19:40.28*** join/#wowace Funkeh` (n=funk@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
19:40.28*** mode/#wowace [+o Funkeh`] by ChanServ
19:41.59*** join/#wowace Funkeh` (n=funk@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
19:41.59*** mode/#wowace [+o Funkeh`] by ChanServ
19:42.02*** join/#wowace EthanCentaurai (n=ethan@89.240.100.28)
19:42.58*** join/#wowace Torhal (n=Torhal@74-130-66-145.dhcp.insightbb.com)
19:46.48*** join/#wowace Ghli (n=Ghli@32.152.15.42)
19:47.00HirsuteI've never been able to get interested in Carbonite, the whole buy-this-addon concept doesn't sit very well with me.
19:47.59quiescensobviously the solution is to kick them all~!
19:48.53Arrowmasterput them all on ignore so they get spammed with messages that you have them on ignore (only works for people that have you on friends list)
19:49.18*** join/#wowace Adys (n=Adys@unaffiliated/adys)
19:53.03*** join/#wowace Vegeta]BT[ (n=Vegeta-G@xdsl-92-252-51-48.dip.osnanet.de)
19:53.04StanzillaArrowmaster: does that work with carbonite quest or only the full thingy?
19:53.23harli've got a problem with updating certain add-ons using the curseclient. it seems to start downloading the add-on and then just stops, leaving no trace in the activity log of what it did.
19:53.27Arrowmasterit works with anything that sends addon whispers
19:53.31HirsuteDoes WoWMatrix still generate large amounts of traffic just checking for addon updates?
19:53.38ArrowmasterHirsute: yes
19:54.04harlalso these newly add-on versions don't show up at the curse site.
19:54.26HirsuteArrowmaster: Thanks, I'm in the process of trying to convince people in the raiding organization I'm in to stop using WoWMatrix, and I wanted to double check that before I posted it.
19:55.02Pneumatushardly any reason to use wowmatrix now the new CC is about anyway
19:55.06Pneumatusseeing as the new CC is just as good
19:56.49Xinhuannot quite, its lacking "multi site"
19:56.58Xinhuanwhich is the main draw
19:57.21Hirsute^^
19:57.43HirsuteI don't think it's a justification to use it, but that's the reason most people I talk to cite for still clinging to Matrix.
19:58.01HirsuteThat and the "keylogger problems with Curse" that I can never find anyone who can give me details about.
19:58.12HirsuteWasn't Shirik working on a multi-site updater?
19:59.05HirsuteOr am I up in the night?
19:59.56TorhalI believe he's working on the WoWInterface UI manager
20:00.33HirsuteTorhal: Ah, okay.
20:01.09Hirsute... I thought there was someone working on a Project Syndication based updater that had the potential to be site-unaware.
20:01.14ArrowmasterHirsute: there is no "keylogger problems with Curse"
20:01.53HirsuteArrowmaster: I know, that's my point.  I keep having people mention "keylogger problems with Curse", but when I ask them to give me details, they can't.  It's because there aren't any, but darned if I can convince people of that.
20:01.57Arrowmastergkick anybody that says otherwise because you dont want morons in your guild
20:02.05*** join/#wowace Adys (n=Adys@unaffiliated/adys)
20:02.06Hirsutemutters something about hard-headed fools.
20:02.33Pneumatusincgamers is the only place with keylogger issues really
20:02.39HirsuteArrowmaster: It isn't people in my guild, but in other guilds in our raiding organization, so there's not much I can do about it.
20:02.41quiescenscorrelation is causation you know
20:03.19*** join/#wowace TheDeamon (i=TheDeamo@69-20-145-84.static.ida.net)
20:04.25Arrowmastertell them the people you know from curse would like to hear about any credable information they might have indicating otherwise, but curse and wowinterface are the two safest sites to download addons from
20:05.08HirsuteArrowmaster: will do.  (And I completely agree with you, just to be clear)
20:06.43AckisWorkhello world is a key logger!
20:07.24HirsuteAckisWork: O noes!
20:12.07*** join/#wowace Inc` (n=incendiu@pool-72-64-103-206.dllstx.fios.verizon.net)
20:15.20*** join/#wowace Medalist (n=Medalist@88.245.27.232)
20:19.45AckisWork~seen merah
20:19.49purlAckisWork: i haven't seen 'merah'
20:20.45*** join/#wowace ag` (n=ag`@90.185.136.227)
20:21.51AckisWork~seen mera
20:21.53purlmera <n=ecarlat@88.226.203-77.rev.gaoland.net> was last seen on IRC in channel #waruidev, 143d 6h 58m 8s ago, saying: 'back screen on minimize me'.
20:22.41RepoNew project: http://www.wowace.com/projects/malygosflamer/. MalygosFlamer. stolenlegacy (Manager/Author). Approved by Ackis.
20:26.55*** join/#wowace SlikerHawk (i=SlikerHa@5ad83aef.bb.sky.com)
20:32.19harlcool. something's automagically solved the problem i previously described.
20:32.23harlthx
20:32.35*** join/#wowace Droolio (n=drool@87-194-188-170.bethere.co.uk)
20:35.04*** join/#wowace Tem (n=tardmrr@WoWUIDev/WoWI/Dongle/Tem)
20:35.04*** mode/#wowace [+o Tem] by ChanServ
20:36.31*** join/#wowace Anaral (n=Anaral@WoWUIDev/Norganna/QA-Engineer/Anaral)
20:45.39*** join/#wowace Mera (n=ecarlat@204.169.203-77.rev.gaoland.net)
20:46.39*** join/#wowace Tuikku (n=tuikku@as36-201.tontut.fi)
20:52.55*** join/#wowace pompy (n=Pomp@c-71-58-3-50.hsd1.nj.comcast.net)
20:55.18AckisWorkhttp://mine.icanhascheezburger.com/view.aspx?ciid=3391239
20:55.44*** join/#wowace TradeMark (n=trademar@ip-118-90-41-202.xdsl.xnet.co.nz)
20:55.55selckinfail
20:56.12AckisWorkthat's my dumb asses kitten
20:56.19AckisWorkmoron got himself locked in that thing
20:58.09*** join/#wowace fry (n=frz@londeroth.org)
20:59.15ckknightlol
20:59.45Pneumatusso, has anyone actually found out what this ice stone is that insists on melting every 10 mins
21:00.33kenlyricahune
21:00.43kenlyricblizzard = bad at programming
21:01.06syerenckknight, hurry up and merge Vangual's totem modes with the main branch :(
21:01.17ckknightyea, I need to review that
21:01.33*** part/#wowace pompy (n=Pomp@c-71-58-3-50.hsd1.nj.comcast.net)
21:01.34syerenFrom a user standpoint it's perfect, no idea about a developers :p
21:01.56ckknightbasically, I don't want to have non-beautiful code in pitbull4
21:02.02ckknightthat's the idea, at least
21:02.10fryhey uh, aren't child frames supposed to be hidden if they move out of the bounds of the parents? Or if not, is there a way to accomplish that? Is that a special functionality of the ScrollFrame only?
21:06.42fryAh okay, a property of the ScrollFrame apparently :v
21:09.12NivFreakFisker-: what were you saying about the arrows being reusable?
21:09.15*** join/#wowace pompy (n=Pomp@c-71-58-3-50.hsd1.nj.comcast.net)
21:09.36kadrahilwas he referring to ingame ammo?
21:09.47NivFreakthe vday arrows
21:09.50kadrahiloh those
21:11.41*** join/#wowace Greltok (i=112b1d43@gateway/web/ajax/mibbit.com/x-aafd4a930c94bc55)
21:18.23*** join/#wowace Zao (i=zao@pdpc/supporter/student/zao) [NETSPLIT VICTIM]
21:18.23*** join/#wowace Cheadstina (i=chead@0x573bcffc.henqu2.dynamic.dsl.tele.dk) [NETSPLIT VICTIM]
21:21.06Repo10autocombatlog: 03Skeggiold * r10 AutoCombatLog.toc: Updated .toc file for 3.0.9
21:23.10*** join/#wowace cncfanatics1 (n=cncfanat@48.25-201-80.adsl-dyn.isp.belgacom.be)
21:24.14*** join/#wowace Cheadstina (i=chead@0x573bcffc.henqu2.dynamic.dsl.tele.dk)
21:26.45CrazyBenny_nayone knows, if its possible to start custom timerbar in bigwigs with slashcommand?
21:27.14Gnarfoz<PROTECTED>
21:27.30vhaarror /bwlcb for local
21:27.44*** join/#wowace Sunwind (n=Paradox@cpc1-brmb6-0-0-cust576.bagu.cable.ntl.com)
21:28.11CrazyBenny_cheers
21:28.30Primerwtf is "The Ice Stone has melted!"?
21:28.41*** join/#wowace pompy1 (n=Pomp@c-71-58-3-50.hsd1.nj.comcast.net)
21:30.29CrazyBenny_everytime server hamster dies, The ice stone melts
21:30.38harlhah.. my emotefu's been totally outdated, for 11200.. lol
21:31.03AKXharl, it still works, doesn't it? :P
21:31.20harlit's stopped with 3.0.something
21:31.23AKXOh.
21:31.28Kuja^~wowalert
21:31.29purlhttp://launcher.worldofwarcraft.com/alert (US); http://status.wow-europe.com/en/alert (EU) [NB: URL goes to 404 unless there's an active alert]
21:31.30AKXEmoteFu2 or just EmoteFu?
21:31.37harljust emotefu
21:35.11Repo10big-wigs: 03Rabbit * r4970 Northrend/Malygos.lua: Cleanups, remove Arcane Overload timers and messages.
21:36.39Gnarfozvhaarr: wryyyyyy
21:36.53vhaarr"wry"?
21:36.58Gnarfozmeme
21:37.06Gnarfozactually I was gonna ask why you removed those timers ;)
21:37.17vhaarrbecause they're just spam
21:38.03Gnarfozhm, I kind of used the timers now and then to see if it was ok to ignore one of the domes
21:38.24Gnarfozand wait for the next... or if we'd be melted to bits by his breath in the mean time ^^
21:44.23NeoTronisn't arcane overload the deep breath thing or is that something else?
21:45.41durcynno, overload is the random target nuke
21:45.55*** join/#wowace Tuikku (n=tuikku@as36-201.tontut.fi)
21:49.32vhaarroverload is the random target nuke that creates the shields
21:49.47vhaarrI removed the timer until the next one
21:51.23durcynoh, i must be thinking of the barrage from the scions
21:52.21Primersigh, GetInstanceDifficulty() returns 2 if you zone back into the world and you have it set to heroic
21:53.32NeoTronah
21:53.51NeoTronyeah that's pretty pointless to have a timer for I'd say
21:55.40Fisker-lol
21:55.51Fisker-someone just ninjaed a satchel of spoils from sartharion
21:56.57NeoTronthe END of the WORLD!
21:57.04Repo10gnomishyellowpages: 03lilsparky 04r32beta * r33 : Tagging as r32beta
21:57.45MegalonFiskerding recieves loot: [Satchel of Spoils].
21:57.52*** join/#wowace Tinyboom (n=nahh@112.80-202-155.nextgentel.com)
21:57.52Megalons/ding/din/
21:57.54Megalon:s
21:59.32Primerwtf, why would /dump MyAddon.db.profiles be different when inside an instance than outside?
21:59.41harlwhat's with all the empty auction house mails in my mailbox?
21:59.45Repo10gnomishyellowpages: 03lilsparky * r34 / (2 files in 1 directory): fixed dataversion recording
22:00.05harlhow can there be mails containing nothing at all
22:00.33Fisker-NeoTron that's the point :D
22:00.42Fisker-everyone lol'd at him ninjaing
22:01.56Repo10gnomishyellowpages: 03lilsparky 04r34beta * r35 : Tagging as r34beta
22:04.26harlwhy is the default action bar graphics showing again for me?
22:04.53harldoesn't want
22:05.18Camciso did you guys know that the The icestone has melted???
22:05.29sb|workyes
22:05.35sb|workglobal warming
22:05.39Camciyah
22:05.46Camcitoo many taurens farting :(
22:05.49sb|workhttp://blue.mmo-champion.com/1/14990463821-re-the-ice-stone-melting.html
22:06.47Primerckknight: trying to figure out why my pitbull3 module shows one thing for /dump MyAddon.db.profiles when outside of an instance, and something else when inside. Any thoughts?
22:07.05Primerbasically when inside an instance, it's empty
22:07.21ckknighthave anything that changes your profile on zone?
22:07.51Primererr that's the whole point...to change the pitbull profile on zone
22:08.01Primerbut my addon's pref namespace is its own
22:08.11Primerafaik...this has always worked in pre-wotlk
22:09.21Primeronly thing I changed was to detect heroic, and append a string to the end of my array key to denote heroic raids
22:09.49*** join/#wowace Fatalus (n=gaben@68-188-68-189.dhcp.stls.mo.charter.com)
22:10.30Primerself:SetDatabase("ProfileSwitcherDB")
22:11.03Primer/dump ProfileSwitcher.db.profiles
22:11.28Primerzone into heroic OS, do it again, and it's empty, and it does not switch the pitbull profile, since...it's empty!
22:11.46Primerand nothing matches
22:11.51Primers/and/as/
22:14.35*** join/#wowace Tinyboom (n=nahh@112.80-202-155.nextgentel.com)
22:14.52*** join/#wowace pompy (n=Pomp@c-71-58-3-50.hsd1.nj.comcast.net)
22:15.28Primerzoning into a normal 5 man instance doesn't change it
22:17.43NeoTronhmm interesting
22:17.56NeoTronmy ghoul got parried on Patchwerk - 14% in fact
22:18.05harlok. found out it was macaroon causing the default action bar to show. forgot to disable it again
22:18.09NeoTronguess ghouls don't do the "dps from behind" thing
22:18.54*** join/#wowace [fd] (i=54338116@gateway/web/ajax/mibbit.com/x-48a60ea074d6aaa1)
22:18.58NeoTronand in a 2.5m long fight I use icy touch/ps 3 times. long live SS glyph
22:22.05Repo10big-wigs: 03Rabbit * r4971 Naxxramas/Thaddius.lua: Hopefully fix the polarity scanning.
22:22.23vhaarrneeds to test in 10man, or someone else to test for him
22:23.55*** join/#wowace gix (i=gix@e180039039.adsl.alicedsl.de)
22:24.16*** join/#wowace [fd] (i=54338116@gateway/web/ajax/mibbit.com/x-c1fd33498b714258)
22:25.27*** join/#wowace mojosdojo (n=chatzill@p4FEFC3BE.dip.t-dialin.net)
22:25.41*** join/#wowace Sliker_Hawk (i=SlikerHa@5ad83aef.bb.sky.com)
22:25.57Fisker-would test if servers weren't shit
22:26.01Fisker-as they always are etc.
22:26.56*** join/#wowace markm_ (n=niv@gw-105.extranet.sea01.isilon.com)
22:27.08NivFreakhrmm
22:27.12*** join/#wowace SlikerHawk (i=SlikerHa@5ad83aef.bb.sky.com)
22:27.14NivFreakmy launcher is downloading
22:27.46*** join/#wowace PProvost (n=PProvost@WoWUIDev/WAU/Admin/Pprovost)
22:27.46*** mode/#wowace [+v PProvost] by ChanServ
22:27.52*** join/#wowace orionshock (n=chatzill@ip68-225-195-1.ph.ph.cox.net)
22:27.57NivFreakI can't read what it is though
22:28.02NivFreakit's garbled
22:28.49NeoTrondoes "skynet" mean something to you?
22:28.56NivFreakhehe
22:29.02NivFreakseems to have been a launcher update
22:31.11Primersigh, seems that GetInstanceDifficulty() always returns 2
22:31.40*** join/#wowace Medalist (n=Medalist@88.245.22.19)
22:31.44Fisker-my launcher isn't downlaoding :(
22:32.45Bruners~fail Fisker-
22:32.46purlYou suck at everything in life, Fisker-. I hate you because you fail.
22:32.56CrazyBenny_Primer: its bugged indeed, when you enter 25men and then 10men, it still returns 25men mode, even after relog
22:33.04CrazyBenny_it resets after a time
22:34.39Pneumatusis there any difference in using strlen(string) vs #string?
22:34.48PrimerCrazyBenny_: you know of any other way to get if it's heroic?
22:35.01*** join/#wowace Tinyboom (n=nahh@112.80-202-155.nextgentel.com)
22:35.34GreltokPneumatus: strlen is the old way.
22:35.54Pneumatusim guessing #string is more optimal because its not a function call?
22:36.22GreltokProbably.
22:36.40*** join/#wowace [fd] (i=54338116@gateway/web/ajax/mibbit.com/x-08e75a3496d0a75c)
22:37.58NeoTronPrimer: GetCurrentDungeonDifficulty
22:39.04GreltokPneumatus: Reference manual doesn't indicate efficiency, but I'd wager # is the better choice.
22:39.04Greltokhttp://www.lua.org/manual/5.1/manual.html#2.5.5
22:39.05Greltokhttp://www.lua.org/manual/5.1/manual.html#pdf-string.len
22:39.05*** join/#wowace robotusch (n=robotusc@50A2DA43.flatrate.dk)
22:40.24PrimerNeoTron: same retunr values as the other one?
22:40.35Primer1 = normal/not in instance, 2 = heroic
22:40.51Primerwowwiki doesn't have a page for that one
22:41.04NeoTron1 = normal, 2 = heroic, 3 = epic
22:41.23Repo10big-wigs: 03mojosdojo * r4972 Northrend/Malygos.lua: BigWigs: deDE update for Malygos
22:41.33PrimerNeoTron: Ok, thanks
22:41.40NeoTronuse with http://www.wowwiki.com/API_IsInInstance ..
22:41.41*** join/#wowace [fd] (i=54338116@gateway/web/ajax/mibbit.com/x-183e4bb6e6cf6980)
22:43.12*** join/#wowace Taroven_ (n=chatzill@FL-ESR1-69-61-177-254.fuse.net)
22:45.17CrazyBenny_NeoTron: cheers, was looking for that aswell
22:45.55NeoTronand yeah I had the same issue with that other call. it's not accurate
22:46.10*** join/#wowace Tuikku (n=tuikku@as36-201.tontut.fi)
22:47.21NivFreakPrimer: there's a UI forum thread saying that it's bugged
22:47.26NivFreakscrolls down
22:49.12durcyn"RandomMountSelect"?  jesus, are mount addons the new gold display cruft :/
22:49.23CodayusYes
22:49.51Fisker-slaps durcyn around a bit with a large trout
22:50.42*** join/#wowace [fd] (i=54338116@gateway/web/ajax/mibbit.com/x-722c5df3c5996d04)
22:51.28ckknighthey all, the rating algorithm on curse.com has been fixed. Before it was causing some addons to have >5 rating and other oddities.
22:51.31NivFreakI wish they'd fix the [flyable] check
22:51.53durcyn~whalecrit Fisker-
22:51.53purlACTION crits Fisker- with a mathematically skilled whale named Isaac for #NaN. Fisker- dies
22:53.53PrimerNivFreak: agreed
22:54.07Fisker-slaps ckknight around a bit with a large trout
22:54.39*** join/#wowace Mochito (n=smbdy@78.43.232.16)
22:54.46Mochitosup
22:54.50ckknightno, Fisker-
22:54.53ckknighthowdy, Mochito
22:55.04Mochitoim searhing for an addon which lists all proffesions
22:55.07Mochitois there anything?
22:55.19Mochitoarchud f.ex. listed all portals for my mage
22:55.30Mochitosmthn like that =/ had to use all 10bar in bt
22:56.37Fisker-yes ckknight
22:56.38Fisker-slaps ckknight around a bit with a large trout
22:56.45durcynthat wasn't archud, but you might try OPie, Mochito
22:57.03Primersigh, IsInInstance() doesn't seem to work either!
22:57.27ckknightMochito: f.ex. is a horrible abbreviation.
22:57.29ckknightso you know
22:57.34ckknighte.g. too good for you?
22:58.05Mochito^^ my english isnt so good so, sorry for that
22:58.09Mochito*that
22:59.10NivFreakMochito: autobar?
22:59.22*** join/#wowace Tuller (n=muffins@c-76-27-160-125.hsd1.va.comcast.net)
22:59.31ckknightwell, e.g. is Latin
22:59.32ckknight:P
22:59.54Tullergratis
22:59.54Mochito<_<
23:00.02ckknightexempli gratia
23:00.13ckknightafaik
23:00.16Tullerexempli gratia
23:00.26Tullerlatin was 5 years ago, so bah
23:00.42Tulleror was it 6...
23:00.49Tuller6!
23:01.28Megalon6!? that's a whole lotta years
23:01.37Tulleryes
23:01.44Tullermore than I took it for
23:02.09Tullerso out of curiosity, did anyone get a pm from bioware people?
23:02.20ckknightI took it in like 9th grade
23:02.21Megalonand you still remember things 720 years after, nice!
23:02.33ckknightso I was like, 14...
23:02.37ckknightso, 7 years ago
23:02.41Tuller8th grade'd
23:02.54Tullerbut 4 or 5 years of it
23:02.57Mochitolet me explain properly what im searching for, so there wont be any misunderstandings :)
23:03.01ckknightah, I only took one year
23:03.04Tuller753 bc
23:03.15ckknightstill, people should know "i.e." and "e.g." if they know written English
23:03.24Mochitoi want bars or something similiar to my professions, without using the 10bars i already have
23:03.29Mochito*for
23:03.41Repo10big-wigs: 03Rabbit * r4973 / (3 files in 2 directories):
23:03.44RepoError out when modules register invalid combat listeners and fix Loatheb not to do so.
23:04.14durcynMochito: as we already stated, try AutoBar or OPie
23:05.14Mochitoim going to try ^^ i just wanted to make clear everybody understood me
23:05.39Tullerbuffet?
23:06.04SkellumCK hows PB4 going?
23:06.37Tuller4x the salmonella
23:08.41NivFreakI'd like to try OPie out at some point
23:10.04Mochitoopie is a nice addon but doesnt fit my interface
23:10.14Mochitolooks to futuristic for me ^^
23:10.32NivFreakI run a pretty simple interface
23:10.42NivFreakI had to make sexymap less sexy looking to fit in
23:12.15Camciopie is awesome
23:12.34Mochitoas mentioned really nice thing just not my taste :)
23:13.04NivFreakI wish I could get the icehud author to add a couple of the things I'd like
23:13.10Tulleropie is really pretty, and I _should_ have a use for it
23:13.12Tullerbut I don't
23:14.10waallenIs anyone else's CC being updated to a corrupted version?
23:16.41NivFreaklol
23:16.42dodgaI looooove OPie :D
23:16.45NivFreakdid WWS kill the forums?
23:16.57dodgaOnly annoying thing: author updates stuff and kills your settings doing so
23:17.08dodga"nice, my 10 custom rings are gone"
23:17.30EndI had that happen once
23:17.48NivFreaksounds like pitbull
23:17.49durcynyou could toss 'em in a file and copy it between versions instead of relying on savedvars
23:17.49NivFreak;)
23:19.58*** join/#wowace Tuller (n=muffins@c-76-27-160-125.hsd1.va.comcast.net)
23:20.51NivFreakI want my WWS subscription refunded
23:20.56NivFreakthat prick lossendi
23:20.59*** join/#wowace Tuller_ (n=muffins@c-76-27-160-125.hsd1.va.comcast.net)
23:21.13sylvanaarwhat
23:21.32NivFreakthe forums are now gone completely
23:21.38NivFreakhe hasn't responded in months
23:21.40NivFreakshit is broken as hell
23:21.44Mochitoautobar was just what i was searching for
23:21.48Mochitothanks a bunch
23:21.52NivFreakMochito: np
23:23.57*** join/#wowace Worf (n=worf@84-119-46-51.dynamic.xdsl-line.inode.at)
23:23.57ckknightwe need a new poll on wowace
23:25.02harlwhat could be the reason, that my friend's wow loads GatherMate on login but doesn't show its entry in the interface->addons thing?
23:25.46drweirdweird. came home, sat down to a "Curse Updater Corrupt" message
23:26.10harlwhen i do the same thing here, completely removing anything gathermate, putting back in a fresh copy, loading wow, the entry is there for me. so why not for anyone else?
23:26.19NivFreakdrweird: a couple people are reporting that
23:26.48NivFreakharl: any lua errors?
23:27.04NivFreakI use Gathermate without issues
23:28.11drweirdniv: yeah dunno, i fired up curse again and it updated just fine.  maybe it started downloading the new client before it was finished uploading to the site or something (which would be odd, im sure they just move it in place or something)
23:29.02NivFreakpersonally I just blame ckknight
23:29.02Repo10bad-boy: 03funkydude * r241 / (2 files in 1 directory): BadBoy: blacklist update
23:29.17Kuja^NivFreak: heh, with that launcher update they'd removed the broken opengl option :D
23:29.18*** join/#wowace Kilroo (n=Kilroo@cpe-098-026-168-017.triad.res.rr.com)
23:29.29harlNivFreak: i can't be a 100% sure about there being no errors, but my friend says there's nothing showing up when she logs in and she doesn't have anything like bugsack, so i'm assuming that there are no errors, right?
23:29.56ckknightNivFreak: no u
23:30.03NivFreakharl: I always end up putting in bugsack, I seem to lose errors without it
23:31.14Repo10bad-boy: 03funkydude 04v2.2.1.3 * r242 : Tagging as v2.2.1.3
23:31.50Repo10big-wigs: 03Pettigrow * r4974 Naxxramas/Thaddius.lua: frFR Update
23:36.05harlNivFreak: i just remembered there's an option to enable/disable the display of lua errors in interface->help, but restarting the game with it enabled didn't bring up any errors.
23:36.40harlNivFreak: i feel that bugsack would be a bit overthetop for her, since the only other add-ons she's got are MobMap and Automaton. i'm not getting any errors at all and i've got a hundred more add-ons loaded (including those 3).
23:37.12Groktaris it possible to turn off server side keybinds/macros?
23:37.35Groktarand store everything locally?
23:38.01ulicI think I remember something about cvars for that stuff, but I'm not 100% sure.
23:38.02harlwhat's a server side keybind to you?
23:47.28ArrowmasterGroktar: check ui forum stickies
23:47.36Funkeh`Does the updater jus tplain refuse to work for anyone else, it gets to about halfway through and dies when I launch with the launcher, if I manually click the updater exe it works fine
23:47.58Funkeh`did it for the previous patch too
23:49.55TradeMarknewp
23:51.22Groktari found it
23:51.29Groktar/console synchronizeSettings 0
23:51.39Mochitoi need a little help with autobar, is there way to make it only show when i press for example shift?
23:51.46Mochitomouseover sucks =/
23:52.29cncfanatics1http://bbs.ngacn.cc/read.php?tid=2196469&fpage=1 oO
23:52.34cncfanatics1I didn't know koreans traducted stuff
23:56.26*** part/#wowace Mochito (n=smbdy@78.43.232.16)
23:57.09*** join/#wowace Wizardling1 (i=Durandal@ip-118-90-40-49.xdsl.xnet.co.nz)
23:57.14Wizardling1Hmmm... the text in the download status of the WoW Launcher app is superimposed on the top of other text, garbling it
23:57.18Wizardling1this happen to anyone else?
23:57.23Wizardling1Also - anyone else find the main advert is broken? Clicking on it does nothing (still talking about the WoW Launcher app)
23:57.53NivFreaklol
23:57.58NivFreaklossendi responded to me in email

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