Just a little suggestion. This code add ad advice on the forum top alerting the zero posting users that in xx days they'll be deleted. .There's a way to integrate this code in your hack?
Quote:
<div align="center">
<font size="2" face="Trebuchet MS, Geneva, Arial, Helvetica, SunSans-Regular, sans-serif">
<script language="JavaScript1.2">
var today = new Date;
var Future0 = new Date;
ThisYear = 2006;
var FutureMonth = 8;
var FutureDate = 30;
Future0.setMonth(FutureMonth, FutureDate);
Future0.setFullYear(ThisYear);
today1 = Date.parse(today);
future1 = Date.parse(Future0);
secleft = future1 - today1;
miliday = 24 * 60 * 60 * 1000;
daysleft = secleft/miliday;
daysleftint = Math.round(daysleft);
if (daysleftint > 1)
document.write("In <b>", daysleftint, "</b> days, all the zero posting users will be deleted! ");
</script>
</font><br><br></div>
|