Announcements and usernotes, now I knew there were some places I forgot
As for adding users I knew that was coming

You need to modify that ridiculously long if statement I'd suggest creating an array before that code and changing the if statement to check if the userid is in the array:
PHP Code:
$uids = array(1, 2, 3);
// my switch statement here
if (in_array($uservar['userid']), $uids) ......
I'll lookm into the announcements and notes later and see if I can makethe if statement a bit easier