mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-21 12:52:25 +00:00
Created First Time Running A Server (markdown)
parent
2f4a03c9d5
commit
f82e2603c0
18
First-Time-Running-A-Server.md
Normal file
18
First-Time-Running-A-Server.md
Normal file
@ -0,0 +1,18 @@
|
||||
## 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 name = '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.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user