Results: 6Comments by: IsaacSin
File: rChat08/06/23
A quick fix for anybody who wants i...
Posted By: IsaacSin
A quick fix for anybody who wants it until it gets updated: Open rChat_Internals.lua in a text editor, go to line 1001 and replace "if start == start1 then" with "if next(rslts) == nil then", as follows: Before: if not start then -- no links in text rslts, start1 = getQuickLinks(rslts,text,last) if start == st...
File: rChat08/06/23
I don't know if it happened to anyb...
Posted By: IsaacSin
I don't know if it happened to anybody else: after I updated rChat to version 1.36 I couldn't use the chat anymore. I could change to guilds or whisper etc., but couldn't read any messages, not even my own. Names of players who wrote something appeared in the chat window, but no text. (I guess they could read my text but am not su...
File: rChat08/03/23
The function is too complicated for...
Posted By: IsaacSin
The function is too complicated for me to want to thoroughly investigate right now, but there's a bug in rChat_Internals.getLinks It's parsing messages with text before a link incorrectly. This includes text before a single link and text between two links. It doesn't seem to happen with only text after a link, or if there's no spa...
File: rChat08/01/23
There's a typo in SaveTabsCategorie...
Posted By: IsaacSin
There's a typo in SaveTabsCategories() at rChat.lua:2216 local localPlayer = GetUnitName("player") if not db.chatConfSync then d("No chatConfSync for "..tostring(localplayer)) return end It should be localPlayer instead of localplayer, so the check always fails (and the message prints nil instead of the player name).
File: Gold Ledger07/31/23
Hello, and first of all, thanks for...
Posted By: IsaacSin
Hello, and first of all, thanks for the addon! I would like to request a feature to distinguish the source of gold in mail attachments. I believe you could do this by parsing the subject line of system mails when taking the gold. I know it's not a big practical difference to separate millions in guild store sales from the relative...
File: Votan's Achievements Overview07/30/23
Due to the way localTimeShift is ca...
Posted By: IsaacSin
Due to the way localTimeShift is calculated, it fluctuates between a negative and positive number based on the time of day (e.g. for my time zone, UTC -7, it becomes +17 after 17:00 as UTC goes to the next day). This causes problems when you're reading/sorting the savedvar timestamps that were calculated with a different localTim...