08 Dec 14, 08:26PM
(This post was last modified: 09 Dec 14, 03:15PM by jamz.
Edit Reason: removed double post text
)
(07 Dec 14, 11:04PM)EndGame Wrote: omg this is getting interesting. How can I have the clock displayed at all times?
nononono, what's more, I'd like to see real time clock and how much I've played displayed at all times :-D is that possible?
Nope only if its binded to a script
[SELECT ALL] Code:
bind K [
sec = 0
min = 0
hou = 0
+= sec (div (millis) 1000)
+= min (div $sec 60)
+= hou (div $min 60)
echo You've played for ($hou)":"(l0 2 (mod $min 60))":"(l0 2 (mod $sec 60)) and its (timestring)
]
You can also use hudecho instead of echo if you want