Enable Bots on Counter-Strike 1.6 Steam / maybe Non-Steam? A Metamod module to enable CS Bot in Counter-Strike 1.6.
Whole script kanged from CSBotEnabler , also included CS Bot Menu
What are the difference?
- Plug and play (i hope)
- Included Bot Menu so you don't have to use console for adjusting bot settings
- Included stock maps NAV
The only configuration of this module is a cvar which allows to precache radio sounds used by the bots. Located in 📄csbot_enabler/config.ini
:
// Precache all bot radio sounds.
// Please note:
// BotChatter.db must be present.
// Keep in mind that's about 487 files for ~10 Mo total to download.
// Files are precached via the generic files buffer.
// -
// Default: "0"
csbot_precache_radio_sounds "0"
if you want to know what are the cvars and commands available for CS Bots, type in the server console:
cvarlist bot
cmdlist bot
- Stop your server
- Clone this repo or Download as zip
- Move / Unzip the contents to 📂
cstrike
- Open & add an entry in 📄
metamod/plugins.ini
:Windows `win32 addons/csbot_enabler/csbot_enabler_mm.dll` Linux `linux addons/csbot_enabler/csbot_enabler_mm_i386.so` - Configure the cvar in 📄
csbot_enabler/config.ini
- Start your server and enjoy.
├─ addons
│ └─ csbot_enabler
│ ├─ config.cfg
│ ├─ csbot_enabler_mm.dll
│ └─ csbot_enabler_mm_i386.so
├─ sound
│ └─ radio
│ └─ bot
│ ├─ a.wav
│ ├─ a_bunch_of_them.wav
│ └─ ...
├─ BotChatter.db
└─ BotProfile.db
To check if plugin is properly loaded, type in the server console: meta list
.
You see something like:
meta list
Currently loaded plugins:
description stat pend file vers src load unlod
[ 1] CS Bot Enabler RUN - csbot_enabler_mm v1.0.0 ini ANY ANY
Check the server log as well:
CS Bot Enabler v1.0.0
Status: Loaded.
- If you see nothing, this means
plugins.ini
of metamod has not been modified. See step 3 above. - If you see
badf load
, make sure you did not do a typo inplugins.ini
of metamod. If not, then report the issue. - If you see
RUN
but bots are not available, check the server log. It should give some message errors. This means likely memory path has failed. Keep in mind that it works only on HLDS build >= 5971. Report the issue if you have the right version.