Is there a time of day mod for FuBar? I have Clock but I need to know whether is it day or night in the game world like the little icon on the minimap used to show (I don't know what happened to my minimap icon but it is gone and I don't know how to get it back - don't even know what it is called to search for it). I've just started fishing and I now need to know the time of day.
Yep you can, in the options. But that won't help none if the map is gone...
Try simpleMinimap to get it back. It allows you to easily move the map around. To make sure you see everything put you UI scale to .64. It fixed another problem I had and it's very versatile.
It's day from 05:30 in the morning to 21:00 in the evening.
Here's a macro for you (drycoded!):
/run do local hour, minute = GetGameTime(); local time = (hour * 60) + minute; DEFAULT_CHAT_FRAME:AddMessage((time < GAMETIME_DAWN or time >= GAMETIME_DUSK) and "Night" or "Day") end
Thanks.
Try simpleMinimap to get it back. It allows you to easily move the map around. To make sure you see everything put you UI scale to .64. It fixed another problem I had and it's very versatile.
It doesn't really change very often :P
If someone is going to make something like this they might find this interesting:
http://wdnaddons.com/2307561/FrameXML/GameTime.lua
It's day from 05:30 in the morning to 21:00 in the evening.
Here's a macro for you (drycoded!):
Thanks for the replies!