This plugin shows users as being either online or offline in the user list (users.php) in the form of an image, similar 
to forum posts.

For this plugin to work you must add this hook to /system/core/users/users.inc.php

/* === Hook === */
$extp = ldu_getextplugins('users.loop.tags');
if (is_array($extp))
	{ foreach($extp as $k => $pl) { include('plugins/extended/'.$pl['pl_code'].'/'.$pl['pl_file'].'.php'); } }
/* ===== */

Look for $t->parse("MAIN.USERS_ROW"); and paste it above that, for me thats about line 319 but may be different for you.

Then install the plugin.

Add <img src="skins/{PHP.skin}/img/online{USERS_ROW_ONLINE}.gif" alt="Online status"> to users.tpl near {USERS_ROW_NAME}

If you want to use other images you can, filename1.gif is the online image and filename0.gif is the offline image.

Note - This will not work unless the tag is in the users_row loop
(it is somewhere between <!-- BEGIN: USERS_ROW --> and <!-- END: USERS_ROW -->).

There is a chance that if you are using a version of LDU greater than 800 (at time of writing not available) the hook may
be not need to be added.


Plugin made by Andrew (bigdave on neocrome) of MuseLive.Com