#include <amxmodx>
#include <reapi>
new const PLUGIN_VERSION[] = "0.0.1";
public plugin_init() {
register_plugin("Block build_sound msg", PLUGIN_VERSION, "Nordic Warrior");
RegisterHookChain(RH_Con_Printf, "RH_Con_Printf_pre", false);
}
public RH_Con_Printf_pre(const string[]) {
if (string[0] == 'S' && string[3] == 'B' && string[8] == 'S') {
return HC_SUPERCEDE;
}
return HC_CONTINUE;
}