summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/Creating-Accounts.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/Creating-Accounts.md b/docs/Creating-Accounts.md
index 3a72f32..ede8b28 100644
--- a/docs/Creating-Accounts.md
+++ b/docs/Creating-Accounts.md
@@ -14,6 +14,12 @@ Note that any gm commands issued from the worldconsole do not require a . in fro
`account create acoreuser abc123`
+## Changing password
+
+```
+account set password <user> <password> <password>
+```
+
# Modifying Account GM Levels
From the worldserver console you can use the account set gmlevel command to modify the gm rights for user. The available levels range from 0 (no access) to 3 (most access). The following command is used to set gm levels for an account:
@@ -36,4 +42,4 @@ In this case we are assuming you used the default database name of auth. If you
`UPDATE auth.account_access AS access
INNER JOIN auth.account AS account ON access.id = account.id
-SET gmlevel = '4' WHERE name = 'acoreuser';` \ No newline at end of file
+SET gmlevel = '4' WHERE name = 'acoreuser';`