Page 1 of 1

CSGO: Timer

Posted: Sun Aug 09, 2015 12:29 pm
by nullable
Hello,

Is it possible to show timer message like warmup timer?

Best Regards.

Posted: Sun Aug 09, 2015 4:39 pm
by satoon101
I haven't tested messages in CS:GO in quite some time. I do not believe we can show a message in the same location as the warmup timer. We can show one in a HintText message, though:

Syntax: Select all

from listeners.tick import TickRepeat
from messages import HintText

def count_down():
HintText(message='Seconds remaining: {0}'.format(timer.remaining)).send()

timer = TickRepeat(count_down)

def start_count_down():
timer.start(1, 10)