Script help
#17
(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

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
Thanks given by:


Messages In This Thread
Script help - by Mhtsos - 01 Dec 14, 11:17AM
RE: Script help - by jamz - 01 Dec 14, 02:56PM
RE: Script help - by Mhtsos - 01 Dec 14, 03:05PM
RE: Script help - by Mhtsos - 01 Dec 14, 03:10PM
RE: Script help - by jamz - 01 Dec 14, 04:23PM
RE: Script help - by Mhtsos - 01 Dec 14, 04:56PM
RE: Script help - by jamz - 01 Dec 14, 06:28PM
RE: Script help - by Mhtsos - 01 Dec 14, 06:41PM
RE: Script help - by EndGame - 01 Dec 14, 11:50PM
RE: Script help - by PhaNtom - 01 Dec 14, 11:57PM
RE: Script help - by EndGame - 02 Dec 14, 12:54AM
RE: Script help - by PhaNtom - 02 Dec 14, 02:43AM
RE: Script help - by jamz - 02 Dec 14, 07:27AM
RE: Script help - by MCS - 04 Dec 14, 06:52PM
RE: Script help - by Mhtsos - 04 Dec 14, 09:39PM
RE: Script help - by EndGame - 07 Dec 14, 11:04PM
RE: Script help - by Mhtsos - 08 Dec 14, 08:26PM