Configuring Metamod:Source

From AlliedModders Wiki
Revision as of 17:16, 16 January 2006 by BAILOPAN (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This article briefly overviews the basics of configuring a Metamod:Source installation.

Plugins

Adding Plugins

  1. Open (or create) the "addons/metamod/metaplugins.ini" file in your mod folder (such as "cstrike" or "hl2mp").
  2. Follow the installation instructions the plugin gives you - usually this means uploading its files.
  3. Add a line to the file which points to the plugin's path. If the plugin is in cstrike\addons\sourcemod\bin\sourcemod_mm.dll, you would add:
    addons\sourcemod\bin\sourcemod_mm

    Note that you do not need to worry about the file extension - all you need is the mod folder relative path to the file. If you add an extension, it won't hurt, but it's autodetected anyway. Also, unlike the original Metamod, you do not need to specify whether the plugin is Linux or Windows. You can also specify a full path name, where autodetection will no longer work.

  4. Save the file and either restart the server, change the map, or type "meta refresh" in the console. Note that some plugins need special hooks that may require a map change.

Removing Plugins

  1. Open the "metaplugins.ini" file in addons\metamod\bin.
  2. Comment the line with the plugin by adding a semi-colon:
    ;addons\sourcemod\bin\sourcemod_mm
  3. Save, restart the server, or use meta console commands to unload the plugin.

Managing Plugins

For information on unloading, loading, and refreshing plugins, see meta console commands.