Any addons around that'd let me type something and have it report back how much gold each alt has atm in gchat?
ie: type "/p $gold" or something
Durability, reagents, etc would be awesome too
Printable View
Any addons around that'd let me type something and have it report back how much gold each alt has atm in gchat?
ie: type "/p $gold" or something
Durability, reagents, etc would be awesome too
It would take up another space but you could make a macro for your alts.
/script SendChatMessage("[Money Pouch] contains "..(GetMoney()/10000).." gold.");
excellent, exactly what i wanted.... is there any way to truncate the number to two decimals?Quote:
Originally Posted by 'Tasty',index.php?page=Thread&postID=106192#post10 6192
Quote:
Originally Posted by 'Abyssal',index.php?page=Thread&postID=106782#post 106782
Code:/script SendChatMessage("[Money Pouch] contains "..string.format("%.2f", (GetMoney()/10000)).." gold.");
Change that toQuote:
Originally Posted by 'Blubber',index.php?page=Thread&postID=106788#post 106788
if you don't want to let everyone know how much gold you have.Code:/script SendChatMessage("[Money Pouch] contains "..string.format("%.2f", (GetMoney()/10000)).." gold.","PARTY");
ya, I knew how to do PARTY messages, it's in there :)