IRC log for #arl on 20121016

01:52.57*** join/#arl Ressy (~Ressy@108.162.157.134)
01:52.57*** join/#arl Ressy (~Ressy@unaffiliated/ressy)
01:52.58*** mode/#arl [+v Ressy] by ChanServ
02:00.01Ressygeez...
02:00.04Ressywowhead's broken again
02:00.25RessySo much for workking on collectinator. :\
02:33.03pompy:O
02:39.52AckisB=====D
02:48.04pompylo
02:48.05pompyl
04:54.43Ackispompy: tab in
06:19.26*** join/#arl Elkano (~elkano@WoWUIDev/WoWAce/Elkano)
06:22.04TorhalAckis: Eat monkies.
07:00.36ElkanoTorhal, fix PetTheory ;)
07:06.05TorhalElkano: If I knew areas where the zone filters break down I would.
07:06.34Elkanothe strange thing is that it sometimes fixes itself :/
07:07.16TorhalI don't see how (private.subzone_name ~= "" and source_text:find(private.subzone_name) would fix anything.
07:07.33TorhalWith or without the ~= "" check, the result should be the same
07:08.26TorhalAt least, that's what sidji says fixed it for him.
07:09.13sidjisubzone is in this area ""
07:09.38sidjiso a find("") maches always
07:10.24Elkanoso walking around in SW should force the bug?
07:10.58sidjiyep
07:11.01Torhalsidji: Hrm
07:11.05TorhalThat does make sense.
07:11.21sidjiwhere subzonetext is "trade district" all is fine
07:12.07TorhalThough if it doesn't match anything for the zone_text or real_zone_text…I still don't see how the subzone_text could trip it up
07:12.17TorhalMeh.
07:15.00sidjiit took me over one hour to find this
07:17.08TorhalDoesn't match zone_name, check real_zone_name. No match? Check subzone_name.
07:17.16TorhalSo you're saying that causes it to match everything?
07:17.26TorhalBecause the reports I was getting is that NOTHING shows.
07:21.33TorhalI pushed an alpha with that change, BTW.
07:21.37Elkanoyeah, it showed ALL
07:21.43TorhalGotcha.
07:21.46Elkanoand from code, it makes sense
07:22.09TorhalI was thinking that it showed nothing due to previous reports so that's why I was WTFing on how that would possibly work.
07:23.11Elkanoalso, wouldn't it make sense to store the data in local vars before the loop to save on table lookups?
07:30.51TorhalElkano: Yes, but I just got tired of people demanding the feature and threw that in as a stopgap
07:31.05Elkano^^
07:31.12TorhalBeen working on Collectinator when doing code at all lately. Sleeplack and whatnot.
07:31.35Elkanoyeah, was just thinking since it's a function run based on events and not user interaction
07:33.49TorhalOh, I definitely agree.
07:33.55TorhalBut I said fuck it for now.
07:34.56TorhalPlus I need to get on the PTR and see if it even matters
07:35.05TorhalThey rolled most of the functionality into the default UI
07:35.11TorhalThough "filtering" isn't "sorting".
07:42.52sidjidid blizzard fix "Jade Forest" vs "The Jade Forest"? in mop beta were both possible in sourceText
07:46.14TorhalNo clue. Doubt it unless they've done so in 5.1
07:59.14sidjiI hate these blocked action errors
09:01.38Ackispompy: you alive/around?
10:09.08Ackislua> source = "Pet Battle: A, X Pet Battle: B, Z|n"; source:gsub("Pet Battle" ", "")
10:09.09lua_botAckis: luabot:1: ')' expected near '", "'
10:09.30Ackislua> source = "Pet Battle: A, X Pet Battle: B, Z|n"; print(source:gsub("Pet Battle" ", ""))
10:09.30lua_botAckis: luabot:1: ')' expected near '", "'
10:10.15Ackislua> source = "Pet Battle: A, X Pet Battle: B, Z|n"; print(source.gsub("Pet Battle" ", ""))
10:10.15lua_botAckis: luabot:1: ')' expected near '", "'
10:10.20Ackisfffuuu
10:11.14Ackislua> source = "Pet Battle: A, X Pet Battle: B, Z|n"; print(source.gsub("Pet Battle", ""))
10:11.15lua_botAckis: luabot:1: bad argument #3 to 'gsub' (string/function/table expected)
10:11.30Ackislua> source = "Pet Battle: A, X Pet Battle: B, Z|n"; print(source.gsub("Pet Battle", ""))
10:11.30lua_botAckis: luabot:1: bad argument #3 to 'gsub' (string/function/table expected)
10:11.42Ackislua> source = "Pet Battle: A, X Pet Battle: B, Z|n"; print(source:gsub("Pet Battle", ""))
10:11.43lua_botAckis: : A, X : B, Z|n, 2
10:12.45Ackislua> source = "Pet Battle: A, X Pet Battle: B, Z|n"; source = source:gsub("Pet Battle:", ""); source = source:gsub("|n:", ""); for token in source_text:gmatch("([^,]+)[,%s]*") do print(token) end
10:12.46lua_botAckis: luabot:1: attempt to index global 'source_text' (a nil value)
10:12.54Ackislua> source = "Pet Battle: A, X Pet Battle: B, Z|n"; source = source:gsub("Pet Battle:", ""); source = source:gsub("|n:", ""); for token in source:gmatch("([^,]+)[,%s]*") do print(token) end
10:12.54lua_botAckis:  A, X  B, Z|n
10:13.16Ackislua> source = "Pet Battle: A, X Pet Battle: B, Z|n"; source = source:gsub("Pet Battle:", ""); source = source:gsub("\|n:", ""); for token in source:gmatch("([^,]+)[,%s]*") do print(token) end
10:13.17lua_botAckis:  A, X  B, Z|n
10:15.41Ackislua> foo = "A|n"; print(foo:gsub("|n", ""))
10:15.41lua_botAckis: A, 1
10:43.55sidjiwhat do you want to do?
11:22.59*** join/#arl Ressy (~Ressy@unaffiliated/ressy)
11:22.59*** mode/#arl [+v Ressy] by ChanServ
11:50.42sidjiAckis: do you want the pets in each zone or the zones for each pet?
12:00.23ElkanoI guess he doesn't really know ;)
12:01.11Ressylol
12:01.31RessyI don't think we've really started work on the pet stuff yet.
12:07.22sidjizonepets = {
12:07.23sidji[4] = {418,420,448,466,467,468,635}, -- Durotar
12:07.23sidji[9] = {378,385,386,391,477}, -- Mulgore
12:07.23sidji[11] = {386,419,474,631,635,646,649}, -- Northern Barrens
12:07.23sidji[16] = {386,417,419,443,445,448,459}, -- Arathi Highlands
12:07.25sidji[17] = {406,430,431,432,433,438,851}, -- Badlands
12:07.28sidji[19] = {414,415,416,635}, -- Blasted Lands
12:07.30sidji[20] = {378,417,450,454,458,626,646}, -- Tirisfal Glades
12:07.33sidji[21] = {378,379,387,417,420,455,627,628}, -- Silverpine Forest
12:07.35sidji[22] = {378,379,456}, -- Western Plaguelands
12:07.37sidji[23] = {393,406,414,457,626,627,628}, -- Eastern Plaguelands
12:07.40sidji[24] = {378,379,417,420,450,452,453,640,646,648}, -- Hillsbrad Foothills
12:07.43sidji[26] = {393,417,446,448,449,450}, -- The Hinterlands
12:07.45sidji[27] = {378,379,387,401,404,417,419,420,440,441,442,450,634,635}, -- Dun Morogh
12:07.47sidji[28] = {415,423,427,428}, -- Searing Gorge
12:07.50sidji...
12:07.52sidjipetIDs in each zone
12:27.15RessyI think they were all imported in already
12:27.28RessyThey set up a scanner to scan the pet journal, and import the zones from that
12:27.40RessyEverything's just commented out so that we can later add in zones correctly.
12:27.50Ressy-- Long-tailed Mole -- 61317
12:27.50Ressy--[[ Pet Battle: Dun Morogh, Northern Stranglethorn, The Cape of Stranglethorn, Un'Goro Crater ]]--
12:27.50Ressypet = AddPet(61317, V.MOP, Q.COMMON)
12:27.50Ressypet:AddFilters(F.HORDE, F.ALLIANCE, F.BATTLE_PET)
12:28.11RessyLooks like its all in.. Just gotta do the manual work.
14:08.06Torhalbeats Ackis for spamming.
14:08.11TorhalTake that shit to PMs.
14:08.32*** join/#arl pompy1 (~Mike@68.36.135.0)
15:09.10*** join/#arl Ressy (~resa1983@unaffiliated/ressy)
15:09.10*** mode/#arl [+v Ressy] by ChanServ
15:20.07*** join/#arl Ressy (~resa1983@bas2-toronto61-2925080033.dsl.bell.ca)
15:23.07*** join/#arl Ressy (~resa1983@unaffiliated/ressy)
15:23.07*** mode/#arl [+v Ressy] by ChanServ
16:02.19*** mode/#arl [+v pompy] by ChanServ
16:42.01*** join/#arl Elkano (~elkano@WoWUIDev/WoWAce/Elkano)
16:58.09pompyElkano: lol gl with that, itll take wowhead ages to fix shit in their db
16:58.10pompy;)
16:58.20ElkanoI know :/
16:58.36Elkanocan't wait for WoWDB finishing their API...
16:58.43pompythe money rewards fior quests are stilll incorrect
16:58.50pompylol
16:59.02Elkano(will take them ages, too, but I can have Torhal poke them every now and then ;) )
16:59.09pompyheh
17:14.57*** join/#arl Torhal|work (~torhal_wo@173-14-207-161-huntsville.hfc.comcastbusiness.net)
17:14.57*** mode/#arl [+o Torhal|work] by ChanServ
17:17.11*** join/#arl Torhal|work (~torhal_wo@173-14-207-161-huntsville.hfc.comcastbusiness.net)
17:17.11*** mode/#arl [+o Torhal|work] by ChanServ
17:20.40*** join/#arl Torhal|work (~torhal_wo@173-14-207-161-huntsville.hfc.comcastbusiness.net)
17:20.40*** mode/#arl [+o Torhal|work] by ChanServ
17:25.22*** join/#arl Torhal|work (~torhal_wo@173-14-207-161-huntsville.hfc.comcastbusiness.net)
17:25.22*** mode/#arl [+o Torhal|work] by ChanServ
17:27.55*** join/#arl Torhal_ (~torhal_wo@173-14-207-161-huntsville.hfc.comcastbusiness.net)
17:27.56*** mode/#arl [+o Torhal_] by ChanServ
17:31.56*** join/#arl Torhal|work (~torhal_wo@173-14-207-161-huntsville.hfc.comcastbusiness.net)
17:31.56*** mode/#arl [+o Torhal|work] by ChanServ
17:34.16*** join/#arl Torhal|work (~torhal_wo@173-14-207-161-huntsville.hfc.comcastbusiness.net)
17:34.17*** mode/#arl [+o Torhal|work] by ChanServ
17:58.16*** join/#arl Torhal|work (~torhal_wo@76.164.170.2)
17:58.16*** mode/#arl [+o Torhal|work] by ChanServ
18:04.28Ackissheesh maintenance was supposed to be over 4 minutes ago!
18:09.54Torhal|workstuffs Ackis into an olive.
18:17.08Ressylol
18:17.19RessyCurse having problems Torhal?
18:26.12AckisCurse always has problems
18:27.39Ressylol
18:27.49Torhal|workRessy: All caused by Ackis.
18:28.15Torhal|workOur Internet provider is having hard outages, so we had to switch to our cable backup.
18:34.32Ressyah
18:34.35Ressycomcast ftl
18:36.01Torhal|workWell, Comcast is the backup
18:36.03Torhal|workHeh
18:36.05AckisI'm writing this pet dataminer shit knowing fullwell that Torhal|work will rewrite it :(
18:36.15Torhal|workOur regular provider is 100/100 fiber
18:36.28Ressy...
18:36.31Ressy[13:57:49] * @Torhal|work (~torhal_wo@173-14-207-161-huntsville.hfc.comcastbusiness.net) Quit (Read error: Connection reset by peer)
18:36.43Ressyyou were dc'ing like mad while on the backup
18:36.48Torhal|workRessy: Yah, we had issues setting the backup up
18:37.01Torhal|workWe hadn't used the cable modem for over a year
18:37.07Ressylol
18:37.07Torhal|workWe simply had NO Internet before that.
18:50.27pompywtf is with the English lesson funkeh' decides to give in #wowace lolz?
18:53.14pompyLet the daily grind begin. ><
19:16.19Ackis~framexml
19:16.19purlextra, extra, read all about it, framexml is Blizzard's UI for WoW. Export code/art from the client by using the wow.exe -console or open 'World of Warcraft.app' --args -console after game loads press ~ and enter commands "ExportInterfaceFiles code" and "ExportInterfaceFiles art" (must be used on login screen); or view it online at http://github.com/tekkub/wow-ui-source , http://wowprogramming.com/utils/xmlbrowser or http://wow.go-hero.net/framexml
22:26.10*** join/#arl Ressy (~Ressy@unaffiliated/ressy)
22:26.10*** mode/#arl [+v Ressy] by ChanServ
22:34.12Ressythis is... interesting
22:37.09Torhal|workRessy: ?
22:43.05Ressyjust using arl to get info for collectinator.
22:43.07Ressyzones, etc
23:21.06TorhalAh
23:56.47pompywonder wth is with the constant CC disconnects.

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