> ## Documentation Index
> Fetch the complete documentation index at: https://help.freakhosting.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How to Install AMX Mod X & Metamod in CS 1.6

> Master the fundamental modding framework for Counter-Strike 1.6. Learn how to install and configure Metamod and AMX Mod X to enable custom plugins.

## The Foundation of Legacy Modding

**AMX Mod X (AMXX)** is the definitive technical framework for administering and modifying Counter-Strike 1.6 servers. It functions as a high-performance Metamod plugin that enables the execution of specialized scripts, allowing server owners to implement everything from simple administrative menus and rank systems to complex total-conversion game modes (e.g., Zombie Plague or Jailbreak). Establishing a stable AMXX foundation is the first step toward building a unique and engaging community.

<CardGroup cols={2}>
  <Card title="Difficulty" icon="gauge-low">
    Intermediate
  </Card>

  <Card title="Time" icon="clock">
    10 Minutes
  </Card>
</CardGroup>

***

## Technical Core Components

The modding stack for CS 1.6 uses a two-layered architecture.

1. **Metamod:** Functions as the primary technical bridge between the GoldSource game engine and all third-party modifications.
2. **AMX Mod X:** The high-level management and scripting interface that resides on top of Metamod.

***

## Step 1: Metamod Installation

Follow these steps to initialize the technical bridge.

<Steps>
  <Step title="Initialize Directory">
    Navigate to your server's `/cstrike/addons/` directory and create a new subfolder named **`metamod`**. Within that, create a **`dlls`** folder.
  </Step>

  <Step title="Deploy Binary Assets">
    Upload the `metamod_i386.so` (Linux) or `metamod.dll` (Windows) file into the newly created `dlls` directory.
  </Step>

  <Step title="Initialize Engine Hook">
    Open the `/cstrike/liblist.gam` file. Locate the `gamedll` variable and update the path to point to your new Metamod binary.

    * *Linux Example:* `gamedll_linux "addons/metamod/dlls/metamod_i386.so"`
  </Step>
</Steps>

***

## Step 2: AMX Mod X Deployment

Once the bridge is active, you can deploy the management framework.

<Steps>
  <Step title="Acquire Asset Packages">
    Download the **AMX Mod X Base** and the **Cstrike Addon** distributions.
  </Step>

  <Step title="Deploy to Addons">
    Extract and upload both packages directly into your `/cstrike/` directory. Ensure the internal folders merge correctly with your existing structure.
  </Step>

  <Step title="Authorize Administrative Ranks">
    Open `/cstrike/addons/amxmodx/configs/users.ini`. Add your SteamID or IP following the formatted examples provided in the file to gain in-game management powers.
  </Step>
</Steps>

***

<Note>
  ### Need Extra Help?

  If you encounter any issues, our support team is ready to assist:

  * **Live Chat:** Quick assistance via our website.
  * **Support Ticket:** [Open a Ticket](https://freakhosting.com/clientarea/submitticket.php)
  * **Discord:** [Join our Community](https://discord.gg/freakhosting)
  * **Email:** [support@freakhosting.com](mailto:support@freakhosting.com)
</Note>

<Tip>
  ### Save on Your Hosting

  Ready to get a new server? Use code **KB20** at checkout for **20% off** your first month!
</Tip>

***

<div align="center">
  **Last Updated:** January 2026 | **Modding:** Customizing the classic experience.
</div>
