From 8bb911c778468ef1a3f4897df09c27e62734ecb1 Mon Sep 17 00:00:00 2001 From: gpanula Date: Sun, 26 Apr 2015 22:27:56 -0500 Subject: [PATCH] Updated Linux loginserver notes (markdown) --- Linux-loginserver-notes.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Linux-loginserver-notes.md b/Linux-loginserver-notes.md index ef5e212..1123d72 100644 --- a/Linux-loginserver-notes.md +++ b/Linux-loginserver-notes.md @@ -56,4 +56,9 @@ The above magic was found at -> http://www.eqemulator.org/forums/showpost.php?p= And now should be able to start the loginserver via `Bin/loginserver` - +To add a user account, you just need to add an entry to the _tblLoginServerAccounts_ table. When the user successfully logs in for the first time, the server will take care of add them to the _accounts_ table +~~~ +insert into tblLoginServerAccounts +(AccountName,AccountPassword,AccountEmail) +values('FirstUserID',sha('EasyToGuessPassword'),'spam.me@dev.null'); +~~~