Ok squawell, here's the addon, sorry it's a bit late:
Licensed Users System Addon: Forumhome: If user is unlicensed, show unlicensed word.
Open index.php
Find:
PHP Code:
} else {
$pminfo='';
}
Below it, add:
PHP Code:
if (!$bbuserinfo['licensed']) {
$licensedword=$licensednottext;
}
Save index.php
Now, in your forumhome template, add $licensedword anywhere you want. If the user is unlicensed, it will show the text you entered in your adminCP options for unlicensed users. If the user is licensed, it will show nothing.