Hey folks,
Just started on my hack

Here's how to get the basics going (no cpanel module yet; i'll create that tomorrow).
In ubb_lib_posting.cgi (cgi-bin):
FIND:
# get custom title
$user_status = &CustomTitle($user_profile[8]);
ADD BELOW:
require "$vars_config{CGIPath}/ubb_custom_status.cgi";
$user_status .= &GetCustomStatus($this_user_number);
SAVE FILE.
Create a new file called: ubb_custom_status.cgi in the UBB CGI directory with the following code in it:
Safe and upload.
Now to create your custom titles database, create a file called "cstatus.cgi" in your ubb NONCGI directory.
Fileformat is similar to Jimbo's hack with one difference, it uses USER NUMBERS.
e.g.,
00000001|!!|
The Cool Due
1|!!|
The Cool Due
The format is
usernumber|!!|
customtext.
One line per user.
Clear cache and all should be good. I'll develop this into a full-blown hack soon. For now, have fun (this hack is unsuppported). The full-blown hack will be full supported.
q