Which version of the bot_control plugin do you use?
The last released version has a function which automatically fills the servers slots up to a given number - and if there are more than this number of filled slots, bots are removed randomly. But this function also makes the GUI to add and remove bots useless.
As realbot was broken due to the "famous" steam update I switch over to joebot, converted my plugin and modified the autofill function to be disabled when set to 0.
You can disable this function in the plugin by commenting out two lines at the end of the file:
Code:
checkSlots()
set_task(10.0,"checkSlots",0,"",3,"b")
I never intended to let users add bots on their own, but this modification should be simple, change the line
Code:
register_clcmd("amx_botmenu","cmdBotMenu",ADMIN_CFG,"- displays bot control menu")
to
Code:
register_clcmd("amx_botmenu","cmdBotMenu",0,"- displays bot control menu")
if you REALY want to do that.