This lets you setup a cron and clears the shoutboxes in the jail and hospital if you have that mod.
What you need-->
http://criminalexistence.com/ceforums/i ... pic=2069.0
You also need to change the permissions on jailshouts.txt and hospshouts.txt too 0777 for this too work!
NOW lets get to codin' :)
Code
Save this file as clearshouts.php
<?php
//fopen opens the files
$jail = fopen('jailshouts.txt', 'w+');
$hosp = fopen('hospshouts.txt', 'w+');
//fwrite clears the file but inserting nothing
fwrite($jail, "", 25);
fwrite($hosp, "", 25);
//the fclose closes and saves the file
fclose($jail);
fclose($hosp);
?>
Then go to your cron manager and do this--->
0 * * * * curl http://yourgamename.com/clearshouts.php
And your done :)