Str2File("admin_commands.txt", out);
activeChar.sendMessage("Commands list dumped, checkout for admin_commands.txt in the root of server");
break;
case admin_debug_deadlock_sync:
activeChar.sendMessage("Testing Synchronized Deadlock");
new SynchronizedDeadlock().start();
break;
case admin_debug_deadlock_lock:
activeChar.sendMessage("Testing Reentrant Deadlock");
new ReentrantDeadlock().start();
break;