Fix: CSDM Installed but Players Don't Respawn

June 4, 2026 Daemon666 8 min read

You installed CSDM, the plugins show as loaded, but players die and stay dead like a normal round. CSDM is a set of AMX Mod X plugins driven by one config file, and "installed but not respawning" almost always means the master switch is off, a core plugin is missing, or the map has no spawn points defined. This walks the config in the order it fails.

1. Confirm the CSDM plugins are loaded

CSDM is several plugins working together. At minimum csdm_main.amxx must run, alongside the spawn and equipment parts. Check:

amxx plugins

Look for the CSDM set — csdm_main.amxx, csdm_spawn_preset.amxx, csdm_equip.amxx, csdm_misc.amxx — each reading running. If csdm_main.amxx is missing or bad load, nothing else in CSDM does anything. Add the block to plugins.ini and change map; the install steps mirror any other AMXX plugin install.

2. Turn CSDM on in csdm.cfg

The plugins loading is not the same as CSDM being active. The master switch lives in the config:

addons/amxmodx/configs/csdm.cfg

The very first setting must be enabled:

active 1

With active 0 — the shipped default on some packages — CSDM sits loaded but dormant, so players die and the normal round rules apply. Set it to 1. This is the single most common cause of "installed but not respawning," and it is easy to miss precisely because the plugins report as loaded and healthy; loaded is not the same as active, and only the config decides the latter.

3. Set the spawn mode and provide spawns

CSDM decides where to respawn people from the spawn mode. In preset mode it uses a per-map list of spawn points, and if that list is empty for the current map, there is nowhere to respawn to. In csdm.cfg:

spawnmode preset

Preset spawns are stored per map. If you are on a map with no preset file, either switch the mode so it reuses the map's own spawn points, or add spawn points with the in-game CSDM spawn editor and save them. A map with an empty spawn preset is a silent reason respawns do nothing even with active 1.

4. Reload the config after editing

CSDM reads csdm.cfg at map start, but you can reload it live rather than waiting for a map change:

csdm_reload

Run that from rcon or the console after editing, and the new active and spawnmode values take effect. If you would rather not manage CSDM's config surface by hand, the CSB CSDM Respawn plugin gives a lighter respawn-on-death setup with a single cvar.

5. Check for a conflicting round or mod plugin

If CSDM is active, the plugins are running, and the map has spawns, but respawns still stutter or fail, look for something else that owns the death and round flow. A zombie mod, a match/knife-round plugin, or a custom respawn plugin can intercept death events before CSDM does, leaving players dead or teleporting them to the wrong place. Two respawn systems on one server fight each other. List your plugins and disable anything that manages spawning or rounds, then test CSDM alone:

amxx plugins

Comment out the suspect in plugins.ini, change the map, and confirm CSDM respawns cleanly on its own. If it does, reintroduce the other plugin only if it is genuinely compatible — a match system and free-for-all deathmatch respawning rarely belong on the same running server at the same time. Deciding which mod owns the server is part of picking a coherent configuration in the first place.

Common errors

  • Plugins loaded, nobody respawnsactive 0 in csdm.cfg. Set active 1 and csdm_reload.
  • Respawns on some maps, not others — preset mode with no spawn file for those maps. Add spawns or change the spawn mode.
  • csdm_main is bad load — a missing module or a version mismatch; the rest of CSDM cannot function. See module failed to load.
  • Players respawn but with no weapons — that is the equipment part, not respawn; check csdm_equip.amxx and its config.
  • Edited csdm.cfg, nothing changed — the config was not reloaded. Run csdm_reload or change the map.

Verification

With active 1 set and reloaded, join the server, get killed, and confirm you respawn within a second or two at a valid spawn point — not stuck in a wall or spectating. Do it on two different maps to confirm the spawn mode works everywhere, not just the map you tested. If everyone respawns cleanly across maps, CSDM is active and its spawns are valid. If one map leaves players dead, that map lacks a spawn preset.

Colaboradores: Daemon666 ✦
Compartilhar: