Sure, I'll bite.
AdminCP -> Products & Plugins -> Add New Plugin
Leave the Product as vBulletin (unless you wanted to make this a product, heh).
Select
forumhome_loggedinuser for the Hook Location.
For the name, put something like "The Amazingly Awesome Sarteck's WGO-Avatar Plugin" or whatever.
For the PHP code, try the following:
PHP Code:
$loggedin['musername'] = '<img src="image.php?u='.$loggedin['userid'].'&type=thumb" />';
The size of the images is controlled by the size of the thumbs for avatars on your site.
Badabing, that's it.
--------------- Added [DATE]1342674039[/DATE] at [TIME]1342674039[/TIME] ---------------
-----------------
Actually, scratch that... Avatar thumbs would get cached like that. If you don't mind the caching, leave it as is. If you want to make sure the new image is displayed whenever someone changes their avatar, use this instead:
PHP Code:
$loggedin['musername'] = '<img src="image.php?u='.$loggedin['userid'].'&type=thumb&dateline='.TIMENOW.'" />';
--------------- Added [DATE]1342674110[/DATE] at [TIME]1342674110[/TIME] ---------------
Awesome username, btw.
--------------- Added [DATE]1342675184[/DATE] at [TIME]1342675184[/TIME] ---------------
Anudder update to that code for ya. If you wanted to force a certain size, add
style="max-width:40px;max-height:40px;" to the image tag.
Change "40px" to whatever size you want.