Talk:ChatTimeStamps
From WoWWiki
To change the format of the time (like removing the date) you can go in ChatTimeStamps.lua, locate the following line: (it should be around line 287)
return date()..separator.." "..msg;
And add a string parameter to the date function:
return date("%X")..separator.." "..msg;
This string prints only the time in HH:MM:SS format. This page provides full documentation of the date function.
Of course, it only works with local time.
Vishnou00 10:50, 14 May 2005 (EDT)
