View Single Post
  #2  
Old 07-24-2007, 06:16 PM
Secrets's Avatar
Secrets
Demi-God
 
Join Date: May 2007
Location: b
Posts: 1,449
Default

Quote:
Originally Posted by endra View Post
113640 New Server connection: 127.0.0.1 port: 57101
0: 30 0E C0 02 01 00 00 00 | 0.......
0: 00 00 00 00 54 75 65 20 - 46 65 62 20 31 33 20 30 | ....Tue Feb 13 0
16: 34 3A 30 33 3A 31 39 20 - 32 30 30 37 00 01 00 00 | 4:03:19 2007....
32: 00 | .
0: 70 07 A0 03 03 00 00 00 | p.......
0: 00 00 00 00 02 00 00 00 | ........
0: 6F 6E 00 00 06 00 00 00 | on......
0: 00 00 00 00 05 00 00 00 | ........
0: 70 DA 36 00 04 00 00 00 | p.6.....
0: 00 00 00 00 54 75 65 20 - 46 65 62 20 31 33 20 30 | ....Tue Feb 13 0
16: 34 3A 30 33 3A 31 39 20 - 32 30 30 37 00 03 00 00 | 4:03:19 2007....
32: 00 | .
0: 00 00 00 00 54 75 65 20 - 46 65 62 20 31 33 20 30 | ....Tue Feb 13 0
16: 34 3A 30 33 3A 31 39 20 - 32 30 30 37 00 02 00 00 | 4:03:19 2007....
32: 00 | .
0: 00 00 00 00 54 75 65 20 - 46 65 62 20 31 33 20 30 | ....Tue Feb 13 0
16: 34 3A 30 33 3A 31 39 20 - 32 30 30 37 00 06 00 00 | 4:03:19 2007....
32: 00 | .
0: 00 00 00 00 54 75 65 20 - 46 65 62 20 31 33 20 30 | ....Tue Feb 13 0
16: 34 3A 30 33 3A 31 39 20 - 32 30 30 37 00 05 00 00 | 4:03:19 2007....
32: 00 | .
0: 00 00 00 00 54 75 65 20 - 46 65 62 20 31 33 20 30 | ....Tue Feb 13 0
16: 34 3A 30 33 3A 31 39 20 - 32 30 30 37 00 04 00 00 | 4:03:19 2007....
32: 00 | .
218203 New client from ip: 127.0.0.1 port: 3565
Unknown packet: .4233692 [92.153.64.0:15->0.0.0.0:0]
[OpCode 0x0003 (OP_Unknown) Size=11]
00000: 00 06 00 00 00 00 00 00 - 00 00 00 | ...........
That's normal for minilogin. You'll need to check this:

Is minilogin set in your variables table?

You should set it as per the guide.
Code:
INSERT INTO VARIABLES (varname, value, information) VALUES ('LoginType', 'Minilogin', 'Set this to Minilogin to login using a minilogin server :)');
If you get an error saying it already exists, try and update it instead. Easiest way to do it is

Code:
UPDATE variables SET value='Minilogin' WHERE varname='LoginType'
Next thing to do is make sure your account's IP is set. It is reporting this error.
Quote:
[Debug] [WORLD__CLIENT] New client from 127.0.0.1:3566
[Debug] [WORLD__CLIENT_ERR] Dekronoth: ID is 0. Is this server connected to min
ilogin?
[Debug] [WORLD__CLIENT_ERR] Dekronoth: Could not find a minilogin account, verif
y ip address logging into minilogin is the same that is in your account table.
World read from the SQL table that it was the public loginserver.

It gets confused on 0, so if it is set to minilogin, just change the account ID.

If it isn't, well, there's your problem.

Hope that helps.
Reply With Quote