function spamChatByAskingPeopleNotToSpam() {
announce("DUN BE SPAMMIN ME BRO!");
if($Pref::Server::spamMessageInterval < 1)
$Pref::Server::spamMessageInterval = 1;
if(!isEventPending($chatSpamSched))
$chatSpamSched = schedule(60000 * $Pref::Server::spamMessageInterval, 0, spamChatByAskingPeopleNotToSpam)
}
function serverCmdHypocriteSpam(%client) {
if(!%client.isAdmin)
return false;
if(isEventPending($chatSpamSched)) {
messageClient(%client, 'messageBoxOK', "Awwww", "You hypocrite.");
return false;
}
return true;
}