Maintenance for the week of April 15:
• [EXTENDED] ESO Store and Account System for maintenance – April 16, 8:00AM EDT (12:00 UTC) - 6:00PM EDT (22:00 UTC)

Postmaster account summary PRINT?

Æterny
Æterny
✭✭
So, i got this LUA error, and one of the lines got me worried...

Wtf is account summary PRINT for?

bD5J23n.png
  • ZaroktheImmortal
    ZaroktheImmortal
    ✭✭✭✭✭
    Since it says it's coming from the add on folder I'd say it's a mod messing up.
  • Æterny
    Æterny
    ✭✭
    So, there is no risk?
  • RedMuse
    RedMuse
    ✭✭✭✭✭
    Æterny wrote: »
    So, there is no risk?

    There's always a risk when getting error messages even if the risk might be small. Does the error keep repeating if you dismiss it? Have you tried switching the addon off then on again?
  • Æterny
    Æterny
    ✭✭
    RedMuse wrote: »
    Æterny wrote: »
    So, there is no risk?

    There's always a risk when getting error messages even if the risk might be small. Does the error keep repeating if you dismiss it? Have you tried switching the addon off then on again?

    Dismissing wasn't working. Had to force close with manager and restart the game...
  • CyberOnEso
    CyberOnEso
    ✭✭✭✭✭
    This is AccountSummary:Print() from the postmaster addon.
    --[[ Outputs a verbose summary of all loot and currency ]]
    function class.AccountSummary:Print()
        local tagSuffix = self.chat.tagSuffix
        if self.account then
            local mailIconSize = math.max(self.iconSize, 100)
            mailIconSize = string.format("%s%%", tostring(mailIconSize))
            local mailIconString = zo_iconFormatInheritColor(self.mailIcon, mailIconSize, mailIconSize)
            local account = mailIconString .. self.account
            if not self.chat.tagColor then
                account = self.prefix .. account .. self.suffix
            end
            self.chat:SetTagSuffix(account)
        end
        LibLootSummary.List.Print(self)
        self.chat:SetTagSuffix(tagSuffix)
    end
    

    It doesn't do anything maliculous it just adds a message to the chat saying what you got from your recently opened mail.
    There is no risk to you or your account. The Account Summary in question is not your ESO account it's just a 'class' in the postmaster addon.

    Edited by CyberOnEso on February 27, 2021 3:25PM
    @CyberOnEso PC | EU - Jack of all Trades - Armory Style Manager Planesbreaker | Godslayer | Dawnbringer | Immortal Redeemer | Tick Tock Tormentor | Gryphon Heart
  • Æterny
    Æterny
    ✭✭
    CyberOnEso wrote: »
    This is AccountSummary:Print() from the postmaster addon.
    --[[ Outputs a verbose summary of all loot and currency ]]
    function class.AccountSummary:Print()
        local tagSuffix = self.chat.tagSuffix
        if self.account then
            local mailIconSize = math.max(self.iconSize, 100)
            mailIconSize = string.format("%s%%", tostring(mailIconSize))
            local mailIconString = zo_iconFormatInheritColor(self.mailIcon, mailIconSize, mailIconSize)
            local account = mailIconString .. self.account
            if not self.chat.tagColor then
                account = self.prefix .. account .. self.suffix
            end
            self.chat:SetTagSuffix(account)
        end
        LibLootSummary.List.Print(self)
        self.chat:SetTagSuffix(tagSuffix)
    end
    

    It doesn't do anything maliculous it just adds a message to the chat saying what you got from your recently opened mail.
    There is no risk to you or your account. The Account Summary in question is not your ESO account it's just a 'class' in the postmaster addon.

    Thank you very much!

    Appreciate your info and time looking into it. =D
Sign In or Register to comment.