function GodSpam()
{
$godon = true;
schedule(1000,0,god);
}
function god()
{
if (!$spamon)
return;
schedule(5000,0,spam);
%god = getrandom(1,5);
if(%god == 1)
commandToServer('messagesent' , "God is our savior!");
if(%god == 2)
commandToServer('messagesent' , "God loves all!");
if(%god == 3)
commandToServer('messagesent' , "WASH AWAY THY SINS BEFORE IT'S TOO LATE!");
if(%god == 4)
commandToServer('messagesent' , "CUSSING AM BAD");
if(%god == 5)
commandToServer('messagesent' , "IM A JEW!");
}
function godspamoff()
{
$godon = false;
commandToServer('messagesent' , "Good day and saint prayer.");
}
Clearly, you were too lazy to do it correctly.