PDA

View Full Version : help with minilogin


wontonjoe
11-15-2004, 05:42 PM
apparently im doing something wrong, but i keep getting this error


143186 New client from ip: 216.207.xxx.xxx port: 4571
Login with '10516' and 'QMV1I7HNG7'
216.207.xxx.xxx: Wrong name/pass: name='10516'
Removing client from ip:216.207.xxx.xxx port:4571


i have done everything in the readme, with no errors, and i also tried everything in every post i could find about minilogin configure

any help will be appreciated






DROP TABLE IF EXISTS account;
CREATE TABLE account (
id int(11) NOT NULL auto_increment,
name varchar(30) NOT NULL default '',
charname varchar(64) NOT NULL default '',
packencrypt blob NOT NULL,
password varchar(50) NOT NULL default '',
status int(5) NOT NULL default '0',
lsaccount_id int(11) unsigned default NULL,
gmspeed tinyint(3) unsigned NOT NULL default '0',
sharedbank int(11) NULL default '0',
minilogin_ip varchar(32) NOT NULL default '0',
PRIMARY KEY (id),
UNIQUE KEY name (name),
UNIQUE KEY lsaccount_id (lsaccount_id)
) TYPE=MyISAM;

INSERT INTO account VALUES (1,'username','','','password','250','','0','','12 7.0.0.1');



is this wrong?

Muuss
11-15-2004, 08:14 PM
INSERT INTO account VALUES (1,'username','','','password','250','','0','','12 7.0.0.1');

If you inserted this, its wrong.

For you, it would be something like :

INSERT INTO account VALUES (1,'10516','','QMV1I7HNG7','','250','','0','','216 .207.xxx.xxx');

You need to replace the templates by YOUR coords!

wontonjoe
11-15-2004, 09:58 PM
thanks man, that worked but i had to use 127.0.0.1 instead of 226.207.xxx.xxx

but im having another problem now, after i create a character, when it tries to load a zone, it kicks me back to login screen.
here is the error im getting.
world
[code]
Attempting autobootup of sebilis (89) for Lostheart
Zoneserver SetZone: 127.0.0.1:7997 sebilis (89)
Enter world: Lostheart: sebilis (89)
Broadcasting a world time update
Zoneserver SetZone: 127.0.0.1:7997 sebilis (89)
Received unknown opcode: 0x0376 size:0 bytes
127.0.0.1:3696: TCPConnection::RecvData(): Error: 10054
Removing zoneserver from ip:0.0.0.0 port:0 (127.0.0.1:7997)
Client disconnected
Removing client from ip:216.207.242.231 port:3702


Boot5Zones.bat

REM: ****Read this first!!!****

REM: This file requires your real IP in the place of "YourIP" when you are connecting
REM: To the EQEmu Loginserver.

REM: When you are using minilogin, Replace all IP Addresses to say 127.0.0.1

REM: If you still get errors try using localhost instead of 127.0.0.1

REM:--------------Start-----------------------
@echo off

if NOT exist spells_us.txt goto NOSPELL

start zone . 127.0.0.1 7995 127.0.0.1
start zone . 127.0.0.1 7996 127.0.0.1
start zone . 127.0.0.1 7997 127.0.0.1
start zone . 127.0.0.1 7998 127.0.0.1
start zone . 127.0.0.1 7999 127.0.0.1
exit
cls

:NOSPELL
echo You did not copy the spells_us.txt from your everquest directory to this one. Please do so or zones will crash on startup.
PAUSE

REM:---------------END------------------------[code][/code]

Muuss
11-15-2004, 10:10 PM
-> start zone . localhost 7995 localhost
As long as u use minilogin, stay with localhost. Unless you run something on another comp, in that guess, go for a private lan in 192.168.0.xxx and replace localhost with the matching adresses. (that's what i have at home, 1 server for mysql / emu under linux, 1 client, 1 client with minilogin)

11-16-2004, 12:25 AM
hmm, i tried all of that, im getting a zone error now

[code]
2004/11/16 12:01:45 GMT: Zone 7997 crashed. Errorcode: 2/503. Current zone loaded:gfaydark. Current clients:0. Caused by:
2004/11/16 12:22:21 GMT: Zone 7995 crashed. Errorcode: 2/503. Current zone loaded:gfaydark. Current clients:0. Caused by:
2004/11/16 12:22:37 GMT: Zone 7996 crashed. Errorcode: 2/503. Current zone loaded:sebilis. Current clients:0. Caused by:


Enter world: Lostheart: sebilis (89)
Zoneserver SetZone: localhost:7996 sebilis (89)
Received unknown opcode: 0x0376 size:0 bytes
127.0.0.1:3743: TCPConnection::RecvData(): Error: 10054
Removing zoneserver from ip:0.0.0.0 port:0 (localhost:7996)
Client disconnected
Removing client from ip:216.207.242.231 port:3748

[code][/code]