Plugin load: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
plugin_load is used to load a plugin after the server is started (some plugins may not work, or cause instability when doing this).
{{wrongtitle|title=plugin_load}}
'''plugin_load''' is used to load a plugin after the server is started (some plugins may not work, or cause instability when doing this).


----
==Usage==


To use it (must be server side) you must input the following:
To use it (must be server side) you must input the following:
plugin_load {serverplugin}
plugin_load {serverplugin}


----
{serverplugin} is a DLL or SO file that rests in the addons directory, you must *NOT* put in the file extension when using plugin_load.
 
==See Also==
{serverplugin} = A DLL or SO file that rests in the addons directory, you must *NOT* put in the file extension when using plugin_load.
* [[plugin_unload]]
[[Category:Console Commands]]

Revision as of 15:23, 19 May 2006

Template:Wrongtitle plugin_load is used to load a plugin after the server is started (some plugins may not work, or cause instability when doing this).

Usage

To use it (must be server side) you must input the following:

plugin_load {serverplugin}
{serverplugin} is a DLL or SO file that rests in the addons directory, you must *NOT* put in the file extension when using plugin_load.

See Also