Download
(3 Kb)
Download
Updated: 06/01/14 04:47 PM
Pictures
File Info
Compatibility:
Craglorn (1.1)
Updated:06/01/14 04:47 PM
Created:04/26/14 06:25 AM
Monthly downloads:97
Total downloads:28,524
Favorites:63
MD5:
Categories:Discontinued & Outdated, Discontinued & Outdated
LightWeightMinimap  Popular! (More than 5000 hits)
Version: 0.7
by: Shinni [More]
Use Votan's Minimap instead:
http://www.esoui.com/downloads/info1...nsMiniMap.html




Small minimap addon that shouldn't impact the FPS too much.
Especially handy for those who use HarvestMap and get FPS drops together with ZrMM.

While in mouse mode (toggled with the . key), the position of the minimap can be changed by dragging the minimap title and zooming is done with the mouse wheel.
While your character isn't moving, you can even pan the map and look at other zones (the typical left/right click navigation from the default map works).

The size of the minimap can be changed via the chatcommand
Code:
/lwmsize [size]

The default minimap zoomout level can be set with:
Code:
/lwmzoom [zoomout level]
This is a number between 0 and 8, 8 being zoomed out the most.


The default map zoomout level can be set with:
Code:
/lwmdefaultzoom [zoomout level]
This is a number between 0 and 8, 8 being zoomed out the most.
0.7
* changed folder structure of the zip for minion compability

0.7

* Fixes command to set zoomout level. "/lwmzoom 0-8"

0.6

* No longer errors when attempting to drag skills.
* Map should always be restored to correct location.
* Fast travel for free from way-shrines correctly.
* Set default map and minimap zoomout levels.
* Resize minimap after ALT-TAB.
Optional Files (0)


Archived Files (3)
File Name
Version
Size
Uploader
Date
0.7
2kB
aggrovate
06/01/14 10:43 AM
0.6
2kB
Shinni
05/31/14 02:19 PM
0.5
2kB
Shinni
04/26/14 06:57 AM


Post A Reply Comment Options
Unread 06/01/14, 02:45 PM  
d2allgr
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 9
Uploads: 5
If you create a LightWeightMinimap folder in your addons folder and dump the contents of the downloaded zip file into it, it should appear and work properly ingame.
That's the way I did it and works brilliantly so far.
Report comment to moderator  
Reply With Quote
Unread 06/01/14, 02:19 PM  
exhuman79
 
exhuman79's Avatar

Forum posts: 0
File comments: 51
Uploads: 0
Originally Posted by d2allgr
Maybe because the uploaded file does not contain the addon folder, like other addons do.

Could also be irrelevant and be something to do with minion instead.

i am trying to install it manualy but still. it is not appearing in-game
Report comment to moderator  
Reply With Quote
Unread 06/01/14, 01:57 PM  
d2allgr
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 9
Uploads: 5
Maybe because the uploaded file does not contain the addon folder, like other addons do.

Could also be irrelevant and be something to do with minion instead.
Report comment to moderator  
Reply With Quote
Unread 06/01/14, 01:55 PM  
aggrovate

Forum posts: 0
File comments: 8
Uploads: 0
Originally Posted by exhuman79
Originally Posted by GeneralWurst
You addon cannot be found with Minion.
i was just about to post the same thing
I'm not sure why this is happening, but I have made sure to re-update the category for the addon.
Report comment to moderator  
Reply With Quote
Unread 06/01/14, 11:37 AM  
exhuman79
 
exhuman79's Avatar

Forum posts: 0
File comments: 51
Uploads: 0
Originally Posted by GeneralWurst
You addon cannot be found with Minion.
i was just about to post the same thing
Report comment to moderator  
Reply With Quote
Unread 05/31/14, 05:36 PM  
GeneralWurst

Forum posts: 2
File comments: 30
Uploads: 0
You addon cannot be found with Minion.
Report comment to moderator  
Reply With Quote
Unread 05/27/14, 08:45 PM  
globalnode

Forum posts: 0
File comments: 2
Uploads: 0
Re: Re: Zoom Distance

Actually, nevermind all this, as some posters below said... using a wayshrine creates too many problems for me to use this addon

Originally Posted by globalnode
Originally Posted by KorenoGamer
I cant keep my zoom distance where I put it. Anytime I open the main map it zooms all the way in. then when I close out, the minimap matched the main maps zoom level maing only about 10 feet each side on my character on the minimap

EDIT: By zoomed all the way in I mean this.....

Even when out in the wilderness, when I open the main map zoom in just lke in the cities. I mean WAYYYY in.
Hey there, I just lifted this bit of code from "RAETIA World Map Zoom Adjuster" and whacked it at line 45 of LightWeightMinimap.lua
Code:
local zoomLevel = 4
local i = 1
while i <= zoomLevel do
    ZO_WorldMapZoomMinus_OnClicked()
    i = i + 1
end
It has the desired effect of keeping the minimap suitably zoomed out but im not sure how much impact it has on the authors code, hopefully something like this can be added officially to this addon!

EDIT: after playing around with this a little I found that somehow this addon affects the world map zoom level too, always zooming in really really far

EDIT#2 First off, apologies to the author for messing with their code, just want to say, AWESOME ADDON! and ty. secondly, finally managed to mess with the code enough to make it usable by me, if that also works for you, then great, wish this addon was updated faster, grrr.

first off.. add the OnClicked line just above the line that says OnMouseWheel
Code:
	ZO_WorldMapZoomMinus_OnClicked() --added by me
	ZO_WorldMapZoom_OnMouseWheel(100)
lastly, add this line to the end of the HideMiniMap function.

Code:
	CALLBACK_MANAGER:FireCallbacks("OnWorldMapChanged") -- added by me
end
Im not 100% sure what these things do lol, but they work, mostly just put them in there based on instinct about how the engine possibly works with maps.
Report comment to moderator  
Reply With Quote
Unread 05/27/14, 06:31 PM  
globalnode

Forum posts: 0
File comments: 2
Uploads: 0
Re: Zoom Distance

Originally Posted by KorenoGamer
I cant keep my zoom distance where I put it. Anytime I open the main map it zooms all the way in. then when I close out, the minimap matched the main maps zoom level maing only about 10 feet each side on my character on the minimap

EDIT: By zoomed all the way in I mean this.....

Even when out in the wilderness, when I open the main map zoom in just lke in the cities. I mean WAYYYY in.
Hey there, I just lifted this bit of code from "RAETIA World Map Zoom Adjuster" and whacked it at line 45 of LightWeightMinimap.lua
Code:
local zoomLevel = 4
local i = 1
while i <= zoomLevel do
    ZO_WorldMapZoomMinus_OnClicked()
    i = i + 1
end
It has the desired effect of keeping the minimap suitably zoomed out but im not sure how much impact it has on the authors code, hopefully something like this can be added officially to this addon!

EDIT: after playing around with this a little I found that somehow this addon affects the world map zoom level too, always zooming in really really far

EDIT#2 First off, apologies to the author for messing with their code, just want to say, AWESOME ADDON! and ty. secondly, finally managed to mess with the code enough to make it usable by me, if that also works for you, then great, wish this addon was updated faster, grrr.

first off.. add the OnClicked line just above the line that says OnMouseWheel
Code:
	ZO_WorldMapZoomMinus_OnClicked() --added by me
	ZO_WorldMapZoom_OnMouseWheel(100)
lastly, add this line to the end of the HideMiniMap function.

Code:
	CALLBACK_MANAGER:FireCallbacks("OnWorldMapChanged") -- added by me
end
Im not 100% sure what these things do lol, but they work, mostly just put them in there based on instinct about how the engine possibly works with maps.
Last edited by globalnode : 05/27/14 at 07:22 PM.
Report comment to moderator  
Reply With Quote
Unread 05/24/14, 08:01 AM  
KorenoGamer

Forum posts: 1
File comments: 41
Uploads: 0
Zoom Distance

I cant keep my zoom distance where I put it. Anytime I open the main map it zooms all the way in. then when I close out, the minimap matched the main maps zoom level maing only about 10 feet each side on my character on the minimap

EDIT: By zoomed all the way in I mean this.....

Even when out in the wilderness, when I open the main map zoom in just lke in the cities. I mean WAYYYY in.
Last edited by KorenoGamer : 05/24/14 at 08:05 AM.
Report comment to moderator  
Reply With Quote
Unread 05/16/14, 01:36 AM  
playstyle

Forum posts: 0
File comments: 30
Uploads: 0
Thanks for the addon. Very good idea. I gave it a try because I use harvest map and i see some FPS drops sometimes.
I really like the border around the map and the font.
I had to uninstall it again because everytime i use a wayshrine the minimap forgets its position.
If I may request a feature: I got used to be able to change the zoom with hotkeys.
Report comment to moderator  
Reply With Quote
Unread 05/15/14, 07:45 PM  
LordTJ666

Forum posts: 0
File comments: 41
Uploads: 0
Not bad, but needs attention

I never realized how much FPS can drop and this brings my number up higher.

I think it looks more professional than ZrMM Modified, however it seems to randomly place itself in the middle of the screen. It would also be nice to be able to zoom with button binding than zoom wheel.
Report comment to moderator  
Reply With Quote
Unread 05/14/14, 06:26 AM  
Wolle0rism

Forum posts: 2
File comments: 10
Uploads: 0
Originally Posted by lukazi
i might be a little slow, but i can't figure out what to type in to change map size. i tried the whole /lwmsize [size] and it just tells me current size. i tried typing in numbers and still no change... can someone help ?
/lwmsize (value between 200 and 600)
Report comment to moderator  
Reply With Quote
Unread 05/12/14, 11:16 PM  
devilwoman85

Forum posts: 6
File comments: 5
Uploads: 0
Re: Wayshrine Porting Fees

Originally Posted by Ashiara
On researching which addon was causing this issue I have narrowed it down to this one. The issue is that even when using a wayshrine to port to another wayshrine, it will still charge you even though using the wayshrine should be free.

I narrowed it down by only adding this one and then switching between it can ZrMM. ZrMM does not charge you for wayshrine to wayshrine porting, though it does charge if you port to a wayshrine from out in the wilds. This addon makes it so that no matter how you ported, it would always charge you, which for me is rather annoying as I wayshrine to wayshrine port.. a lot.
I have the same problem. cannot use a wayshrine for free when traveling to another wayshrine. is the developer of this addon still working on it? ive read through the short list of comments and haven't seen any replies from the developer as of yet.
this is a fantastic addon- I use harvestmap a lot and this allows me to zoom in on the minimap AND see all the map nodes IN COLOR (via harvestmap). the only other issue is that this minimap randomly repositions itself to the center of the screen and like I mention above, I cannot use wayshrine to wayshrine travel for free anymore.

I hope someone can respond to this soon. I really love this app. will no one help?
Last edited by devilwoman85 : 05/12/14 at 11:22 PM.
Report comment to moderator  
Reply With Quote
Unread 05/12/14, 01:00 PM  
lukazi

Forum posts: 0
File comments: 1
Uploads: 0
i might be a little slow, but i can't figure out what to type in to change map size. i tried the whole /lwmsize [size] and it just tells me current size. i tried typing in numbers and still no change... can someone help ?
Report comment to moderator  
Reply With Quote
Unread 05/12/14, 09:50 AM  
Ashiara

Forum posts: 0
File comments: 4
Uploads: 0
Wayshrine Porting Fees

On researching which addon was causing this issue I have narrowed it down to this one. The issue is that even when using a wayshrine to port to another wayshrine, it will still charge you even though using the wayshrine should be free.

I narrowed it down by only adding this one and then switching between it can ZrMM. ZrMM does not charge you for wayshrine to wayshrine porting, though it does charge if you port to a wayshrine from out in the wilds. This addon makes it so that no matter how you ported, it would always charge you, which for me is rather annoying as I wayshrine to wayshrine port.. a lot.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: