PDA

View Full Version : New 0.6.0-DR2 // With PEQ Kurnark RC1


darkdonno
11-13-2004, 01:37 PM
Infomation
Server Version 0.6.0-DR2
Operating System: Windows XP
Ram: 512MB
Login: MiniLogin
Database Name: eqpeg
Main Database: PEQ_KURNARK
Sourced: traps.sql, aa_swarmpets.sql;, aa_swarmpets.sql;aa_actions.sql;, tribute.sql, tribute_levels.sql (These are from the CVS SQL-FILES)

Queries Ran:

ALTER TABLE npc_faction_entries ADD COLUMN `npc_value` int(11) unsigned NOT NULL default '0';
[code]
ALTER TABLE `player_corpses` ADD `rezzed` TINYINT UNSIGNED DEFAULT "0";code]


On to the Problems
In the World.exe
TCP listening on: 10.10.1.4:9000
World server listening on: 10.10.1.4:9000
Connected to LoginServer: 10.10.1.4:5999
24785 New TCP connection: 127.0.0.1:1489
New zoneserver: #1 127.0.0.1:1489
Zoneserver SetConnectInfo: 127.0.0.1:1489: 10.10.1.4:1266
Unknown ServerOPcode:12291 size:33
0: 00 00 00 00 57 65 64 20 - 4E 6F 76 20 31 30 20 32 | ....Wed Nov 10 2
16: 33 3A 30 30 3A 33 36 20 - 32 30 30 34 00 00 00 00 | 3:00:36 2004....
32: 00 | .
52816 New client from ip: 10.10.1.3 port: 1220
ERROR! ID is 0!!!
Is this server connected to minilogin?
If so you forget the minilogin variable...
Removing client from ip:10.10.1.3 port:1220
Got signal 2


Login Server.ini

[LoginServer]
loginserver=10.10.1.4
loginport=5999
worldname=evilstation
worldaddress=10.10.1.4
locked=false
account=
password=

[WorldServer]
Defaultstatus=20
Unavailzone=

[LoginConfig]
ServerMode=MiniLogin
ServerPort=5999

[ChatChannelServer]
server=localhost



Please Help

Sarepean
11-13-2004, 01:38 PM
Ah, you are trying MiniLogin, correct?

You need to run these queries:

INSERT INTO variables (varname, value, information) VALUES ('LoginType', 'Minilogin', 'Set this to Minilogin to login using a minilogin server :)');

alter table account add minilogin_ip varchar(32) not null;

insert into account (name,status, minilogin_ip) values('accountnamehere',250,'127.0.0.1');

-Sarepean

darkdonno
11-13-2004, 02:28 PM
Yes i am trying to use MINILOGIN


I did what you said and this is wat the world say
100574 New client from ip: 10.10.1.4 port: 2175
Login with '10516' and 'QMV1I7HNG7'
10.10.1.4: Wrong name/pass: name='10516'
Removing client from ip:10.10.1.4 port:2175

Sarepean
11-13-2004, 02:30 PM
Ah, run this instead. =P

insert into account (name,status, minilogin_ip) values('accountnamehere2',250,'10.0.0.4');

make sure you add the 2 after the account name because it won't let you have the same account for both IPs.

-Sarepean