"You cant buy the flag"

Foodey

Veteran X
Watching demo and having this every second with an very annoying "beep"

anyone knows what's wrong and how to fix it? :e
 
some scripts will use it to measure ping times. i have whipped up some quick code to mute the message..

Code:
function FlagMute(%cl, %msg)
{
	if(%msg == "You couldn't buy Flag")
	{
		return "FALSE";
	}
}

//Uncomment for the pack you use:

//Stripped
//Event::Attach(EventServerMessage, FlagMute);

//Presto
//Event::Attach(EventClientMessage, FlagMute);
 
Back
Top