Difference between revisions of "How to load plugins without restarting the server"
m (Naleksuh moved page Loading plugins without restarting the server(SourceMod) to How to load plugins without restarting the server) |
|||
(2 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
<h2>How to load plugins without restarting the server</h2> | <h2>How to load plugins without restarting the server</h2> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
+ | 4. Execute "sm_ rcon sm plugin load YourPluginsName" in console where "YourPluginsName" is the name of your plugin. <br /> | ||
+ | '''Important:''' If your plugin's name has a dot in it, you must add ".smx" at the end of your plugin's name. | ||
<br /> | <br /> | ||
− | + | <b>Examples:</b> | |
− | + | * <code>sm_rcon sm plugins load myplugin</code> Will work because the plugin's name doesn't have a dot in it | |
− | + | * <code>sm_rcon sm plugins load my.plugin</code> Won't work because the plugin's name has a dot in it | |
− | < | + | * <code>rcon sm plugins load my.plugin.smx</code> Will work because even though there is a dot in the plugin's name there is ".smx" at the end of the plugin's name |
− | |||
− | |||
− | < | ||
− | |||
− | |||
− | < | ||
− | |||
− | |||
<br /> | <br /> | ||
− | |||
− | |||
− | |||
− | |||
− | + | If you need to unload your plugins simply type "unload" instead of "load".<br /> | |
− | + | If you need a full list of SourceMod plugins commands just type "sm_rcon sm plugins list" in console. | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | If | ||
− | If |
Latest revision as of 21:28, 2 September 2019
How to load plugins without restarting the server
4. Execute "sm_ rcon sm plugin load YourPluginsName" in console where "YourPluginsName" is the name of your plugin.
Important: If your plugin's name has a dot in it, you must add ".smx" at the end of your plugin's name.
Examples:
sm_rcon sm plugins load myplugin
Will work because the plugin's name doesn't have a dot in itsm_rcon sm plugins load my.plugin
Won't work because the plugin's name has a dot in itrcon sm plugins load my.plugin.smx
Will work because even though there is a dot in the plugin's name there is ".smx" at the end of the plugin's name
If you need to unload your plugins simply type "unload" instead of "load".
If you need a full list of SourceMod plugins commands just type "sm_rcon sm plugins list" in console.