[CSGO] Order of CFG that is executed
Posted: Sun Sep 28, 2014 6:17 pm
Not sure if this should be posted...so i post it here....
after playing with CSGO dedicated server this past few days it seems like the cfg are executed in the following order
server.cfg -> gamemode_mode_server.cfg
however i have script that uses
then the order becomes
server.cfg -> blahblah.cfg -> gamemode_mode_server.cfg
so my question is how to get blahblah.cfg to execute AFTER the gamemode_mode_server.cfg???
after playing with CSGO dedicated server this past few days it seems like the cfg are executed in the following order
server.cfg -> gamemode_mode_server.cfg
however i have script that uses
Syntax: Select all
from listeners import LevelInit
@LevelInit
def my_level_init_function(mapname):
'''
exec blahblah.cfg
then the order becomes
server.cfg -> blahblah.cfg -> gamemode_mode_server.cfg
so my question is how to get blahblah.cfg to execute AFTER the gamemode_mode_server.cfg???