Recent changes Random page
GAMING
Gaming
 
StarCraft Wiki
Super Smash Wiki
Halopedia
Diablo Wiki
FFXIclopedia
Grand Theft Wiki
See more...

Talk:ChatTimeStamps

From WoWWiki

Jump to: navigation, search

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)