View Single Post
09-05-12, 09:19 PM   #12
Moxie
A Cobalt Mageweaver
 
Moxie's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 206
Sure, here's what I have so far with no crashes in the last couple days.

-- Loot nubbins, inc. currency loot.
CREATED_ITEM = "%s |cffffffff+ %s|r"
CREATED_ITEM_MULTIPLE = "%s |cffffffff+ %sx%d|r"
LOOT_ITEM_CREATED_SELF = "|cffffffff+ %s|r"
LOOT_ITEM_CREATED_SELF_MULTIPLE = "|cffffffff+ %sx%d|r"
YOU_LOOT_MONEY = "|cffffffff+ %s|r"
YOU_LOOT_MONEY_GUILD = "|cffffffff+ %s|r"
LOOT_MONEY = "|cffffffff%s + %s|r"
LOOT_MONEY_SPLIT = "|cffffffff+ %s|r"
LOOT_MONEY_SPLIT_GUILD = "|cffffffff+ %s|r"
LOOT_ITEM = "%s + %s"
LOOT_ITEM_MULTIPLE = "%s + %s x%d"
LOOT_ITEM_SELF = "+ %s"
LOOT_ITEM_SELF_MULTIPLE = "+ %s x%d"
LOOT_ITEM_PUSHED_SELF = "+ %s"
LOOT_ITEM_PUSHED_SELF_MULTIPLE = "+ %s x%d"
LOOT_ROLL_ALL_PASSED = "|HlootHistory:%d|hLoot|h: Everyone passed on %s"
LOOT_ROLL_PASSED_AUTO = "%s passed on %s"
LOOT_ROLL_PASSED_AUTO_FEMALE = "%s passed %s (auto)"
LOOT_ROLL_PASSED_SELF = "|HlootHistory:%d|hLoot|h: passed on %s"
LOOT_ROLL_PASSED_SELF_AUTO = "|HlootHistory:%d|hLoot|h: passed on %s."

CURRENCY_GAINED = "+ %s"
CURRENCY_GAINED_MULTIPLE = "+ %s x%d"


-- Quest nubbins.

NORMAL_QUEST_DISPLAY = "|cffffffff%s|r"
TRIVIAL_QUEST_DISPLAY = "|cffffffff%s (low level)|r"

ERR_QUEST_ACCEPTED_S = "%s accepted."
ERR_QUEST_REWARD_EXP_I = "+ %dxp"
ERR_QUEST_REWARD_ITEM_MULT_IS = "+ %d %ss"
ERR_QUEST_REWARD_ITEM_S = "+ %s"
ERR_QUEST_REWARD_MONEY_S = "|cffffffff+ %s|r"

-- Random nubbins.

ERR_AUCTION_SOLD_S = "%s sold."
CHAT_FLAG_AFK = "afk. "
CHAT_FLAG_DND = "dnd! "

-- Rep nubbins.

FACTION_STANDING_DECREASED = "- %s %d rep"
FACTION_STANDING_INCREASED = "+ %s %d rep"

The rep nubbins were crashing me, because the tokens were back to front. I'd like to find a way to have them that way again, but I'm just happy to not be crashing over and over anymore.

Hope you find that useful.
__________________
"Someday we'll look back on this, laugh nervously and quickly change the subject."

"The truth is like sunlight: people used to think it was good for you."

Last edited by Moxie : 09-06-12 at 11:06 AM. Reason: Fixed an errant space that might break stuff.
  Reply With Quote