IRC log for #wowace on 20170909

01:41.22*** join/#wowace Funkeh` (~Funkeh`@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
01:41.22*** mode/#wowace [+o Funkeh`] by ChanServ
01:57.17*** join/#wowace jlam_ (~holoirc@gateway/vpn/privateinternetaccess/jlam)
02:00.15znfI haven't pushed to wowace since the twitch merge and I'm getting a 403
02:00.18znfWhat do I need to change?
02:01.24Torhalznf: Probably your repo - they have different URLs now. Well, since November.
02:01.32znfI changed that
02:01.40znfI was referring to the username merge
02:01.57TorhalOh. I have no idea, there. :/
02:02.38znfactually, it seems to be working with old u/p from the CLI
02:02.45znfTortoiseGit doesn't want to work tough
02:08.53Stanzillaznf: did you finish your rare lfg search addon?
02:09.09znftechnically
02:09.56Stanzilladoes it work?
02:10.41znfoh, I missread
02:10.56znfI was able to do the search-part, but I couldn't figure out the automatic group creation
02:11.47*** join/#wowace Bluspacecow (~Bluspacec@121.99.98.200)
02:11.48znfwell, I did figure that out, but not when going trough the UI (like the default UI)
02:12.37znfI also didn't bother actually doing the tooltip part, Kemayo has abandoned me :P
02:13.29znfbut you could make a /slash command out of this and it's still more helpful than opening the panel manually each time, I guess https://hastebin.com/eyesinidos.lua
02:14.17znfSemlar, if the wind hasn't blown you over into the ocean, give me a snippet that takes a npcID and grabs the npc's name from the tooltip!
02:16.09Kemayoznf: I mean, you could always make that pull request you promised me... https://github.com/kemayo/wow-handynotes-legiontreasures
02:16.24znfoh, you updated it!
02:16.39znfhere's the problem - I literally changed the layout of that file completely :-S
02:18.05znfthere
02:18.33znfI *should* have probably sorted out all the tresures by questID, but after a while it got tedious
02:19.44KemayoI just sort 'em by the coordinates, I admit.
02:20.01KemayoI'll have to edit those to make the indentation consistent and undo the removal of the broken shore stuff.
02:20.28znfit was easier for me to sort the treasures by questID
02:20.58znfbut yeah, coords is probably better for that
02:21.49znfbut, if you can write me function that takes an NPC ID and returns it's name, that'd be great :P
02:22.01Torhalznf: https://github.com/Torhal/NPCScan/blob/master/Core.lua#L264
02:22.15znfnice
02:22.53znfto be fair, I think the better approach would be to use a table with all the IDs and their non-localized names, but whatever :D
02:23.05Torhalo.O
02:23.29KemayoOn a very similar note: https://github.com/kemayo/wow-silverdragon/blob/master/core.lua#L211
02:24.46znfTorhal, well, yeah, if you're on a different language client, you kind of want to search for "Vigilant Thanos" not "Wache Thanos"
02:25.10TorhalYou just asked for ID to name, not magical search stuff. :P
02:25.16znfI know :)
02:28.13Stanzillayou can push to the branch of PRs
02:28.22Stanzillathat would be easier to revert the chunk
02:28.25Stanzillaif znf is too lazy
02:28.53Stanzilla*hunk
02:31.34znfKemayo, in the HL handler, which property is the npcID?
02:32.05Kemayonpc
02:32.19znfso info.npc ?
02:32.32znflet's see
02:33.13KemayoWell, `point.npc` in my normal naming scheme.
02:34.03znfuhm
02:34.19znfI'm looking at function HLHandler:OnClick
02:34.34znftrying to do:
02:34.44znfif button == "LeftButton" and down then LFGSearchForRare(info.npc) end
02:35.54znfbut I don't think that info is accesible there, judging by the arguments passed to HLHandler:OnClick()
02:36.21KemayoIt's acquirable. Nothing there needs it currently, so I'm not bothering to work it out there right now.
02:36.29znfI need it!
02:36.32znfWhere do I get it?
02:38.31KemayoWell, a bit more existence-checking than this, but approximately `ns.points[string.gsub(mapFile, "_terrain%d+$", "")][coord].npc`
02:39.43znfthere
02:39.44znfworking
02:41.11znfthere Stanzilla https://github.com/Znuff/wow-handynotes-legiontreasures/blob/97e24d91c7164e45e83cce59e81c1c5e2d8a172e/handler.lua
02:41.24znfshift+clicking on npc name brings up the LFG search
02:41.38Stanzillathx
02:42.25znfa better approach would probably to use the C functions to check just for the existence of a group, without opening the premade finder to the string, would be cleaner I guess
02:44.07StanzillaSetAutoCreateMode the magic thing where it autofills the info?
02:44.19Stanzilla*is
02:44.36znfyeah, tough like I said, I couldn't get it to work without replicating all blizzards' functions, and I got lazy there
02:46.04znfyou would need to use most of blizzard's functions but tailored for your activity https://github.com/tomrus88/BlizzardInterfaceCode/blob/master/Interface/FrameXML/LFGList.lua#L866 866 to ~940 I think
02:46.37znfie: replace the categorizing as quest and make it go to the "custom" section
02:48.07Torhalznf: You're creating a new frame every time that function is called, instead of creating it once and referencing it.
02:48.33znfwell, I suck at Lua!
02:48.36TorhalS'why I had creation outside of the function. :D
02:48.53KemayoI also had a pre-existing function for that in the file, so I requested changes. :D
02:49.40znf...!
02:50.29StanzillaKemayo: I love that github feature :D
02:50.36znfwell, you know what to do!
02:50.41Stanzillaninja editing PRs ftw
02:51.12znfI didn't have it cloned
02:51.17znfI just edited the release on curse
02:52.37KemayoI'll steal the core of it and decline the pull request -- it's easier than hand-rebasing it against the overwritten commits. ;P
02:52.42znfyes
02:52.54KemayoAnd as we have covered, I'm lazy.
02:53.03Stanzillayou might wanna combat restrict it as well
02:53.05Stanzillaprobably taints
02:54.01znfit shouldn't
02:54.15znfdoesn't
02:54.16znf:)
02:54.25Stanzillahttps://i.imgur.com/cbAyuj4.png :D
02:54.49znfI just tried it in combat and it worked
02:54.56znfalso, why are you looking at your map in combat...
02:55.34StanzillaI do what I want!
02:56.31znfactually, a better way to do this
02:56.44znfC_LFGList.Search(6, LFGListSearchPanel_ParseSearchTerms(npcName), 0, 4)
02:56.59znfthen after C_Timer.After 1 second
02:57.05znflook at C_LFGList.GetSearchResults()
02:57.10znfif nil, no groups ^^
02:58.02znfbut you'd need some feedback then
03:03.04znfuhm, how do I check a table's length?
03:03.20znfhttps://i.imgur.com/VPHUS3M.png <- this returns 2 items when there's no group
03:03.57znfAh. Got it.
03:07.43znfhere Stanzilla https://gfycat.com/RadiantPolishedGoldenmantledgroundsquirrel
03:09.33Stanzillanow make it create a new one if none is found and the rare is spawned for you
03:09.33Stanzilla:D
03:10.06znfwaaaaay too much work
03:10.50znfgod damn it, fucking engineering
03:11.08Stanzillabe glad the engi quests are so easy
03:11.16Stanzillaall the other professions need tons of mats
03:11.18znfwish the wormhole generator would always port you to the map you're not on... >_<
03:11.25Stanzillajuwelcrafting was so fuckign expensive
03:11.30Stanzillaone of every epic gem
03:11.31znfmy engineering is 735...
03:11.36Stanzillaget rekt
03:11.59znfthere's absolutely no need to level it
03:12.08StanzillaI know
03:12.15znfthe only use is literally blingtron at 800
03:12.19znfwho cares lol
03:13.21*** join/#wowace jlam__ (~holoirc@gateway/vpn/privateinternetaccess/jlam)
03:14.35Stanzillaoh god, they started adapting the new firefox design in thunderbird
03:14.46Stanzillathis will take years and also look super broken for years T_T
03:14.55quiescens/pat Stanzilla
03:15.20StanzillaI love the fact that you, knowing my diabetic state, stopped offering cookies and pat instead
03:17.48znfgod damn that mushroom land hurts
03:17.54znfevery time I manage to get 10 stacks
03:20.37znfI swear this invasion is the hardest
03:20.46znfthe mobs hit like a truck compared to the other ones
03:21.23Stanzillafun fact: it does not get better with gear since it scales :D
03:21.55znfbut why is THIS one so hard?
03:22.00znfthe others are a walk in the park
03:26.55quiescensnerf znf
03:26.57quiescenso.o
03:28.16znfnow someone make an addon that checks for all the rare quests, sees which ones you haven't done, and every 30 minutes run a lfg search for all of them!
03:34.56*** join/#wowace bluspacecow (ca312209@gateway/web/cgi-irc/kiwiirc.com/ip.202.49.34.9)
03:43.52Kemayoznf: Okay, my repo now has the basic version.
03:45.51znfwhat's a basic version?
03:47.10KemayoThe stuff you had in the pull request. Not the "poll for groups, apply to them if they exist, create one if they don't" type.
03:48.03znfI didn't do any apply/create part
03:48.16znfI just wanted an easy way to figure out if a rare is up or not without going all the way there
03:48.37znfsimplest way to do that is to check if there are groups with that rare's name
03:49.29znfnot exactly the epitome of reliability, but better than going there or asking general/lfg
03:51.31KemayoI suppose it wouldn't be too hard to do that check in the background while showing the tooltip, then update it to include a "X groups available" note. With suitable not-messing-with-the-finder-if-it's-already-visible stuff.
03:52.08znfyup, this does it: https://hastebin.com/aramapidag.lua
03:52.16znfthe feedback is not great tough :P
03:54.23znfyou're probably going to run into some rate limitation if you do it automatically, I assume
04:02.08Torhalrates znf 5/7.
04:02.40znfI'm ok with that
04:22.05znfoh, 2 mounts in a day from the Eggs
04:42.47quiescenshow many mounts could you possibly need
04:42.50quiescenso.o
05:02.07*** join/#wowace ShadniX (dagger@p4FF9F188.dip0.t-ipconnect.de)
05:05.59Torhalmounts quiescens above znf's fireplace.
05:06.29quiescensdies.
05:16.28ErmadI am having a weird issue with curse not offering the latest packaged version of my addon
05:17.01Ermadhttps://mods.curse.com/addons/wow/angry-boss-reminders I released an packaged v0.9.1, but it still shows latest as v0.9.0. it even has 0.9.1 in the other downloads list, but download now give 0.9.0
05:17.54bluspacecowi blame Torhl
05:18.00bluspacecow*Torhal
05:18.58TorhalI stab bluspacecow.
05:20.21TorhalErmad: Check in a few minutes - I just ran a manual sync.
05:20.33Ermadokay thanks
05:34.17quiescensgives bluspacecow a cookie
05:34.51bluspacecow*noms cookie*
05:34.58bluspacecow*and Torhal's knife*
05:38.40*** join/#wowace Funkeh` (~Funkeh`@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
05:38.40*** mode/#wowace [+o Funkeh`] by ChanServ
06:58.11*** join/#wowace silentium (silentium@unaffiliated/silentium)
07:09.44GnarfozErmad: :O
07:10.01GnarfozErmad: seems like a great thing to have optionally, at least ^^
07:22.54*** join/#wowace abrcdbr (~abrcdbr@109.87.232.207)
07:29.32*** join/#wowace Funkeh` (~Funkeh`@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
07:29.32*** mode/#wowace [+o Funkeh`] by ChanServ
07:44.28*** join/#wowace Megalon (~wig0r@212-60-169-61.adsl.highway.telekom.at)
08:13.08*** join/#wowace abrcdbr_ (~abrcdbr@159.224.109.206)
09:05.50*** join/#wowace stolenlegacy (~stolenleg@213-47-49-27.cable.dynamic.surfer.at)
09:05.50*** join/#wowace stolenlegacy (~stolenleg@unaffiliated/stolenlegacy)
09:50.46*** join/#wowace ZaB|SHC| (~Zaphod_Be@ipbcc04e31.dynamic.kabel-deutschland.de)
10:37.02*** join/#wowace abrcdbr (~abrcdbr@109.87.232.207)
10:40.49*** join/#wowace abrcdbr (~abrcdbr@109.87.232.207)
10:57.58*** join/#wowace starfox (~wig0r@212-60-175-247.adsl.highway.telekom.at)
11:14.22nebulaTorhal: does that "Upate Sync Date" button in the control panel trigger a manual sync?
11:26.16*** join/#wowace ls- (~ls@cm-27-145-227-147.revip12.asianet.co.th)
12:06.02*** join/#wowace abrcdbr (~abrcdbr@109.87.232.207)
12:28.35Torhalnebula: Yes. In theory.
12:28.47TorhalIt was fub-duck for me earlier.
12:29.11nebulai tried using it last week for some people and it didn't appear to do anything
12:31.15Torhalnebula: For most of last week, sync was completely offline save for manual runs by the dev team.
12:31.17nebulaor wasn't sure if that was it's intended purpose
12:31.21nebulaso*
12:31.28nebulaah
12:31.37TorhalSo yeah, if sync fucks up, in theory that should do what you want.
12:31.44nebularoger
12:31.58TorhalI'll be most happy when sync goes away altogether.
12:32.39nebulayou mean there are active devs on the addon platform? :O
12:33.40Torhalnebula: That has been the plan for the longest time, but recently there was a "Hey! Twitch needs us!" scenario where the devs were on a deadline.
12:34.12TorhalBut yeah, barring any regressions from that - they're back on the platform.
12:34.39TorhaldarkValorous: Isn't this your shift? >.>
12:37.31*** join/#wowace Funkeh` (~Funkeh`@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
12:37.31*** mode/#wowace [+o Funkeh`] by ChanServ
12:40.58Semlarsounds like you're understaffed torhal, you should hire me
12:54.03TorhalSemlar: I'm not in charge of that sort of thing, but you seem to have Calamity built-in.
12:54.39TorhalAnyway, Semlar - we are slightly understaffed. Ask Zeldo for a stim-pak.
12:55.48Torhalstuffs quiescens into Semlar's resume.
12:55.55quiescensdies.
12:56.20TorhalGoddamn it.
12:56.30TorhalHe swore he'd be of assistance.
12:56.52nebulawould you really want to hire someone that couldn't get quiescens to die?
12:56.56Torhalstuffs Megalon into Semlar's resume.
12:57.15Torhalnebula: Yes. That is a motherfucking problem-solver.
12:58.43nebulamore like a wizard
12:58.57nebulaand you can't trust wizards
13:01.22TorhalDude, nebula, fuck off; I'm a 'izzard, 'arry!
13:02.15Megalonyou are quite the hairy lizzard indeed, Torhal
13:02.41TorhalStanzillas Megalon, not for the first time in cinematic history.
13:02.51Semlari'm attaching a copy of my map addon to my resume
13:03.22Semlarthis will be my cover letter
13:05.00TorhalI cannot trust you to not bring down the entire Amazon infrastructure, Semlar. You need to deliver your resume, in person, to Pablo Picasso.
13:05.23Semlari didn't know picasso worked at curse
13:05.40TorhalOr Kaelten. Whichever is most efficient.
13:06.11Semlar<PROTECTED>
13:06.20TorhalI would normally strive for Zeldo, but that poor bastard has a kid now, and never, ever, ever sleeps.
13:06.47Semlarit's beta
13:07.44TorhalSemlar: No. Early Alpha.
13:08.05Semlari should probably start prepping for megastorm
13:08.06TorhalDon't mistake Zeldo's kid for Zeldo himself.
13:08.23TorhalYou should really be prepping for Megalon.
13:08.44Megalonearly accesses Torhal
13:08.57Semlarlewd
13:09.46Torhalaccesses Megalon with Semlar's passphrase.
13:10.03Torhaladds code for a znf exploit.
13:40.17znfnice
13:47.25Torhalznf: This does not mean you get to take over his projects.
13:48.02znfhe has projects?
13:48.42Semlari have more projects than i'm willing to bump the toc for when they add a new update
13:48.59nevcairielshould just script that
13:53.22znfcurse should offer automatic .toc bump
13:54.59Torhalbumps znf without consideration for .toc
13:55.21TorhalAnd no, znf - an auto-ToC bump would be fucking stupid.
13:55.38znfnot auto
13:55.42znfjust one-click button
13:56.01Torhal"Hey, guys! This version is _TOTALLY_ compatible with the GODDAMN BULLSHIT UN-ANNOUNCED BREAKING CHANGES that Blizzard announced! Have fun!"
13:56.23Torhalznf: You clearly said automatic.
13:56.33TorhalDon't fuck with me. I'll feed you to Stanzilla.
13:57.02znfI really meant one-click button
13:57.13TorhalAnd you think that wouldn't be abused?
13:57.22TorhalI will fucking cut you. With quiescens.
13:57.31znfto be honest, it doesn't bother me to do the .toc bumps
13:57.34quiescensso violent o.o
13:57.37znfI'm annoyed that I have to make a tag for it :P
13:57.57TorhalDon't make me turn you into a biscuit vendor, quiescens.
13:58.58Torhalgives quiescens a biscuit.
14:01.18Torhalgives znf quiescens' business.
14:13.12*** join/#wowace jlam_ (~holoirc@gateway/vpn/privateinternetaccess/jlam)
15:20.15Megalonrude
15:23.01Gnarfoz<Stanzilla> juwelcrafting was so fuckign expensive <-- you didn't buy them last week when they were worth nothing? ^^
15:35.23*** join/#wowace jlam__ (~holoirc@gateway/vpn/privateinternetaccess/jlam)
15:50.22*** join/#wowace jlam_ (~holoirc@gateway/vpn/privateinternetaccess/jlam)
16:03.15GnarfozI wish I could get rid of the open map in combat -> taint
16:06.20quiescenso.o
16:14.34znfhow dare you open the map in combat?
16:17.52quiescensreport him
16:42.52Gnarfozon Argus? all the time
17:09.39StanzillaGnarfoz: yeah my care level was too low to look into what the professions quests need
17:20.02StanzillaI see Torhal was drunk again
17:26.20*** join/#wowace ls-_ (~ls@223.204.251.130)
17:26.38quiescensmoo
17:32.21*** join/#wowace abrcdbr (~abrcdbr@109.87.232.207)
17:49.52FiskerI want to believe Stanzilla
18:03.04quiescenswhy wouldn't you believe stanzilla?
19:48.17*** join/#wowace EthanCentaurai (~EthanCent@79-76-214-227.dynamic.dsl.as9105.com)
20:00.27Megalonbecause you are desperate
20:01.44*** join/#wowace Seerah (~umsin@2601:3c2:101:320:64f9:56d6:4219:6d7f)
20:17.11*** join/#wowace jlam__ (~holoirc@gateway/vpn/privateinternetaccess/jlam)
21:30.19*** join/#wowace Kalroth (~Kalroth@canuck.knas.io)
21:38.07*** join/#wowace abrcdbr (~abrcdbr@109.87.232.207)
21:44.58ErmadTorhal: the issue I mentioned last night, it wasnt fixed but what you tried and is still happening
22:43.11*** join/#wowace Funkeh` (~Funkeh`@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
22:43.11*** mode/#wowace [+o Funkeh`] by ChanServ
23:23.26TorhalErmad: Yeah, I saw a bit later and let the devs know. :/
23:23.48pompy~lart Torhal
23:23.48purlgets a hotmal account and SPAMs Torhal
23:24.03Torhalstabs pompy in the pompy with pompy.
23:25.01Stanzillaplease repeat that a few times
23:25.20TorhalWill a large copy/paste suffice?
23:26.04Stanzillayes
23:26.26TorhalThen, pompy should get right on that.
23:31.43*** join/#wowace Funkeh`` (~Funkeh`@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
23:31.43*** mode/#wowace [+o Funkeh``] by ChanServ
23:33.29*** join/#wowace Funkeh`` (~Funkeh`@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
23:33.29*** mode/#wowace [+o Funkeh``] by ChanServ
23:35.16pompy..............
23:56.07Megalondotdotdot
23:57.56pompy,,,,,,,,
23:58.23Megaloncommacommacomachameleon

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