Thread Tools Display Modes
03-25-11, 05:52 AM   #1
Politig
A Chromatic Dragonspawn
AddOn Compiler - Click to view compilations
Join Date: May 2009
Posts: 176
Simplified chat

I recall an addon that would change the chat messages from looting to something else, for example:

"You receive 1 gold"

would become "+ 1 gold"

Anyone know of this addon?
  Reply With Quote
03-25-11, 11:52 AM   #2
Jigain
A Molten Giant
 
Jigain's Avatar
Join Date: Jul 2009
Posts: 732
MSBT does this, only in its notification area rather than in the chat.

MSBT is short for Mik's Scrolling Battle Text.
__________________


  Reply With Quote
03-25-11, 12:32 PM   #3
haylie
A Scalebane Royal Guard
 
haylie's Avatar
Join Date: May 2009
Posts: 417
Originally Posted by Politig View Post
I recall an addon that would change the chat messages from looting to something else, for example:

"You receive 1 gold"

would become "+ 1 gold"

Anyone know of this addon?
I know this used to be done via lua-based chat addons, not sure if it's been added in Chatter and the like. Anyhow, here's the code I've been using before I quit. It might be out of date but it's all I got. The text between " " is what the message will be replaced with. "%s" stands for name of item and "%d" stands for quantity. Just slap it in your chat addon's lua file somewhere and see if it works:

Code:
-- [[ Loot stuff ]]
LOOT_ITEM = "%s ++ %s"
LOOT_ITEM_MULTIPLE = "%s ++ %sx%d"
LOOT_ITEM_SELF = "++ %s"
LOOT_ITEM_SELF_MULTIPLE = "++ %sx%d"
LOOT_ITEM_PUSHED_SELF = "++ %s"
LOOT_ITEM_PUSHED_SELF_MULTIPLE = "++ %sx%d"
LOOT_MONEY = "++ %s"
YOU_LOOT_MONEY = "++ %s"
LOOT_MONEY_SPLIT = "++ %s"
LOOT_ITEM_CREATED_SELF = "=> %s.";
LOOT_ITEM_CREATED_SELF_MULTIPLE = "=> %sx%d."

-- [[ Achievements ]]
ACHIEVEMENT_BROADCAST = "%s !! %s"
ACHIEVEMENT_BROADCAST_SELF = "!! %s!"
NEW_ACHIEVEMENT_EARNED = "!! '%s'."
  Reply With Quote
03-25-11, 12:33 PM   #4
karmamuscle
A Cobalt Mageweaver
 
karmamuscle's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 205
There used to be a post with alot of those substitutions, maybe a year or so ago. Been looking for it myself several times, buut never found it..
__________________
55 89 144 233 377 610 987 1597 2584 4181 6765
  Reply With Quote
03-25-11, 12:46 PM   #5
Andone
A Deviate Faerie Dragon
Join Date: Dec 2009
Posts: 10
For just money related things, you could use http://www.wowinterface.com/download...hFlowLite.html
For multiple items across the board you could use http://www.wowinterface.com/download...-MiniLoot.html
  Reply With Quote
03-25-11, 01:23 PM   #6
Be3f.
A Theradrim Guardian
 
Be3f.'s Avatar
Join Date: Jan 2011
Posts: 65
Originally Posted by ckramme View Post
There used to be a post with alot of those substitutions, maybe a year or so ago. Been looking for it myself several times, buut never found it..
maybe this link will be useful (scrolldown to "loot")

http://wowprogramming.com/utils/xmlb...balStrings.lua
__________________
-- Be3f.
  Reply With Quote
03-28-11, 03:37 PM   #7
Politig
A Chromatic Dragonspawn
AddOn Compiler - Click to view compilations
Join Date: May 2009
Posts: 176
Thanks haylie, I just got back from a break myself

your code works great

thanks!
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Simplified chat


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off