Download
(11 Kb)
Download
Updated: 10/05/15 12:27 AM
Pictures
File Info
Compatibility:
Update 7 (1.7.0)
Updated:10/05/15 12:27 AM
Created:04/10/14 03:18 AM
Monthly downloads:41
Total downloads:24,187
Favorites:95
MD5:
X4D Chat  Popular! (More than 5000 hits)
Version: 1.34
by: wilson0x4d [More]
X4D Chat


Features
  • Optional Modify Guild Chat so that Character Names are displayed instead of Account Names (or both.)
  • Optional Chat Timestamps
  • Optional Color Stripping
  • Optional Excess Text Stripping
  • Resize Chat Window Larger than Standard Default
  • Support for X4D LibAntiSpam
  • Support for X4D Loot
  • Support for X4D XP


Installation

First, make sure you have the latest X4D Core installed.

As with most Addons, simply open the Archive and copy the contents into "%USERPROFILE%\Documents\Elder Scrolls Online\live\Addons\" folder.

If ESO is already running, execute /reloadui command.


Change Log

To see version history, including 'vNext' (soon to be published) changes, view the README on Github.
Optional Files (0)


Post A Reply Comment Options
Unread 06/29/14, 03:35 PM  
DuchessOfKvetch

Forum posts: 9
File comments: 19
Uploads: 0
I also was able to fix the weird logged in/logged off message flip, just by reversing the logic check for whether a guildie is online or not.

But the bigger mystery is why this broke in the first place, since it just seems to check an exposed event handler called "EVENT_FRIEND_PLAYER_STATUS_CHANGED".

In their infinite wisdom, ZOS appears to have changed the signature for this function in a way that isn't backward compatible. Per a Garkin post on changes:

Event handler for EVENT_FRIEND_PLAYER_STATUS_CHANGED has a new argument "characterName":
Live: EVENT_FRIEND_PLAYER_STATUS_CHANGED (displayName, oldStatus, newStatus)
PTS: EVENT_FRIEND_PLAYER_STATUS_CHANGED (displayName, characterName, oldStatus, newStatus)

So my initial quick and dirty fix isn't actually the "best" one. It still looks really easy to implement, though.
Report comment to moderator  
Reply With Quote
Unread 06/28/14, 02:44 PM  
DuchessOfKvetch

Forum posts: 9
File comments: 19
Uploads: 0
Haven't tried Garkin's fix, does it just comment out that one offending line that was blowing up? I don't really want to test the external download site because it tries to install its own downloader app, and that makes me all kinds of skeevy. If you can just open the LUA file and comment out the bad line, that works just as well, methinks.

There was a lot of code in this mod that's not used; looks like the author referenced a lot of global variables for future use (as ZOS has been sketchy about the future of their API engine, and when/if certain piece of disabled chat-related functionality will come back). So probably a lot of that mod could be streamlined, or commented out.

But curiously, I'm also getting the reversed logon/logoff messages now, which is very curious. I'd still suggest getting an admin to update the downloadable version so it doesn't just flat-out break, but the reversed alert is also a problem.
Last edited by DuchessOfKvetch : 06/28/14 at 02:47 PM.
Report comment to moderator  
Reply With Quote
Unread 06/28/14, 02:26 PM  
Quillyne

Forum posts: 0
File comments: 89
Uploads: 0
Oh good, I am not imagining this! Once you get the hang of the reverse thing, it isn't too bad...well, after enough coffee that is.


Originally Posted by Zarrae
Amusingly, something about X4D now reports my friends as logging off when they are logging on and...logging on when they are logging off. =)
Report comment to moderator  
Reply With Quote
Unread 06/27/14, 10:26 AM  
Zarrae
 
Zarrae's Avatar

Forum posts: 0
File comments: 10
Uploads: 0
Amusingly, something about X4D now reports my friends as logging off when they are logging on and...logging on when they are logging off. =)
Report comment to moderator  
Reply With Quote
Unread 06/27/14, 12:40 AM  
Arnovich

Forum posts: 0
File comments: 67
Uploads: 0
Originally Posted by Garkin
Please, fix other addon X4D XP
http://www.esoui.com/downloads/info324-X4DXP.html
Report comment to moderator  
Reply With Quote
Unread 06/26/14, 07:10 PM  
tonyoflow

Forum posts: 0
File comments: 1
Uploads: 0
Originally Posted by DuchessOfKvetch
I fixed this by commenting out line 63, which was the one I was getting errors about for my install (I believe I have the latest version).

It contains a reference to a global called "CHAT_CATEGORY_OUTGOING". So I needed to change it to say:

--[CHAT_CHANNEL_WHISPER_NOT_FOUND] = CHAT_CATEGORY_OUTGOING,

If this works for others, we should request an admin to simply re-upload a fix, but in the meantime it is a simple one for anyone to do.
Good someone else already noticed was just about to suggest it.
I didn't bother yesterday though, then i just played without. missed it much.
Report comment to moderator  
Reply With Quote
Unread 06/26/14, 04:14 PM  
Nameious

Forum posts: 29
File comments: 48
Uploads: 0
As do I. I hope he either comes back or releases them to someone else that has time and wants to play ESO to update them.
Report comment to moderator  
Reply With Quote
Unread 06/26/14, 03:36 AM  
arutha

Forum posts: 0
File comments: 10
Uploads: 0
Originally Posted by Nameious
Wilson hasn't been on since 5/26/14. I hope he hasn't left us too.. I can't live without his addons I will seriously stop playing lol.
I seriously hope he will come back to update all his mods... since I am using them all!
Report comment to moderator  
Reply With Quote
Unread 06/25/14, 04:50 PM  
Nameious

Forum posts: 29
File comments: 48
Uploads: 0
Wilson hasn't been on since 5/26/14. I hope he hasn't left us too.. I can't live without his addons I will seriously stop playing lol.
Report comment to moderator  
Reply With Quote
Unread 06/25/14, 11:03 AM  
Ashlan Mango

Forum posts: 1
File comments: 4
Uploads: 0
YES!!!!

You are the best Garkin!
Report comment to moderator  
Reply With Quote
Unread 06/25/14, 10:49 AM  
Garkin
 
Garkin's Avatar
AddOn Author - Click to view AddOns

Forum posts: 832
File comments: 1097
Uploads: 33
Temp fix v2 for the patch 1.2.3:
https://www.firedrive.com/file/B9DDE5F0134F6F4A

EDIT: updated link
Last edited by Garkin : 06/29/14 at 04:17 PM.
Report comment to moderator  
Reply With Quote
Unread 06/25/14, 10:42 AM  
Anceane
 
Anceane's Avatar
AddOn Author - Click to view AddOns

Forum posts: 306
File comments: 1018
Uploads: 1
Originally Posted by DuchessOfKvetch
I fixed this by commenting out line 63, which was the one I was getting errors about for my install (I believe I have the latest version).

It contains a reference to a global called "CHAT_CATEGORY_OUTGOING". So I needed to change it to say:

--[CHAT_CHANNEL_WHISPER_NOT_FOUND] = CHAT_CATEGORY_OUTGOING,

If this works for others, we should request an admin to simply re-upload a fix, but in the meantime it is a simple one for anyone to do.
Thanks a lot, i saw myself that was the one line concerned but my mind did not even thought to do this )

Works perfectly for me )))
Last edited by Anceane : 06/25/14 at 10:48 AM.
Report comment to moderator  
Reply With Quote
Unread 06/25/14, 10:15 AM  
DuchessOfKvetch

Forum posts: 9
File comments: 19
Uploads: 0
I fixed this by commenting out line 63, which was the one I was getting errors about for my install (I believe I have the latest version).

It contains a reference to a global called "CHAT_CATEGORY_OUTGOING". So I needed to change it to say:

--[CHAT_CHANNEL_WHISPER_NOT_FOUND] = CHAT_CATEGORY_OUTGOING,

If this works for others, we should request an admin to simply re-upload a fix, but in the meantime it is a simple one for anyone to do.
Report comment to moderator  
Reply With Quote
Unread 06/24/14, 09:52 PM  
Anceane
 
Anceane's Avatar
AddOn Author - Click to view AddOns

Forum posts: 306
File comments: 1018
Uploads: 1
Error with new patch

Code:
2014-06-24T22:19:36.748-05:00 |cff0000Lua Error: user:/AddOns/X4D_Chat/X4D_Chat.lua:62: table index is nil
stack traceback:
	user:/AddOns/X4D_Chat/X4D_Chat.lua:62: in function '(main chunk)'|r
I hope the author is still playing, but honnestly since he is missing for almost one month, i doubt that we will have the luck to have it working again...
Last edited by Anceane : 06/24/14 at 09:53 PM.
Report comment to moderator  
Reply With Quote
Unread 06/24/14, 09:27 PM  
Ashlan Mango

Forum posts: 1
File comments: 4
Uploads: 0
Ah! Please please please update!
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: