//Made by Johnny Blockhead
package Hubcore
{
//Auto Announcer
function autoAnnounce(%AnnounceMsg)
{
cancel($announceSched);
talk(%AnnounceMsg);
$announceSched = schedule(1000 * 60 * 2, 0, autoAnnounce, %AnnounceMsg);
%announceMsg = "Auto announcer";
}
//Check to see if file is up
function servercmdIsUp(%Client)
{
messageClient(%client,'',"<color:ffffff>Johnny's Server Mod is up and running.");
}
};
activatepackage("Hubcore");
I used the serverCmd to check if the package was executed. It was.
The Auto Announcer doesn't work