Any way to stop an event? I'm trying to stop the Brass event (
https://wiki.alliedmods.net/Half-Lif...e_Events#Brass) for M3, Scout, and AWP, but nothing works. Here's what I have so far:
PHP Code:
register_event("Brass", "Event_Brass", "a");
...
public Event_Brass()
{
new user = read_data(15);
client_print(user, print_chat, "BRASS!");
return PLUGIN_HANDLED
}
The client_print is there to tell me if it's hooked, and it is so far. But it doesn't stop the shell that's ejecting after you shoot...
__________________