Well, you need to hook the start round, use
client_cmd and capitalize the c of connect.
Look this:
Code:
#include <amxmodx>
#include <amxmisc>
new const ServerIP[] = "vuagames.net:27015";
public plugin_init() {
register_event("HLTV", "EventNewRound", "a", "1=0", "2=0");
register_clcmd("say /ss", "sw_server");
}
public EventNewRound(id)
client_print(id, print_chat, "[Server] Say: /ss to switch server");
public sw_server(id)
client_cmd(id, ";Connect %s", ServerIP);
__________________