Go Back   EQEmulator Home > EQEmulator Forums > Archives > Archive::Support > Archive::Windows Servers

Archive::Windows Servers Archive area for Windows Servers's posts that were moved here after an inactivity period of 90 days.

Reply
 
Thread Tools Display Modes
  #1  
Old 04-04-2004, 01:25 AM
aventae
Fire Beetle
 
Join Date: Mar 2004
Posts: 8
Default Having Problems with 5.5

i recently just put updated to 5.5 dr-1
and am having a bit of trouble with it ...

here is one of the problems i believe:

Code:
[Status] CURRENT_ZONE_VERSION: EQEMu 0.5.5-DR1
[Status] Loading Variables
[Status] Loading zone names
[Status] Loading items
[Status] EMuShareMem loaded
[Status] Loading npcs
[Status] Loading npc faction lists
[Status] Loading loot tables
[Status] Loading doors
[Status] FileLoadSPDat() Loading spells from ./spells_us.txt
[Status] FileLoadSPDat() spells loaded: 5023
[Status] Loading guilds
[Status] Loading factions
[Status] Loading corpse timers
[Status] Loading what ever is left
[Status] Loading commands
[Status] command_init(): Warning: Command 'help' defaulting to access level 0!
[Status] command_init(): Warning: Command 'version' defaulting to access level 0
!
[Status] command_init(): Warning: Command 'serversidename' defaulting to access
level 0!
[Status] command_init(): Warning: Command 'loc' defaulting to access level 0!
[Status] command_init(): Warning: Command 'flag' defaulting to access level 0!
[Status] command_init(): Warning: Command 'si' defaulting to access level 0!
[Status] 157 commands loaded
[Status] Entering sleep mode
Connected to worldserver: localhost:9000
From a previous post i read ...the above was said the problem was with the database.. so i tried re-doing the data base serveral times.
but still getting this problem.

Other problem i am having is:

Code:
[Status] CURRENT_WORLD_VERSION:EQEMu 0.5.5-DR1
[Status] Loading variables..
[Status] Loading zones..
[Status] Loading items..
[Status] EMuShareMem loaded
[Status] Loading items from database: count=26679, max id=68199
[Status] ./LoginServer.ini read.
[Status] Loading guild ranks..
[Status] Loading ./addon.ini..
[Status] Loading EQ time of day..
[Status] Reboot zone modes ON
[Status] Deleted 0 stale player corpses from database
[Status] Deleted 0 stale player backups from database
Please don't make me a levelme server. :(
TCP listening on: localhost:9000
World server listening on: localhost:9000
Connected to LoginServer: localhost:5999
17535 New TCP connection: 127.0.0.1:4994
New zoneserver: #1 127.0.0.1:4994
Zoneserver SetConnectInfo: 127.0.0.1:4994: localhost:7995
17655 New TCP connection: 127.0.0.1:4995
17655 New TCP connection: 127.0.0.1:4996
17655 New TCP connection: 127.0.0.1:4997
New zoneserver: #2 127.0.0.1:4997
New zoneserver: #3 127.0.0.1:4996
New zoneserver: #4 127.0.0.1:4995
Zoneserver SetConnectInfo: 127.0.0.1:4995: localhost:7996
Zoneserver SetConnectInfo: 127.0.0.1:4996: localhost:7999
Zoneserver SetConnectInfo: 127.0.0.1:4997: localhost:7997
17725 New TCP connection: 127.0.0.1:4998
New zoneserver: #5 127.0.0.1:4998
Zoneserver SetConnectInfo: 127.0.0.1:4998: localhost:7998
53785 New client from ip: 127.0.0.1 port: 1025
127.0.0.1: Wrong name/pass: name='eqemu'
Removing client from ip:127.0.0.1 port:1025
Which i also followed a previous post about this problem to the letter. And am still having the problem.
Have also tried re-install mysql 4.18 and re-install of the Emu + DB..
but still keep getting these errors ... I did have 5.3 running . But it seem to stop working after i had patched eq. Dunno if this is the cuase or if its something i am doing wrong ... Any help on this is and would be greatly appreciated ..thankx
Reply With Quote
  #2  
Old 04-04-2004, 01:37 AM
KhaN's Avatar
KhaN
Dragon
 
Join Date: Mar 2004
Location: France, Bordeaux.
Posts: 677
Default

Open mySQL prompt, enter your DB and type :
Quote:
INSERT INTO account SET name='eqemu', password='eqemu', status=250;
__________________

Reply With Quote
  #3  
Old 04-04-2004, 04:46 AM
samandhi's Avatar
samandhi
Demi-God
 
Join Date: Aug 2003
Posts: 1,056
Default

For the first problem, it is NOT a problem... This only means that the commands that you see listed will be set to access level 0 (which means anyone can use them).. If you want to fix them just edit your addon.ini file and add the commands like so (setting the numbers to reflect the access levels you want those commands to be set to).
Code:
!help=<number you want>
!version=<number you want>
and so on...

The second error you are getting could be one or both things I mention here:

Firstly, make sure your miniloginaccounts.ini has a space in between your ip, UN, and PW, and then one AFTER your PW.... BUT, dont hit enter after you type in your PW and press space, because it will add a newline character into the file that will cause problems reading your PW>>> Also make sure you are using the UN and PW you would use to login to the game NOT UN and PW from your DB....

Another way to add the user into your DB for your minilogin is to:

start>run> type cmd and hit enter

*NOTE hit enter after every line you type into your dos command window
Code:
cd c:/eqmeu (assuming this is where your server is located)
world adduser <username> <password> 200
Where <username> and <password> are the UN and PW you want to use to log into the game with. But, dont use the < and > keys......
__________________

Quote:
Analysis paralysis will keep you from failing, but it will also keep you from succeeding.
  • L.L. CoolJ
Reply With Quote
  #4  
Old 04-04-2004, 07:50 AM
aventae
Fire Beetle
 
Join Date: Mar 2004
Posts: 8
Default

ok thankx ...guess will have to re-trace steps again thru making account.

I used this tho the when using cmd prompting to world.exe
world adduser 'name' 'password' 200 didnt seem to work.

also added this in mysql cmd prompt after sourcing in the database.

Code:
INSERT INTO account (id, name, charname, packencrypt, sharedplat, password, status, lsaccount_id, gmspeed, revoked) VALUES (1, 'name', '', '', 0, 'password', 250, NULL, 0, 0);
for my minilogin account .ini i have
127.0.0.1 'myaccountname' 'myaccountpassword'
with not enter's or anything after.

even used eqemu admin tool 5.2 to check the accounts in the database ..and only displays the account i created with correct password even. hehe

lil why i am baffled on this part..done the above several times.
Reply With Quote
  #5  
Old 04-04-2004, 05:33 PM
aventae
Fire Beetle
 
Join Date: Mar 2004
Posts: 8
Default

bleh ..am still getting this error:

Code:
[Status] CURRENT_WORLD_VERSION:EQEMu 0.5.5-DR1
[Status] Loading variables..
[Status] Loading zones..
[Status] Loading items..
[Status] EMuShareMem loaded
[Status] Loading items from database: count=26679, max id=68199
[Status] ./LoginServer.ini read.
[Status] Loading guild ranks..
[Status] Loading ./addon.ini..
[Status] Loading EQ time of day..
[Status] Reboot zone modes ON
[Status] Deleted 0 stale player corpses from database
[Status] Deleted 0 stale player backups from database
Formatting drive C:
TCP listening on: localhost:9000
World server listening on: localhost:9000
Connected to LoginServer: localhost:5999
28620 New TCP connection: 127.0.0.1:2052
28620 New TCP connection: 127.0.0.1:2054
28620 New TCP connection: 127.0.0.1:2053
New zoneserver: #1 127.0.0.1:2053
New zoneserver: #2 127.0.0.1:2054
New zoneserver: #3 127.0.0.1:2052
Zoneserver SetConnectInfo: 127.0.0.1:2052: localhost:7998
Zoneserver SetConnectInfo: 127.0.0.1:2054: localhost:7999
Zoneserver SetConnectInfo: 127.0.0.1:2053: localhost:7995
28760 New TCP connection: 127.0.0.1:2055
28760 New TCP connection: 127.0.0.1:2056
New zoneserver: #4 127.0.0.1:2056
New zoneserver: #5 127.0.0.1:2055
Zoneserver SetConnectInfo: 127.0.0.1:2055: localhost:7997
Zoneserver SetConnectInfo: 127.0.0.1:2056: localhost:7996
75715 New client from ip: 127.0.0.1 port: 2069
127.0.0.1: Wrong name/pass: name='eqemu'
Removing client from ip:127.0.0.1 port:2069
It seems to be accepting my password ...becuase when i did the world adduser comand i got this:

Code:
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Documents and Settings\trye>cd\nqemu

C:\NQEmu>world adduser Myusername Mypassword 200
[Status] CURRENT_WORLD_VERSION:EQEMu 0.5.5-DR1
Account Attempting to be created:Myusername 200
Error in CreateAccount query 'INSERT INTO account SET name='Myusername', password='
Mypassword', status=200, lsaccount_id=0;' #1062: Duplicate entry 'Myusername' for key
 2
database.CreateAccount failed.

C:\NQEmu>
for making the minilogin acount file i refered to this post:
http://www.eqemulator.net/forums/vie...777267a04fa184

Anyone know what would still cuase this to give me wrong username and password?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 02:48 PM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3