PHP Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
new bool:aaa[33]
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("round_start", 2, "0=World triggered", "1=Round_Start")
}
public round_start(id)
{
if(!aaa[id])
{
aaa[id] = true;
server_cmd ("pb_minbots 3")
set_task(60.0,"bot1",id)
}
}
public bot1(id)
{
server_cmd ("pb_minbots 6")
set_task(120.0,"bot1",id)
}
public bot2(id)
{
server_cmd ("pb_minbots 11")
}
__________________