Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

How to create account and set gm

Junior Spellweaver
Joined
May 27, 2022
Messages
118
Reaction score
51
As the title says. I have a BDO 3205 Commercial file server running, but have no idea how to set up accounts (i.e. GM Role) for it.

Anybody have ideas?



nvm. I figured it out on my own.

To the MODERATOR that moved this thread, the procedure for dealing with userids are different between emulator and commercial-file servers. This was originally posted in one of the commercial files threads. Doing this (particularly setting up as a GM) is very, very different.

Cheers!

To provide some of the answers here:

To create an account. No worries. Accounts are created on first login of a new user id and password. This part is the same as the emulators.

the record is created in the database/table:
NOVA_WORLDDB_001
PaGamePrivate.TblUserInformation
The UserID and password a in cleartext (not hashed)

To set the user as a GM (User/Family wide)

SQL COMMAND FOR ADD ADMIN

RUN THIS SQL ON WORLD DB

INSERT INTO [PaGamePrivate].[TblRoleGroupMember]
([_userNo]
,[_roleGroupNo]
,[_macAddress]
,[_ipAddress])
VALUES
(YOUR USERNO THERE
,1
,'YOUR MAC THERE'
,'YOUR IPV4 THERE')

GO




FOR SEARCH TABLES

USE THIS SQL ON WORLD DB

SELECT * from PaGamePrivate.TblRoleGroupMember



(Credit to Ledie for the original post on this)
 
Last edited:
Newbie Spellweaver
Joined
Apr 16, 2023
Messages
50
Reaction score
4
please help i did everything you said and i even saw ledie tutorial when i try to login i get this error and i cant login to the world and the game crashes.
1683299347295 - How to create account and set gm - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Upvote 0
Back
Top