Not from my head or my making but in a forgotten folder somewhere on my pc
try this:
execute the query below on your realm database with a mysql editor like Navicat
Quote:
|
INSERT INTO `account`(`username`,`sha_pass_hash`,`joindate`) VALUES ('account_name',SHA1(CONCAT(UPPER('account_name'),':',UPPER('pass'))),NOW());
|
it will create an account for you with the given accountname and password.
In game you can create more accounts, set passwords, etc
If you want more people to join your server, you might want to think about an account creation tool like Mangos Minimanager, or webpage with integrated account creation
good luck