Hey, i notice that there is a way to by pass the Hide N Seek mod's "No teamchange" blocker. If you write "jointeam" you can select team.
Code:
#include <amxmodx>
#include <amxmisc>
public plugin_init(){
register_plugin("Joinblock", "0.1", "tepAse")
register_concmd("jointeam", "block")
}
public block(id)
{
return PLUGIN_HANDLED
}
Will that prevent people to write "jointeam" in console?