Loading...
» You are not logged in (log in)



You are here: Home » Communication » Chat Timestamps v1.3

Chat Timestamps v1.3

Virus/spyware scanned on upload
WARNING: Not been updated since the last patch
Compatible with WotLK ()
Author: Skizo
Download size: 1.45 kB
Updated 09/09/2008 (518 days ago)
5,172 total downloads / downloads this week: 1,091 / downloads today: 106
Send PM to Skizo
 

Please log in to vote! Current rating: +6


This very tiny mod adds timestamp in [HH:MM:SS] format to every chat window there is. Works perfectly even with every Combat Log window.

You can customize the timestamp by using the command "/cts format <timeformat>", just like "/cts format -HH:MM-" for example.

Also you can vew the current settings using the command "/cts status".



FILES IN ZIP

ChatTimestamps.lua
ChatTimestamps.toc


INSTALLATION

Extract the ChatTimestamps package into the Interface directory inside your World of Warcraft install directory.


TROUBLESHOOTING

If the mod fails to load the most likely problem is a patch revision on the World of Warcraft client PC. This number needs to be correct in the ChatTimestamps.toc. Open ChatTimestamps.toc and change to the current version.

Patch notes for Chat Timestamps v1.3
v1.3
- Added Ingame format setup command
- TOC Updated

v1.2
- TOC Updated

v1.1
- Fixed a bug discovered by McClane, appearing when message was empty
- Changed the way the timestamp is calculated
- TOC Updated
Chat Timestamps v1.2, archived on 09/09/08


Comments

858 days ago
Great mod. :) Any chance of adding an option to display in 12 hour clock with AM and PM ? Yes Elanir, this mod is updated for 2.2 :) [Edit] Managed to turn it into AM and PM myself. Here is what I did to your mod just in case you want to add the idea: [Opened: ChatTimestamps.lau] function ChatTimestamps_AddTimeStamp(msg) if not (msg == nil) then hour = tonumber(date("%H")) minute = date("%M") if (hour >= 12) then if (hour > 12) then hour = hour - 12; end if (hour >= 10) then msg = hour..":"..minute.."pm "..msg; else msg = "0"..hour..":"..minute.."pm "..msg; end else if (hour == 0) then hour = 12; end if (hour >= 10) then msg = hour..":"..minute.."am "..msg; else msg = "0"..hour..":"..minute.."am "..msg; end end end return msg; end
865 days ago
Is this addon updated for wow 2.2??