Contact Staff
If you are looking for help with a general question, we appreciate it if you would only message through the staff inbox, where we can all help you.
You can do that by sending a message to the Staff Inbox.
View::parse('generic/reply/staffpm.php', array('Hidden' => true)); ?>
First-Line Support
These users are not official staff members. They are users who have volunteered their time to help people in need. Please treat them with respect, and read this before contacting them.
Username |
Last seen |
Support for |
$Row = 'a';
foreach ($FrontLineSupport as $Support) {
list($ID, $Class, $Username, $Paranoia, $LastAccess, $SupportFor) = $Support;
$Row = make_staff_row($Row, $ID, $Paranoia, $Class, $LastAccess, $SupportFor);
} ?>
$CurClass = 0;
$CloseTable = false;
foreach ($Staff as $StaffMember) {
list($ID, $Class, $ClassName, $Username, $Paranoia, $LastAccess, $Remark) = $StaffMember;
if ($Class != $CurClass) { // Start new class of staff members
$Row = 'a';
if ($CloseTable) {
$CloseTable = false;
// the "\t" and "\n" are used here to make the HTML look pretty
echo "\t\t\n\t\t
\n";
}
$CurClass = $Class;
$CloseTable = true;
$HTMLID = '';
switch ($ClassName) {
case 'Moderator':
$HTMLID = 'mods';
break;
case 'Developer':
$HTMLID = 'devs';
break;
case 'Lead Developer':
$HTMLID = 'lead_devs';
break;
case 'Administrator':
$HTMLID = 'admins';
break;
case 'Sysop':
$HTMLID = 'sysops';
break;
default:
$HTMLID = '';
}
echo "\t\t
".$ClassName."s
\n";
?>
Username |
Last seen |
Remark |
} // End new class header
$HiddenBy = 'Hidden by staff member';
// Display staff members for this class
$Row = make_staff_row($Row, $ID, $Paranoia, $Class, $LastAccess, $Remark, $HiddenBy);
} ?>