Try this one instead.
6 seconds after round has ended it will run a command.
Change the command and time to what you want.
PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "bugsy"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("logevent_round_end", 2, "1=Round_End")
}
public logevent_round_end()
{
set_task(6.0, "x1" )
}
public x1()
{
server_cmd("amx_kick STEAMid")
}