Download
(145Kb)
Download
Compatible with Retail, Classic & TBC
Updated: 12-03-22 04:46 PM
Pictures
File Info
Compatibility:
Dragonflight (10.0.2)
Classic (1.14.3)
Updated:12-03-22 04:46 PM
Created:01-08-10 09:48 AM
Downloads:28,632
Favorites:49
MD5:
Categories:Data Broker, The Burning Crusade Classic, Classic - General

zz Money  Popular! (More than 5000 hits)

Version: 100002.37
by: Rilgamon [More]

Money Broker
You can have a banker to send money from and to with a min and max setup.

Locales: enUS,deDE (Partial koKR,ruRU)

f4b3cc7 | Robin Hüskes | Sat Dec 3 23:33:13 2022 +0100

[zzAddOn] Fix copy&paste error, bumb lib version
------------------------------------------------------------------------
599396c | Robin Hüskes | Sat Dec 3 17:20:24 2022 +0100

Update LibDBIcon
------------------------------------------------------------------------
6d58c4e | Robin Hüskes | Sat Dec 3 16:14:50 2022 +0100

[zzAddOn] Fix to make sure ManagerFrameEvent is fired only once
------------------------------------------------------------------------
c9c464a | Robin Hüskes | Fri Dec 2 16:13:16 2022 +0100

[zzAddOn] Cleanup RegisterOpen, RegisterClose
------------------------------------------------------------------------
39a9730 | Robin Hüskes | Fri Dec 2 15:59:59 2022 +0100

[zzAddOn] Add RegisterOpen, RegisterClose
------------------------------------------------------------------------
75762aa | Robin Hüskes | Sun Nov 27 23:25:15 2022 +0100

Fix some special chars
------------------------------------------------------------------------
7720304 | Robin Hüskes | Sun Nov 27 23:21:55 2022 +0100

Update Libs
------------------------------------------------------------------------
23bb7d3 | Robin Hüskes | Tue Nov 22 18:23:18 2022 +0100

Add seperator option to functioncall
------------------------------------------------------------------------
70dae4d | Robin Hüskes | Tue Nov 22 18:20:40 2022 +0100

Add seperator setting
------------------------------------------------------------------------
c92fc86 | Robin Hüskes | Tue Nov 22 18:20:17 2022 +0100

Add seperator option to MoneyString function
------------------------------------------------------------------------
63e07ef | Robin Hüskes | Tue Nov 22 18:19:13 2022 +0100

Add strings for seperator setting
------------------------------------------------------------------------
e2cd539 | Robin Hüskes | Mon Nov 21 01:37:05 2022 +0100

Update Ace3 Libs r1297-alpha, zzLDB 5
------------------------------------------------------------------------
290e4d5 | Robin Hüskes | Tue Oct 25 15:44:04 2022 +0200

Update toc and file modes
------------------------------------------------------------------------
1af9764 | Robin Hüskes | Thu Oct 6 18:40:38 2022 +0200

Rewrite Onclick Settings to not open/close in combat
------------------------------------------------------------------------
c7c4e4e | Robin Hüskes | Sun Oct 2 13:00:41 2022 +0200

Update Ace3-Libs to r1292-alpha
------------------------------------------------------------------------
414f505 | Robin Hüskes | Sun Oct 2 12:58:08 2022 +0200

Update Toc
------------------------------------------------------------------------
669d8cb | robin | Wed Jun 29 07:19:21 2022 +0200

Fix banker button not showing up
------------------------------------------------------------------------
77d1f44 | robin | Tue Jun 28 16:32:08 2022 +0200

Merge branch 'master' of https://git.grml.de/rilgamon/zz_Money
------------------------------------------------------------------------
77d1f44 | robin | Tue Jun 28 16:07:39 2022 +0200

Fix spaces in realm names
------------------------------------------------------------------------
8eedfc1 | robin | Tue Jun 28 16:03:23 2022 +0200

Update toc to 90205
------------------------------------------------------------------------
Optional Files (0)


Archived Files (14)
File Name
Version
Size
Author
Date
100002.36
145kB
Rilgamon
11-28-22 04:28 PM
100002.35
145kB
Rilgamon
11-27-22 05:39 AM
100002.34
145kB
Rilgamon
11-20-22 09:58 PM
90205.32
145kB
Rilgamon
10-25-22 11:19 AM
90205.32
145kB
Rilgamon
07-05-22 09:13 AM
90005.30
145kB
Rilgamon
05-23-21 06:24 AM
90005.29
144kB
Rilgamon
03-27-21 06:03 PM
90005.28
144kB
Rilgamon
03-23-21 04:42 AM
90005.27
143kB
Rilgamon
03-15-21 04:02 AM
90005.26
142kB
Rilgamon
03-14-21 04:44 AM
90005.25
142kB
Rilgamon
03-13-21 10:51 AM
90005.24
142kB
Rilgamon
03-13-21 08:07 AM
90005.23
141kB
Rilgamon
03-12-21 04:58 AM
90002.22
146kB
Rilgamon
01-25-21 03:29 AM


Post A Reply Comment Options
Unread 12-14-12, 03:02 PM  
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 822
File comments: 303
Uploads: 43
Originally Posted by Naurbrannon
Looks quite similar to me, the only noteworthy differences are that the realm name contains spaces and that I have 2 characters with special letters: "à" and "ø"
okay ... I can reproduce it now with this combination ... I see what I can do
__________________
The cataclysm broke the world ... and the pandas could not fix it!
Report comment to moderator  
Reply With Quote
Unread 12-14-12, 03:27 PM  
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 822
File comments: 303
Uploads: 43
Still not sure why the error occurs ... but this should fix it.
Could you replace this part in Common/common.lua, please ?

Code:
	['sortArray'] = function(tmp,dir)
		wipe(newtmp)
		local n = 1
		local cnt = 0
		local maximum = 0
		local first
		for k,v in pairs(tmp) do
			cnt = cnt + 1
			if(v > maximum) then
				maximum = v + 1
			end
			first = k
		end
		while(cnt > 0) do
			local mx, mn = dir and maximum or 0,first
			for k,v in pairs(tmp) do
				if(dir) then
					if(tonumber(v)<tonumber(mx)) then
						mx = v
						mn = k
					end
				else
					if(tonumber(v)>tonumber(mx)) then
						mx = v
						mn = k
					end
				end
			end
			newtmp[n] = mn
			tmp[mn] = nil
			cnt = 0
			for k,v in pairs(tmp) do
				cnt = cnt + 1
			end
			n = n + 1
			mn = 0
			mx = dir and mx or 0
		end
		return newtmp
	end,
__________________
The cataclysm broke the world ... and the pandas could not fix it!
Report comment to moderator  
Reply With Quote
Unread 12-22-12, 10:49 AM  
Naurbrannon
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 2
File comments: 18
Uploads: 2
Sadly no luck, I'm sending my saved variables to [email protected] so that you can check whatever you want
Report comment to moderator  
Reply With Quote
Unread 12-23-12, 04:23 PM  
Naurbrannon
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 2
File comments: 18
Uploads: 2
Update: I deleted the entry containing the letter "ø" and it works fine now, I'm not using that character anyway.
Report comment to moderator  
Reply With Quote
Unread 12-24-12, 10:49 AM  
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 822
File comments: 303
Uploads: 43
Originally Posted by Naurbrannon
Update: I deleted the entry containing the letter "ø" and it works fine now, I'm not using that character anyway.
I'm currently testing with your file ... even created a char on your server. With the change I posted previously it throws no errors and your char with this letter shows up fine. I'll create a char with a name using this.

I'll upload a new version for you to test. Perhaps I forgot something else I changed lately

Edit: Upload pending ... and its the first time I hope nobody has time to check it today :P merry christmas to everyone!
__________________
The cataclysm broke the world ... and the pandas could not fix it!
Last edited by Rilgamon : 12-24-12 at 11:02 AM.
Report comment to moderator  
Reply With Quote
Unread 03-09-13, 01:02 PM  
tordenflesk
A Deviate Faerie Dragon

Forum posts: 18
File comments: 213
Uploads: 0
I would like to remove the coins and show only gold in the LDB feed.
I tried changing line 180 in common.lua to
Code:
moneystring = format("%s",g)
, but no change in the feed.
How do i do it?
Also, and option to show the realm total instead of the current characters gold in the feed would be nice.
Last edited by tordenflesk : 03-09-13 at 01:13 PM.
Report comment to moderator  
Reply With Quote
Unread 03-09-13, 01:28 PM  
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 822
File comments: 303
Uploads: 43
Originally Posted by tordenflesk
I would like to remove the coins and show only gold in the LDB feed.
I tried changing line 180 in common.lua to
Code:
moneystring = format("%s",g)
, but no change in the feed.
How do i do it?
Also, and option to show the realm total instead of the current characters gold in the feed would be nice.
common.lua is shared with all other of my addons. So if you have another of my addons chances are that you still load the original code. I'll look into this and upload a new version tomorrow probably
__________________
The cataclysm broke the world ... and the pandas could not fix it!
Report comment to moderator  
Reply With Quote
Unread 03-11-13, 03:03 AM  
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 822
File comments: 303
Uploads: 43
Bad news: I did not make it in time (as always). Computer broke down.
Good news: Now I have installed a shiny new ssd and my computer can crash faster
I try to push an update during the week. Depends on workload
__________________
The cataclysm broke the world ... and the pandas could not fix it!
Report comment to moderator  
Reply With Quote
Unread 03-13-13, 12:13 PM  
tordenflesk
A Deviate Faerie Dragon

Forum posts: 18
File comments: 213
Uploads: 0
Originally Posted by Rilgamon
Bad news: I did not make it in time (as always). Computer broke down.
Good news: Now I have installed a shiny new ssd and my computer can crash faster
I try to push an update during the week. Depends on workload
No hurry. I'll endure watching my silvers and coppers for a little longer :P
Report comment to moderator  
Reply With Quote
Unread 03-19-13, 09:46 AM  
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 822
File comments: 303
Uploads: 43
Ok, update is pending. Added two settings. One to display only gold value and one to show accountwide gold.
Enjoy
__________________
The cataclysm broke the world ... and the pandas could not fix it!
Report comment to moderator  
Reply With Quote
Unread 10-30-13, 04:58 PM  
DaEgi01
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Problem with newest update

Updated to the newest version 50400.34 and now I get this error message once I hover the mouse over zz_Money in my ChocolateBar:

13x zz_Money\core.lua:254: attempt to index local "tip" (a nil value)
zz_Money\core.lua:254: in function <zz_Money\core.lua:253>
zz_Money\core.lua:340: in function <zz_Money\core.lua:303>

Locals:
m = 922937065
stamp = 1383171073
day = "20131303"
checkDelay = 105756.878
faction = "Horde"
OnText2 = <function> defined @Interface\AddOns\zz_Money\core.lua:65
oldMoney = 0
getDateString = <function> defined @Interface\AddOns\zz_Money\core.lua:222
db = <table> {
sortDir = true
Destromath = <table> {
}
}
realm = "Destromath"
player = "Rok"
sessionOut = -6300
sessionIn = 11013136
childName = "zz_Money"
OnTooltip = <function> defined @Interface\AddOns\zz_Money\core.lua:253
Last edited by DaEgi01 : 10-31-13 at 09:01 AM.
Report comment to moderator  
Reply With Quote
Unread 10-31-13, 12:08 PM  
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 822
File comments: 303
Uploads: 43
Re: Problem with newest update

Originally Posted by DaEgi01
Updated to the newest version 50400.34 and now I get this error message once I hover the mouse over zz_Money in my ChocolateBar:

13x zz_Money\core.lua:254: attempt to index local "tip" (a nil value)
Hmm, I'll recheck with ChocolateBar.

Edit: Please check version 50400.35 which is pending
I forgot to remove the old clumsy tooltip-update routine.
__________________
The cataclysm broke the world ... and the pandas could not fix it!
Last edited by Rilgamon : 10-31-13 at 12:23 PM.
Report comment to moderator  
Reply With Quote
Unread 01-30-14, 02:17 PM  
sconley
An Aku'mai Servant

Forum posts: 31
File comments: 98
Uploads: 0
Change Request for Banker Functionality

When the banker sends gold to a toon by using the blue button on the Send Mail frame, closes the mailbox and then re-opens it before the receiving toon has received the gold, the addon will show to send gold again to that toon.
I'd like for the addon to not do that. I have lot's of alts and it gets confusing. I might send gold to an alt using this addon, but not sign onto that alt again for several days.

I hope this makes sense.
Last edited by sconley : 01-30-14 at 02:20 PM.
Report comment to moderator  
Reply With Quote
Unread 01-31-14, 04:01 AM  
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 822
File comments: 303
Uploads: 43
Re: Change Request for Banker Functionality

Originally Posted by sconley
When the banker sends gold to a toon by using the blue button on the Send Mail frame, closes the mailbox and then re-opens it before the receiving toon has received the gold, the addon will show to send gold again to that toon.
I'd like for the addon to not do that. I have lot's of alts and it gets confusing. I might send gold to an alt using this addon, but not sign onto that alt again for several days.

I hope this makes sense.
I thought I had it in already. I'll take a look if I forgot to commit this change this weekend
__________________
The cataclysm broke the world ... and the pandas could not fix it!
Report comment to moderator  
Reply With Quote
Unread 02-01-14, 08:50 AM  
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 822
File comments: 303
Uploads: 43
Damn, I really forgot to push it live. Can you test it if it does what you want, please?
Updated BrokerPack and Money are pending.
__________________
The cataclysm broke the world ... and the pandas could not fix it!
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: