Path of Maps - Track your map runs
I released a new version of the desktop app to allow you to record drops other than maps: uniques, divination cards, currency etc... Check it out http://pathofmaps.com/articles.
- download the new version here: https://github.com/niuage/popom/releases/tag/v0.1.2 - download the small AHK script here: http://pathofmaps.com/pom.ahk (it just makes it easier to send drops, by copying the item and sending the "> drop" command in one shortcut.) Track your map runs: http://pathofmaps.com (retired) Retired item indexer: https://github.com/niuage/poexplorer Last edited by niuage#2922 on Nov 28, 2015, 11:54:37 PM
|
|
I was testing new version of your app and i couldn't copy t12 map dropped from boss on Evil Secrets Bazaar Map. I had tried couple times. Four other maps 8-11 were copied correctly.
I use your makro script. Char: iceheat I like a lot your app and i did many maps with previous version. Btw. Could you add tag for maps from boss? |
|
" Thanks for reporting the error. I found the issue and I deployed a fix! The map wasn't parsed properly because it was a normal map with quality, so the base name included "Superior", which I didn't take into account. I haven't had time to test the fix properly, but I will later. I'll also make sure to add tests related to superior maps. Just to be sure, you want to be able to "tag" maps that dropped from bosses? Track your map runs: http://pathofmaps.com (retired)
Retired item indexer: https://github.com/niuage/poexplorer |
|
That AHK script will kill the usual function of the hotkey outside of PoE. Try switching the modifier to shift (+) and you will notice it.
I have solved the issue like this:
Spoiler
#IfWinActive Path of Exile +x:: ChatCommand("/remaining") ChatCommand(Text) { BlockInput On SendInput {Enter} Sleep 2 SendInput %Text% SendInput {Enter} BlockInput Off return } |
|
Thanks, I'll update the script as soon as possible :)
edit: Looks good?
Spoiler
; Shift + D ; Hover over the item you want to log with your current map, and ; press "Shift + D". It will copy the item, then send the ">d" (drop) command. ; If you want to log several items in succession, please wait at least 2 seconds in between each drop command (to allow the desktop app to detect the command and send the copied item). ; #IfWinActive Path of Exile +d::chatCommand('>d') ; Shift + S ; Hover over the map you're about to run and press Shift + S. ; It will copy the map and send the "> start" command. ; #IfWinActive Path of Exile +s::chatCommand('>s') chatCommand(text) { BlockInput On Send ^c Sleep 2 Send {Enter} Sleep 2 Send %text% Send {Enter} BlockInput Off return } Track your map runs: http://pathofmaps.com (retired) Retired item indexer: https://github.com/niuage/poexplorer Last edited by niuage#2922 on Nov 29, 2015, 7:41:46 PM
|
|
Thanks for fast fix.
Ill have more time to t10+ maps today and ill try new log valuable item drops function. " Yep. It would be cool to know in the glance which maps dropped from bosses and also so encouraging knowing how many of them are t1-5. ;p I'm not sure but somtimes i had 2 maps from boss 1st low lvl and 2nd high lvl. Its looks like 1st can be dropped as t1-to_same_map's_lvl and 2nd as a chance for +2LvL map. It could be from something breakable too but it happend on couple of maps. On Plateau i'm almost sure it wasen't anything around boss. Keep up the good work mate! |
|
" A map boss can drop up to +2 map, the number of maps a boss can drop is not limited. The confusing part is the boss has a map only spot with a 50% drop rate (this map, like all others the boss can drop, ranges from Tier 1 through current map Tier + 2). This Dry Penisula Map both of the Tier 10s I found came from the same boss. Like all other things in this game it is at the hands of RNG. @ niuage, I finished Eternal last night, and will work on a review of sorts today. Thanks again. edit: was to fix the url link. Last edited by ChronoExile#0033 on Nov 30, 2015, 7:35:47 AM
|
|
@bolec ok! Might not be my top priority now as I'm working on a search feature (which will also be very useful to create stats), but I'll get to it. Potentially you could use notes with the same format all the time (ex: 5, 10 from boss), and when I implement the feature, then I can run a script to update your maps, if you care enough.
How would you see that work basically? Copy the map, then instead of the simple "> drop" command, have a "> drop boss" command? @ChronoExile I saw that you reached 90 yesterday, congrats! I only made it to 86 in hardcore personally. Track your map runs: http://pathofmaps.com (retired)
Retired item indexer: https://github.com/niuage/poexplorer |
|
" If you would make another command it would be the best becouse if someone wouldn't care to tag map as the boss drop he would have copied map still. My point is to have icon next to tagged map. I have been using notes for tag bosses drops. Take your time i'm not in hurry. " Thanks for info. I'm not so up-to-date recently not to much time, to many other games. One thing about copy valuable item drops. It should check if item is unique becouse when ive tried to copy 6s normal maul and i got copied unique same base. I couldn't remove this item. Master command its case sensitive (ex: > master Zana don't work). Ahk script have errors. You should change ' to ". Also it should be used allways on local chat, i'm trying to find better command maybe adding /. I have sent some commands to my customers today. |
|
@bolec
In the "> drop boss", the "boss" would be optional, and it would still send the copied map. So basically it would work for you or someone who doesnt care about tracking this info I think. I thought I did check that it was unique! Thanks for the report, I'll fix that. I'll update the script as well. It's annoying because I just have a mac, and I have to reboot on windows every time I want to actually test the changes live. So I dont always do it ^^. Yea, this command is case sensitive, I'll update when I can. Track your map runs: http://pathofmaps.com (retired)
Retired item indexer: https://github.com/niuage/poexplorer |
|