1. #1
    Mechagnome Zhaine's Avatar
    15+ Year Old Account
    Join Date
    Sep 2008
    Location
    United Kingdom
    Posts
    650

    Headcount2 - Edit Loot reporting line

    I want to edit this line when someone obtains loot.

    'HeadCount2 (1.0):Olandria receives raid loot: [Key to the Palace of Lei Shen] [Trash mob]'

    I want it instead to just say

    'Olandria receives raid loot: [Key to the Palace of Lei Shen]'

  2. #2
    I think this should work, can't test though:

    locales/enUS.lua

    replace in two places:
    Code:
    L["guild.broadcast.loot"] = "%s (%s):%s receives raid loot: %s [%s]"
    with:
    Code:
    L["guild.broadcast.loot"] = "%s receives raid loot: %s"

    raidtracker.lua line395:

    replace"
    Code:
     HeadCount:SendMessage(string.format(L["guild.broadcast.loot"], HeadCount.TITLE, HeadCount.VERSION, playerName, itemLink, source), channel)
    with:
    Code:
     HeadCount:SendMessage(string.format(L["guild.broadcast.loot"], playerName, itemLink), channel)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •