open warn.php
find ths code:
PHP Code:
$DB_site->query("UPDATE user SET usergroupid='$BANgroup' WHERE userid='$userid'");
replace with:
PHP Code:
$DB_site->query("UPDATE user SET usergroupid='$BANgroup', usertitle='Banned by Warnings' WHERE userid='$userid'");
Also if you have any banned users you can run this query to update the banned titles...
PHP Code:
UPDATE user SET title='Banned by Warnings' WHERE usergroupid=8
This is considering that your banned usergroupid is 8 regards...
g-force2k2