PDA

View Full Version : Plugin Load Order?


ferret
07-05-2007, 13:55
Is there anyway to ensure plugins load in a certain order?

For example. Plugin #1 creates a CVAR. Plugin #2 uses it.

I can use a timer to delay Plugin #2 trying to use FindConVar(), but is there another way?

API
07-05-2007, 16:36
I would make a forward in the plugin then call it after CVar creation.

BAILOPAN
07-08-2007, 10:06
Load order is undefined. Don't rely on it.

ferret
07-08-2007, 12:04
Yeah I'm well pass this issue :P