ItsMods

Full Version: What loads first?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm wondering in which order the .gsc files get loaded or called ...

so .. what gets called first: the gametype.gsc file or _globallogic.gsc?


Also, when I use
Code:
setDvar( "jump_height", 64 );
then it doesn't work :/ So can I add setModDvar "jump_height" to a config to make it work?
Isn't it _load.gsc which loads first after the map files?
(07-03-2011, 18:54)Rendflex Wrote: [ -> ]Isn't it _load.gsc which loads first after the map files?

Yeah _load.gsc is loaded from the map file .. but I need to know when sab.gsc is loaded, if this is before or after globallogic.gsc
sab.gsc is first

Code:
sab.gsc:
    maps\mp\gametypes\_globallogic::init();
    maps\mp\gametypes\_callbacksetup::SetupCallbacks();
    maps\mp\gametypes\_globallogic::SetupCallbacks();