Thread: Math Help
View Single Post
01-24-12, 12:51 PM   #5
Grimsin
A Molten Giant
 
Grimsin's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2006
Posts: 990
This produced proper results -
Code:
GameTooltip:AddDoubleLine("Friendly Discount", addon:MoneyToString(floor(totalCost * 0.95), true))
	GameTooltip:AddDoubleLine("Honored Discount", addon:MoneyToString(floor(totalCost * 0.9), true))
	GameTooltip:AddDoubleLine("Revered Discount", addon:MoneyToString(floor(totalCost * 0.85), true))
	GameTooltip:AddDoubleLine("Exaulted Discount", addon:MoneyToString(floor(totalCost * 0.8), true))
__________________
"Are we there yet?"

GrimUI
[SIGPIC][/SIGPIC]
  Reply With Quote