Page 1 of 1

CS:GO: tick_delays

Posted: Sat Apr 11, 2015 8:52 pm
by MrMalina
I used the following code in the CSS and CSGO:

Syntax: Select all

from listeners.tick import tick_delays

def load():

print("test")

tick_delays.delay(1, load)


In cs:s:
css.jpg


In cs:go
css.jpg


This is a bug, or so conceived?

Posted: Sat Apr 11, 2015 9:07 pm
by L'In20Cible
Not a bug. Unless you disabled hibernation on CS:GO, there is no frame when there is no player. Add the following to your command line:

Code: Select all

+sv_hibernate_when_empty 0

Posted: Sun Apr 12, 2015 9:57 am
by MrMalina
Thanks, now it works.