Addon Information
Download Latest Version.
To add favorites please register for a free account. If you already have one you need to login. How do I install this? (FAQ)
zork's Portal Bug Reports Feature Requests
Author:
Version:
008
Date:
10-27-2008 03:49 PM
Size:
3.13 Kb
Downloads:
6,786
Favorites:
65
MD5:
Pictures
Click to enlarge
008
rMinimap   Popular! (More than 5000 hits)
Lightweight minimap

IMPORTANT:
- The map comes with 3 styles that could be chosen at the top of the lua file! You can choose between Diablo, Future and Square style.
- If you change from a round to a square map or the other way round you HAVE to log out to reinitialise the "mask" texture.
- You need rTextures to make this run!

rTextures: http://rothui.googlecode.com/svn/trunk/rTextures001.zip

Code: http://code.google.com/p/rothui/sour...trunk/rMinimap

Rothui: http://www.wowinterface.com/download...75-RothUI.html

Config:
Code:
  -- map_style
  -- 0 = diablo3
  -- 1 = futuristic orb rotating
  -- 2 = square runits style
  local map_style = 2

  -- map scale
  local mapscale = 1
  
  -- size of icons (tracking icon for example)
  local iconsize = 20

  -- position map and symbols here
  local map_positions
  if map_style == 2 then
    map_positions = {
      position = {
        [1] = { frame = "Minimap",                  anchor1 = "TOPRIGHT",     anchor2 = "TOPRIGHT",     anchorframe = "UIParent",   posx = -20,   posy = -20 },
        [2] = { frame = "MiniMapTracking",          anchor1 = "TOPLEFT",      anchor2 = "TOPLEFT",      anchorframe = "Minimap",    posx = 5,     posy = -5 },
        [3] = { frame = "MiniMapMailFrame",         anchor1 = "BOTTOMRIGHT",  anchor2 = "BOTTOMRIGHT",  anchorframe = "Minimap",    posx = -5,    posy = 5 },
        [4] = { frame = "MiniMapBattlefieldFrame",  anchor1 = "BOTTOMLEFT",   anchor2 = "BOTTOMLEFT",   anchorframe = "Minimap",    posx = 5,     posy = 5 },
        [5] = { frame = "GameTimeFrame",            anchor1 = "TOPRIGHT",     anchor2 = "TOPRIGHT",     anchorframe = "Minimap",    posx = -5,    posy = -5 },
        [6] = { frame = "TimeManagerClockButton",   anchor1 = "BOTTOM",       anchor2 = "BOTTOM",       anchorframe = "Minimap",    posx = 0,    posy = -2 },
      },
    }
  else
    map_positions = {
      position = {
        [1] = { frame = "Minimap",                  anchor1 = "TOPRIGHT",     anchor2 = "TOPRIGHT",   anchorframe = "UIParent",   posx = -20,   posy = -20 },
        [2] = { frame = "MiniMapTracking",          anchor1 = "TOP",          anchor2 = "BOTTOM",     anchorframe = "Minimap",    posx = 0,     posy = -20 },
        [3] = { frame = "MiniMapMailFrame",         anchor1 = "TOP",          anchor2 = "BOTTOM",     anchorframe = "Minimap",    posx = 50,    posy = -20 },
        [4] = { frame = "MiniMapBattlefieldFrame",  anchor1 = "TOP",          anchor2 = "BOTTOM",     anchorframe = "Minimap",    posx = -25,   posy = -20 },
        [5] = { frame = "GameTimeFrame",            anchor1 = "TOP",          anchor2 = "BOTTOM",     anchorframe = "Minimap",    posx = 25,    posy = -20 },
        [6] = { frame = "TimeManagerClockButton",   anchor1 = "BOTTOM",       anchor2 = "BOTTOM",     anchorframe = "Minimap",    posx = 0,    posy = 0 },
      },
    }
  end
  Change Log - rMinimap
008
- scaling for rothui081027

007
- new cool diablo texture

006
- clock enabled (blizzard timer!) can positioned too.

005
- map is scalable
- map and icons can be positioned anywhere
- icons can be resized

004
- minimap can be moved and more clear config at the top

003
- one "l" prevented mod from working

002
- styled and moved tracking, battlefield, mail and calendar frame

001
- initial release
  Optional Files - rMinimap
Sorry, there are currently no optional files available.
  Comments - rMinimap
Post A Reply Comment Options
Old 04-20-2009, 01:45 PM  
zork
A Flamescale Wyrmkin
 
zork's Avatar
Interface Author - Click to view interfaces

Forum posts: 146
File comments: 1079
Uploads: 28
Add this to the end of the code
Code:
MiniMapTrackingButton:EnableMouse(false)
MiniMapTracking:SetAlpha(0)
__________________
| Simple is beautiful.
| Blog | Roth UI | Roth UI mini | Roth UI FAQ | GoogleCode | DevShots | TheBigOne | Guild
zork is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-20-2009, 10:13 AM  
Desireč
A Kobold Labourer

Forum posts: 0
File comments: 10
Uploads: 2
I've lurked through the code with the little LUA knowledge I have - which is near to nothing.

I can't seem to be able to completely remove/hide the Tracking Button in no way, only able to move it. Any quick and easy solution to it? :>

-Desiree
Desireč is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 03-01-2009, 07:10 AM  
tauroc
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
map overlay

i like the diablo map, but i find the overlay with the clouding in the bottom left and the lens flare on the top right kinda irritatting. is there any way to disable this overlay without the rest of the addon?

edit: i fixed it myself, was a texture from rothui. just renamed the texture.

Last edited by tauroc : 03-01-2009 at 07:11 PM.
tauroc is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 02-25-2009, 07:54 PM  
Dizmal
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
Can you post a picture of what the future and square styles look like? TY
__________________
Dizmal is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 02-21-2009, 07:05 PM  
Marydoll
A Murloc Raider
 
Marydoll's Avatar
Interface Author - Click to view interfaces

Forum posts: 8
File comments: 21
Uploads: 4
tracking button stuck

For some strange reason my tracking button is stuck in a fixed position just below the minimap.
It also doesnt have a border like the other button but is basicly just a small black square with the tracking icon in it.
I havent changed anything in the code as i do not understand lua
Marydoll is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 01-21-2009, 09:05 AM  
OnTheHissay
A Fallenroot Satyr

Forum posts: 29
File comments: 10
Uploads: 0
Possible to enable the North/South, East/West icons?
OnTheHissay is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 01-14-2009, 05:06 AM  
Jansus
A Murloc Raider

Forum posts: 9
File comments: 21
Uploads: 0
wintergrasp button

Having trouble moving the wintergrasp pvp icon, maybe it's the same as the any BG icon I haven't tried it in other BG's yet. Is there a way to fix this? It's below the mini map and cannot be moved. Great minimap though
Jansus is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-13-2008, 05:45 AM  
Kub3czek
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
move map

Is it possible to move the whole map a little down?
Kub3czek is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-11-2008, 05:57 PM  
ckramme
A Cyclonian

Forum posts: 43
File comments: 65
Uploads: 0
Hey, love this addon and the square frames are so gorgeous!

I do have a question thou, is it possible to change the text color in the GameTimeFrame?
I would prefer a black background and a darkish golden text

The white background really annoy my eyes and a dark background with dark text doesn't really work well together.

I tried haxing my way to a solution, got inspired when I actually succeeded in changing the alpha of the gloss(very big step for a programming neanderthal!), with no luck.
ckramme is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-01-2008, 01:41 PM  
zork
A Flamescale Wyrmkin
 
zork's Avatar
Interface Author - Click to view interfaces

Forum posts: 146
File comments: 1079
Uploads: 28
Quote:
Originally posted by Beezleboss
PS: I did check the rTextures folder but couldn't find the right one.. Perhaps someone can help me
Get a picture viewer and look again, you missed it.
p.s. it starts with "mini"... maybe its just too obvious.
__________________
| Simple is beautiful.
| Blog | Roth UI | Roth UI mini | Roth UI FAQ | GoogleCode | DevShots | TheBigOne | Guild
zork is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-31-2008, 08:46 PM  
Wimpface
A Cobalt Mageweaver
Interface Author - Click to view interfaces

Forum posts: 225
File comments: 244
Uploads: 21
Heya there, i've got a little question...

What texture in the rTextures "addon" creates the gloss on the minimap when it's in square style? Or is it a piece of code that does it? If it's a texture... Then i'd like to know which it is so i could use it as a statusbar for my upcomming oUF

PS: I did check the rTextures folder but couldn't find the right one.. Perhaps someone can help me
Wimpface is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-31-2008, 10:19 AM  
Madpriest
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
I added the line "GameTimeFrame:Show()" near the end of the lua-file (after bu:SetHighlightTexture(..) ) and it is working fine for me with MiniClockFu installed.
Quote:
Originally posted by OnTheHissay
It was "FuBar_MiniClockFu" who was removing or preventing the calendar button to show for some reason.
Madpriest is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-30-2008, 01:39 PM  
OnTheHissay
A Fallenroot Satyr

Forum posts: 29
File comments: 10
Uploads: 0
It was "FuBar_MiniClockFu" who was removing or preventing the calendar button to show for some reason.
OnTheHissay is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-29-2008, 08:57 AM  
zork
A Flamescale Wyrmkin
 
zork's Avatar
Interface Author - Click to view interfaces

Forum posts: 146
File comments: 1079
Uploads: 28
Quote:
Originally posted by OnTheHissay
I can't get the Calender button to show and I don't seem to see it in the config section..
Download fresh copy of rMinimap, do no change anything in the code.
Deactivate every addon that is not rMinimap to make sure its a rMinimap problem. If you still get no Calendar button come back and post your rMinimap code.

I never had this happening.
__________________
| Simple is beautiful.
| Blog | Roth UI | Roth UI mini | Roth UI FAQ | GoogleCode | DevShots | TheBigOne | Guild
zork is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-29-2008, 06:42 AM  
OnTheHissay
A Fallenroot Satyr

Forum posts: 29
File comments: 10
Uploads: 0
I can't get the Calender button to show and I don't seem to see it in the config section..
OnTheHissay is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Post A Reply



Category Jump:




The Network:
EQInterface | EQ2Interface | LoTROInterface | MMOInterface | War.MMOUI | WoWInterface | VGInterface | Allakhazam | Thottbot | Wowhead | Zam


©2009 MMOUI / ZAM Network
vBulletin - Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.