A ban hammer is the ultimate weapon against all breed of e-vandal. Rest assure, you will be banned from this wiki by the admins if you intentionally vandalize a page.
Furthermore, all of your edits stand to be reverted. Any trace of your existence shall be permanently wiped clean from these pages with about 3 clicks of a button. Long story short, vandalism is a waste of your own time!
An out of line admin can face the same consequences by User:Bradley Monakhos with a couple lines of code in the SQL database.
mysql> select u.user_name, u.user_id, ur.ur_rights, ug.ug_group from user_rights as ur, user as u, user_groups as ug where
ur.ur_user=u.user_id and ug.ug_user=u.user_id and u.user_name = 'YOURNAME';
+------------+---------+-----------+-----------+
| user_name | user_id | ur_rights | ug_group |
+------------+---------+-----------+-----------+
| YOURNAME | 212 | sysop | checkuser |
| YOURNAME | 212 | sysop | sysop |
+------------+---------+-----------+-----------+
2 rows in set (0.00 sec)
mysql> update user_rights SET ur_rights='' WHERE ur_user = 212;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> delete from user_groups where ug_user = 212;
Query OK, 2 rows affected (0.02 sec)