From c84759e447a7ab2eadefeeaf28cce1e76b09ea4f Mon Sep 17 00:00:00 2001 From: TurmoilToad Date: Wed, 18 Sep 2019 09:07:18 -0400 Subject: [PATCH] Destroyed First Time Running A Server (markdown) --- First-Time-Running-A-Server.md | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 First-Time-Running-A-Server.md diff --git a/First-Time-Running-A-Server.md b/First-Time-Running-A-Server.md deleted file mode 100644 index c8f1f94..0000000 --- a/First-Time-Running-A-Server.md +++ /dev/null @@ -1,21 +0,0 @@ -## How to set a character to GM Status - -1. Log in to your server with the character you wish to make a GM -2. Log out to the character selection screen. -3. Go into your SQL editor of choice (or command line) and change account.status to 255. -4. Log in and enjoy GM commands (typing #help will give you a list of commands) - -For example, in linux step three would look something like this: - - $ mysql -u my_db_username -p - mysql> use eqemu; - mysql> UPDATE account SET status = 255 WHERE charname = 'my_character_name'; - mysql> quit; - -In this example, `my_db_username` is the username that you set for the mysql database during server installation and `my_character_name` is the name of the character you setting to GM status. - -You may find the [[account]] table schema a useful reference as well. - -## What can I do once I'm a GM? - -For a list of commands you can use once you've elevated an account to GM status, see [[In Game Command Reference]]. This reference can also be found in the table of contents on the right under Reference Lists. \ No newline at end of file