Hello
I have 2 servers: first standard Half Life, second with agmini mod .
At server i installed amx plugin to change servers via /ag command in say . Works that when any player in say write /ag he jump on agmini server.
All work good, but when on agmini server is match 1x1 and agstart is activate , people who join normal go spect (OK) but people who use command from first server join to game skipping "agstart"
Plugin
Код:
#include <amxmodx>
public plugin_init() {
register_plugin("Komendy z say w konsoli", "1.0", "Mister Silenzo")
register_clcmd("say /serwer", "Spec_"); // Rejestracja komendy w "say"
register_clcmd("say_team /serwer", "Spec_"); // Rejestracja komendy w "say_team"
}
public Spec_(id) { //Funkcja wywoływana po wpisaniu /spec
client_cmd(id,"echo ^"^";^"Connect^" 31.186.83.241:27126");
}
How to fix it ? or maybe you have better plugin to changing server via "say" ?