Hello all,
If you're like me, and very paranoid then this may help you

. It stops people [With the correct permissions] from deleting your account on your forums. To do this find:
function deleteMembers($users)
{
global $db_prefix, $sourcedir, $modSettings, $ID_MEMBER;In Sources/ManageMembers.php (/Sources/Subs-members.php in SMF 1.1)and replace it with:
function deleteMembers($users)
{
global $db_prefix, $sourcedir, $modSettings, $ID_MEMBER;
// Protect the person who started the forum
if ($users == 1 or @in_array(1, $users))
fatal_error('You\'re not allowed to delete the administrator.');
This stops people from deleting your account either through your profile, or through the view/delete members page in the admin panel.
If you're ID isn't 1, but you still want to protect yourself, then just change the 2 numbers in this part:
if ($users == 1 || (is_array($users) && in_array(1, $users)))to whatever your member ID is.
If you want this to not extend to more than one user, you can do so by doing what
JohnyB suggested:
// Protect the person who started the forum
if ($users == 1 or $users == 2 or @in_array(1, $users) or @in_array(2, $users))
fatal_error('You\'re not allowed to delete the administrator.');
I hope this helps someone.
TauOnline.Org