Quote:
Originally Posted by polat2587
im error im edx loader lounch end error help me
|
Check mutliclient on your edx loader and it'll start.
and for the people we also having the "there is already an open DataReader" error add this: "MultipleActiveResultSets=True;" to you database.ini or server.ini i don't know which one i added it at both and the error is gone.
EDIT: Who are still trying to create the server or users table I think I got those 2 table working.
server:
Code:
id -> int
serverid -> smallint
name -> varchar(50)
users_current -> smallint
users_max -> smallint
state -> tinyint
ip -> varchar(20)
port -> smallint
type -> tinyint
make id auto increment
serverid = own choice for example 1
name = server name for example 'test'
users_current = 0
users_max = max users in server for example '500'
state = 0 for check, 1 for online
ip = ip of the gameserver for example '127.0.0.1'
port = port of the gameserver for example '15780'
type = no idea I let this one 0
Code:
userid -> int
id -> varchar(50)
password -> varchar(50)
blocked -> tinyint
online -> tinyint
unkown -> int
silk -> int
gold -> bigint
userid = auto increment
id = username you want to use to login
password = password to login
blocked = make this one 0
online = make this one 0
unkown = i have no idea what this column does i created this one to have enough columns
silk = the amount of silk
gold = the amount of gold
One thing about the password in the users table be sure this one is md5 with uppercase or else you'll get a (C5) error. So if you want 'admin' as your password the md5 will be like this:
21232F297A57A5A743894A0E4A801FC3