case 'spider':
$userinfo[where] = "Search Engine Spider";
break;
Add below:
PHP Code:
case 'put your username here':
$userinfo[where] = "The message you want them to recieve";
break;
Now find:
PHP Code:
if ($onlineloc!='' and $userinfo[activity]=='unknown') {
$onlinelocbits=explode("|||",$onlineloc);
while (list($key,$ourfilename)=each($onlinelocbits)) {
list($key,$text)=each($onlinelocbits);
if ($filename==$ourfilename)
$userinfo[activity] = $ourfilename;
}
}
And add below:
PHP Code:
if ($userinfo[userid]==1) {
$userinfo[activity] = 'put your username here';
}