I based myself off of
http://forums.alliedmods.net/showthread.php?p=660187 and
http://forums.alliedmods.net/showthread.php?t=178185
I am doing exactly what they did but it is not working. He registers the client command lets say for buy
Code:
register_clcmd("buy", "bblocked");
So from there he is calling the public bblocked
Code:
public bblocked(id)
{
ColorChat(id,GREEN, "%L", id, "BLOCK_BUY", szPrefix);
return PLUGIN_HANDLED
}
Is that stopping the player from being able to use buy command?