Download
(2 Kb)
Download
Updated: 09/08/18 05:45 AM
Pictures
File Info
Updated:09/08/18 05:45 AM
Created:10/08/17 01:54 PM
Monthly downloads:211
Total downloads:23,951
Favorites:28
MD5:
Categories:Map, Coords, Compasses, Discontinued & Outdated
Survey The World  Popular! (More than 5000 hits)
Version: 1.5a
by: manavortex [More]
Outdated! Please do not install!

This AddOn is included in
votan's Improved Locations
Fast Travel



Prefixes zone names on your map if you have a survey or treasure map for it in your bag
Default prefix:

* Zone - you have a survey here
. Zone - you have a treasure map here


Can I change the prefixes?
Default prefix: * for survey, . for treasure map
You can:
/surveyprefix_survey yourprefix
/surveyprefix_treasure yourprefix
A space will be added auotmatically.

Compatibility
  • ZOS UI: Keyboard
  • ZOS UI: Gamepad (courtesy of rockingdice)
  • Votan's Improved Locations (courtesy of votan73)
Outdated! Now part of votan's improved locations!


- 1.5a API version bump while I clarified the description

-1.5 changed zone name matching to case sensitive - this way, Reaper's March won't show Eastmarch surveys

- 1.4 fixed the prefix just showing up every second time you'd open the map

- 1.3 makes the prefix disappear together with the surveys.
I strongly advise you to set non-letter-characters as prefixes.

- 1.2 has saved variables! You can now update the prefixes via
/surveyprefix_survey
/surveyprefix_treasure
A space will be added auotmatically.

- 1.1 brings you gamepad support. Say thanks to rockingdice, I'd have been too lazy!
Optional Files (0)


Archived Files (5)
File Name
Version
Size
Uploader
Date
1.5
2kB
manavortex
02/28/18 01:23 AM
1.4
2kB
manavortex
01/30/18 11:31 AM
1.3
2kB
manavortex
01/30/18 10:51 AM
1.2
2kB
manavortex
10/14/17 08:16 AM
1.0
3kB
10/08/17 01:54 PM


Post A Reply Comment Options
Unread 09/02/19, 02:25 PM  
NeuroticPixels
Addon Addict
 
NeuroticPixels's Avatar
Premium Member

Forum posts: 210
File comments: 865
Uploads: 0
Exclamation No Markers For Orsinium Maps

I've noticed that the Wrothgar maps don't get marks next to their location name.
Maybe it's because the maps are called "Orsinium" maps instead of "Wrothgar" maps?

Edit/Update: Never mind... I've gotten many wrothgar maps and surveys and they've all been marked... Maybe it's only like one or two that aren't getting marked? Hmmm.
Last edited by NeuroticPixels : 09/24/19 at 08:59 PM.
Report comment to moderator  
Reply With Quote
Unread 07/13/19, 02:56 PM  
manavortex
 
manavortex's Avatar
AddOn Author - Click to view AddOns

Forum posts: 138
File comments: 511
Uploads: 46
Re: ReloadUI and Prefix Issues

Hey,

Originally Posted by amber1019
I see you've been online recently, but this hasn't been updated in almost a year. Have you abandoned this addon? Do you wish someone else to take it over?
I haven't touched this because I had no idea that it's not working. At some point I tried to change the prefixes and it worked fine, I'll try to look into it some time over the next week. There was no need to update, it was working fine.

In the meantime, you can just touch the code. I think it's in the first few lines of the lua-file, it should be fine if you just switch it out.

I totally don't mind if this AddOn is cannibalised by Lost Treasure, but we programmers are lazy people, and I'm not sure if Simeon isn't too lazy to do that.

Thanks for getting back!
Report comment to moderator  
Reply With Quote
Unread 07/13/19, 02:44 PM  
NeuroticPixels
Addon Addict
 
NeuroticPixels's Avatar
Premium Member

Forum posts: 210
File comments: 865
Uploads: 0
Exclamation ReloadUI and Prefix Issues

Changing the prefixes isn't working for me.
If I try to use "/surveyprefix_survey +" or "/surveyprefix_treasure -", I get an "invalid command" message in the upper right-hand corner of the screen. Am I misunderstanding how to type the command?

I see you've been online recently, but this hasn't been updated in almost a year. Have you abandoned this addon? Do you wish someone else to take it over?
I've requested that the author of Lost Treasure simply absorbs this into that addon or their idea/implementation of it. I hope that's okay. Though, I have no idea if they'll do it. I just wanted you to know.

Thank you for what you've done!
Report comment to moderator  
Reply With Quote
Unread 04/24/19, 01:41 PM  
oofitsabug

Forum posts: 0
File comments: 6
Uploads: 0
sad to see this addon is no longer supported. anyone know a similar one?
Report comment to moderator  
Reply With Quote
Unread 12/18/17, 02:21 AM  
manavortex
 
manavortex's Avatar
AddOn Author - Click to view AddOns

Forum posts: 138
File comments: 511
Uploads: 46
Re: Refresh

Hey there,
Originally Posted by Darkstride
Is there a way to have it update the locations list without a full reloadui? The symbols remain even after completing them for a zone.
I was kind of working on that, but got sidetracked. It's on my to do list.
Report comment to moderator  
Reply With Quote
Unread 10/28/17, 08:29 PM  
Darkstride

Forum posts: 0
File comments: 74
Uploads: 0
Refresh

Is there a way to have it update the locations list without a full reloadui? The symbols remain even after completing them for a zone.
Report comment to moderator  
Reply With Quote
Unread 10/10/17, 09:47 PM  
rockingdice
 
rockingdice's Avatar
AddOn Author - Click to view AddOns

Forum posts: 10
File comments: 166
Uploads: 9
Lua Code:
  1. local function hookWorldMapFunctions()
  2.  
  3.     if nil == VOTANS_IMPROVED_LOCATIONS then
  4.         orgFunction = WORLD_MAP_LOCATIONS.SetupLocation
  5.         function WORLD_MAP_LOCATIONS:SetupLocation(rowControl, rowData)
  6.             local zoneName = rowData.locationName          
  7.             if rowControl then 
  8.                 rowData.locationName = getPrefixFor(rowData.locationName) .. zoneName
  9.             end          
  10.             orgFunction(self, rowControl, rowData)
  11.         end
  12.        
  13.         --gamepad
  14.         local orgFunctionGamepad = GAMEPAD_WORLD_MAP_LOCATIONS.SetupLocation
  15.         function GAMEPAD_WORLD_MAP_LOCATIONS:SetupLocation(rowControl, rowData, ...)
  16.             --locationName changed already, but for gamepad it uses text instead
  17.             rowData.text = rowData.locationName
  18.             orgFunctionGamepad(self, rowControl, rowData, ...)
  19.         end  
  20.     else   
  21.         orgFunction = VOTANS_IMPROVED_LOCATIONS.SetupLocation  
  22.         function VOTANS_IMPROVED_LOCATIONS:SetupLocation(rowControl, rowData)
  23.             rowData.locationName = getPrefixFor(rowData.locationName) .. rowData.locationName
  24.             orgFunction(self, rowControl, rowData)
  25.         end
  26.  
  27.     end
  28. end

added gamepad support and fixed the error message box without votan's improved locations
Report comment to moderator  
Reply With Quote
Unread 10/09/17, 11:56 AM  
syzgod

Forum posts: 46
File comments: 239
Uploads: 0
Re: Useless!

Originally Posted by Dolgubon
This addon is completely useless. I have 300 surveys and I don't need an addon to tell me they're everywhere!

Nice addon though.
For me it's perfect. I'm collecting surveys from daily writs with 4 chars then I'm doing them on every weekend or on every 2nd weekend and because of HarvestMap pins sometimes I can't see the red X and I have to port back again at the end. So it's very useful for me that I can see if there is any survey left in that zone.
Last edited by syzgod : 10/09/17 at 12:23 PM.
Report comment to moderator  
Reply With Quote
Unread 10/09/17, 09:24 AM  
manavortex
 
manavortex's Avatar
AddOn Author - Click to view AddOns

Forum posts: 138
File comments: 511
Uploads: 46
There are two kinds of people...
Report comment to moderator  
Reply With Quote
Unread 10/09/17, 01:52 AM  
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view AddOns

Forum posts: 408
File comments: 885
Uploads: 21
Useless!

This addon is completely useless. I have 300 surveys and I don't need an addon to tell me they're everywhere!

Nice addon though.
Last edited by Dolgubon : 10/09/17 at 01:53 AM.
Report comment to moderator  
Reply With Quote
Unread 10/08/17, 11:43 PM  
syzgod

Forum posts: 46
File comments: 239
Uploads: 0
Amazing!

Lifesaver! Big thanks!
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: