Filter "Remote Chat" #13


  • New
  • Enhancment
Open
Assigned to elkano
  • jtrack3d created this issue Jun 11, 2016

    I would like it if you could exclude people that are only on remote chat from the list.   So many people connect on remote chat and then aren't really even watching the chat, so you can't consider them "online".   Perhaps this could be a setting?

    Until then, I modified "UpdateData" lines 290 - 313.

        if (online or isMobile) then
                    playersOnline = playersOnline + 1
                    if self:checkFilter(classFileName, level, zone) then

                        if (not isMobile and online) then
                            playersShown = playersShown + 1
                            table_insert(players, getPlayerTable(
                                Ambiguate(name, "guild") or _G.UNKNOWN,
                                rank or _G.UNKNOWN,
                                rankIndex or -1,
                                level or -1,
                                class or _G.UNKNOWN,
                                (isMobile and not online) and _G.REMOTE_CHAT or (zone or _G.UNKNOWN),
                                note,
                                officernote,
                                online,
                                isAway,
                                classFileName,
                                achievementPoints,
                                achievementRank,
                                (isMobile and not online)

                            ))
                        end
                    end

  • jtrack3d added the tags New Enhancment Jun 11, 2016

To post a comment, please login or register a new account.