View Single Post
CyberStars
Senior Member
Join Date: May 2013
Old 06-12-2014 , 02:28   Re: Dota 2 Dedicated Servers
Reply With Quote #111

Quote:
Originally Posted by _DEMON View Post
It's true! I want to make a delay or cancel the command jointeam spec and make came on SourceTV
To prevent players from using command "jointeam", you need Sourcemod plug-in with following:
Code:
public OnPluginStart()
{
     AddCommandListener(ComCallback, "jointeam");
}

public Action:ComCallback(client, const String:command[], argc)
{
	return Plugin_Handled;
}

For SourceTV take a look at SourceTV for Dota 2

Last edited by CyberStars; 06-12-2014 at 04:36. Reason: Code correcting
CyberStars is offline