Category: Data Mods
Addon Information
Works with 3.2
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)
Author:
Version:
1.2.0
Date:
08-30-2009 10:54 PM
Size:
60.47 Kb
Downloads:
526
Favorites:
16
MD5:
Pictures
Click to enlarge
myMoney
myMoney is a lightweight addon designed to mimic MoneyFu w/o depending on any type of library (LDB, Fubar, Titan, Ace etc). It also has some added features like the "all-time" gold tracker.

Configuration is done by editing the lua file and I have no plans on implementing a GUI config.

/mymoney and /mm are the slash commands
You can right click the frame to unlock it as well.

Enjoy!

*NEW: Added slash commands to toggle what information to show
The increased file size is due to my texture/font that I use in the pic. The addon uses on average 70kb.

TODO:
-Handle mailing gold to alts so that it doesn't count.
  Change Log - myMoney
--1.2.0
-You can now hide/show certain calcuations
-Added a config variable to hide/show the border
-Added a config variable to modify the textcolor of the main frame
-Added a config variable to modify the frame strata
-Renamed the loaded Lua file
-Included the media files I use

--1.1.1a
-Archiving using zip instead of rar, will be using zip from now on.

--1.1.1
-Changed some of the default settings

--1.1.0
-Add slash commands to handle obselete alts
-Sorts character totals by gold amount
-Updated TOC to 3.2

--1.0.2
-Fixed realmtime updating
-Adjusted some frame offsets

--1.0.1
-Fixed per hour calculation of yesterdays data
-Fixed no drag error at startup
-Optimized tables

--1.0.0
-Initial Release
  Archived Versions - myMoney
File Name
Version
Size
Author
Date
1.1.1a
7kB
turkoid
08-29-2009 09:51 PM
1.1.0
7kB
turkoid
08-29-2009 09:34 AM
  Comments - myMoney
Post A Reply Comment Options
Old 08-31-2009, 09:56 PM  
turkoid
A Kobold Labourer
 
turkoid's Avatar
Interface Author - Click to view interfaces

Forum posts: 1
File comments: 8
Uploads: 1
Quote:
Originally posted by Politig
I didn't edit anything.
If you didn't edit any variables, only thing i can think of is that you didn't copy the 'myMedia' folder and if that still doesn't work set the fnt and backgroundTexture to nil, this will use the default font and texture.

Last edited by turkoid : 08-31-2009 at 10:08 PM.
turkoid is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-31-2009, 05:43 PM  
Politig
A Kobold Labourer

Forum posts: 1
File comments: 218
Uploads: 0
I didn't edit anything.
Politig is online now Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-31-2009, 05:07 PM  
turkoid
A Kobold Labourer
 
turkoid's Avatar
Interface Author - Click to view interfaces

Forum posts: 1
File comments: 8
Uploads: 1
@Politig

did you edit the fnt variable? if so make sure that u typed it in correctly.
turkoid is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-31-2009, 11:18 AM  
Politig
A Kobold Labourer

Forum posts: 1
File comments: 218
Uploads: 0

^^ I get that with the latest version
Politig is online now Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-30-2009, 11:02 PM  
turkoid
A Kobold Labourer
 
turkoid's Avatar
Interface Author - Click to view interfaces

Forum posts: 1
File comments: 8
Uploads: 1
Quote:
Originally posted by Politig
Is there a way to change the text to a different color? on LDB as well as FuBar I'm used to seeing it in a yellowy color.
I just uploaded v1.2.0 which takes care of this among other things.
turkoid is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-30-2009, 12:46 PM  
Politig
A Kobold Labourer

Forum posts: 1
File comments: 218
Uploads: 0
Is there a way to change the text to a different color? on LDB as well as FuBar I'm used to seeing it in a yellowy color.
Politig is online now Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-30-2009, 10:48 AM  
Bargan
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Thx works perfect for me

Quote:
Originally posted by turkoid
You guys are giving great suggestions, ill be adding a way to turn this on and off in a later version, but for now a quick hack. You may want to back up the current lua file in case you want to revert the changes.

Replace lines 259-281 with this:

Code:
		base = 
		{
			{
				{text = function() return data.description end, justify = "left"},
				{text = "Amount", justify = "right"},
			},
			{
				{text = "Gained", color = color_style.desc, justify = "left"},
				{text = function() return data.gained end, justify = "right"},		
			},
			{
				{text = "Spent", color = color_style.desc, justify = "left"},
				{text = function() return data.spent end, justify = "right"},
			},
			{
				{text = function() return data.netTitle end, color = color_style.desc, justify = "left"},
				{text = function() return data.net end, color = function() return data.netColor end, justify = "right"},
			}
		},

Last edited by Bargan : 08-30-2009 at 10:48 AM.
Bargan is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-30-2009, 09:44 AM  
turkoid
A Kobold Labourer
 
turkoid's Avatar
Interface Author - Click to view interfaces

Forum posts: 1
File comments: 8
Uploads: 1
Quote:
Originally posted by Bargan
Hi Turkoid,

I like your addon only thing i don't like to have ist the information of money "per hour". Is there any way to deactivate this info in the addon?
You guys are giving great suggestions, ill be adding a way to turn this on and off in a later version, but for now a quick hack. You may want to back up the current lua file in case you want to revert the changes.

Replace lines 259-281 with this:

Code:
		base = 
		{
			{
				{text = function() return data.description end, justify = "left"},
				{text = "Amount", justify = "right"},
			},
			{
				{text = "Gained", color = color_style.desc, justify = "left"},
				{text = function() return data.gained end, justify = "right"},		
			},
			{
				{text = "Spent", color = color_style.desc, justify = "left"},
				{text = function() return data.spent end, justify = "right"},
			},
			{
				{text = function() return data.netTitle end, color = color_style.desc, justify = "left"},
				{text = function() return data.net end, color = function() return data.netColor end, justify = "right"},
			}
		},
turkoid is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-30-2009, 06:26 AM  
Bargan
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Hi Turkoid,

I like your addon only thing i don't like to have ist the information of money "per hour". Is there any way to deactivate this info in the addon?
Bargan is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-30-2009, 02:04 AM  
turkoid
A Kobold Labourer
 
turkoid's Avatar
Interface Author - Click to view interfaces

Forum posts: 1
File comments: 8
Uploads: 1
Quote:
Originally posted by Politig
that works fine, but then the LDB bar goes in front of the text.
I'll probably make this a config variable in the next minor version but you can do a simple search and replace:

replace
Code:
SetFrameStrata("LOW")
with
Code:
SetFrameStrata("HIGH")
There should be two instances.
turkoid is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-30-2009, 01:52 AM  
Politig
A Kobold Labourer

Forum posts: 1
File comments: 218
Uploads: 0
Quote:
Originally posted by turkoid
I really have no plans to implement this. As I said, it's designed to be standalone. That said, you can always set the border to nil and the background alpha to 0 and just move it into place.
that works fine, but then the LDB bar goes in front of the text.
Politig is online now Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-29-2009, 09:53 PM  
turkoid
A Kobold Labourer
 
turkoid's Avatar
Interface Author - Click to view interfaces

Forum posts: 1
File comments: 8
Uploads: 1
Quote:
Originally posted by Politig
Uhm, I can't open the file. And if you could make it so we download the file, not in RAR, that would be nice too.
re-uploading as zip instead of rar. Just waiting for it to take.
turkoid is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-29-2009, 09:22 PM  
Politig
A Kobold Labourer

Forum posts: 1
File comments: 218
Uploads: 0
Uhm, I can't open the file. And if you could make it so we download the file, not in RAR, that would be nice too.
Politig is online now Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-29-2009, 09:04 PM  
turkoid
A Kobold Labourer
 
turkoid's Avatar
Interface Author - Click to view interfaces

Forum posts: 1
File comments: 8
Uploads: 1
Quote:
Originally posted by Politig
is there a way to put it on an LDB display?
I really have no plans to implement this. As I said, it's designed to be standalone. That said, you can always set the border to nil and the background alpha to 0 and just move it into place.
turkoid is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-29-2009, 08:06 PM  
Politig
A Kobold Labourer

Forum posts: 1
File comments: 218
Uploads: 0
is there a way to put it on an LDB display?
Politig is online now 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.