Add this to your headers if you don't have it:
<script src="/jquery.js"></script>
<script>
function offline_avatar_v2(tehNaME,tehImAGE) {
//Created by Agent Moose (smcodes.smfforfree3.com)
$(function() {
$("td b a:contains("+tehNaME+")").parent().next().children().next().next().next().next("span.smalltext:contains(Offline)").next().next().next().next().next().children("img.avatar").attr("src",tehImAGE)
});}
offline_avatar_v2("USERNAME","IMAGE URL")
</script>
This is just like v1, but, this time you only change a certain members avatar if they are offline.
USERNAME = Put the Username of the person who you want there avatar to change if offline
IMAGE URL = The image the users avatar will be if offline
If you want to add more users, just add more of these lines:
offline_avatar_v2("USERNAME","IMAGE URL")