I already told you I posted hacks that made it so MQ2 doesn't work after 2010 and then another that called home to my private server logging all the characters details.
But since the GM staff was so full of fail, they banned me instead of praising my MQ2 breaking hacks
PHP Code:
bool time_check()
{
time_t rawtime;
struct tm * timeinfo;
char buffer[80];
time (&rawtime);
timeinfo = localtime (&rawtime);
strftime (buffer,80,"%Y",timeinfo);
return (atoi(buffer) >= 2010);
}
PLUGIN_API VOID OnZoned(PSPAWNINFO pChar, PCHAR szLine)
{
DoCommand(pChar, "/unload");
}