As they mention there is a v2.4 for vbulletin 3.5. He didn't change anything between the two versions other then making the variables compatabile and moving file edits to hooks etc.
Vizionz -
1) Not sure what you mean, what exactly do you have the mouse resting on that your looking for hover text on?
2) to change this so that only the job image appears and not the avatar go to
Admincp -> Plugin System -> Plugin Manager -> Scroll down to "Postbit build info for RPG Inferno" and click edit.
In the code there find this -
Code:
if($post['avatar'] == ''){
$rpgavatar = "Inferno/jobs/$post[jimg]";
}
else
{
$rpgavatar = $post['avatar'];
}
And REPLACE it with
Code:
$rpgavatar = "Inferno/jobs/$post[jimg]";
That will change it so that it only shows the job image and never shows a user's rpg avatar.