Please refer to post #11:
Example for a second user:
ACP = Plugin Manager => Add plugin
* Product: Who is online Faker
* (Hook) = online_bit_complete
* Titel = e.g. Onlinefake user X
* Execution oder = 5
* PHP-Code for plugins =
Code:
// who_is_online_fake_xyz.txt is the .txt file
// that is used for this user
// USER_XYZ is the name of this user
if (defined('VB_AREA')) {
$onlinefake = file ('who_is_online_fake_xyz.txt');
switch($userinfo['username']) {
case 'USER_XYZ':
srand ((float)microtime()*1000000);
shuffle ($onlinefake);
$userinfo['action'] = $onlinefake[0];
$userinfo['where'] = '';
break;
}}
That can be done for as many users you want.