Go Back   EQEmulator Home > EQEmulator Forums > Archives > Archive::Development > Archive::Database/World Building

Archive::Database/World Building Archive area for General Discussion's posts that were moved here after an inactivity period of 90 days.

Reply
 
Thread Tools Display Modes
  #31  
Old 01-04-2004, 01:44 AM
JerryChen
Fire Beetle
 
Join Date: Dec 2003
Posts: 2
Default

I just update the sql files, but it has error 1017.

So i look the World.EXe status, i found a problem:Wrong name/pass: name='eqemu'

then i open mysql and run this command

INSERT INTO account SET name='eqemu', password='eqemu', status=200;


Now it's working
Reply With Quote
  #32  
Old 01-04-2004, 05:52 AM
cybermax
Sarnak
 
Join Date: Oct 2002
Posts: 90
Default

Quote:
Originally Posted by Scorpious2k
I wrote a conversion program for Scorpious2k Server Interested?
You could post one on the 3rd party forum indeed... I am in no rush tho, cos its just a private server for me and the kid i have like 6 characters, so i just remade them and summoned the gear again.. But i imagine it would be more peeps than me that would be interested tho
Reply With Quote
  #33  
Old 01-04-2004, 11:53 AM
rockocool
Sarnak
 
Join Date: Mar 2003
Location: california
Posts: 63
Default

Scorpious2K, could you please post this program? either here or in 3rd PT? thanks!

Quote:
Originally Posted by Scorpious2k
Quote:
Originally Posted by cybermax
Is there a relatively easy way of converting character data from 5.2 -> 5.3-DR2 format?
I wrote a conversion program for Scorpious2k Server Interested?

I wasn't sure anyone but Conan at BrightBlade was looking for anything like this... maybe I should put a topic in 3rd PT...
Reply With Quote
  #34  
Old 01-04-2004, 12:12 PM
Scorpious2k's Avatar
Scorpious2k
Demi-God
 
Join Date: Mar 2003
Location: USA
Posts: 1,067
Default

Posted:
http://www.eqemulator.net/forums/viewtopic.php?t=12165
__________________
Maybe I should try making one of these servers...
Reply With Quote
  #35  
Old 01-05-2004, 02:14 AM
mollymillions's Avatar
mollymillions
Hill Giant
 
Join Date: May 2003
Posts: 176
Default

There are a lot of duplicated spawns in the DB, they may be intentional but I wanted to get rid of them. e.g.

SELECT zone, x, y, z, left(npc_types.name,32) AS Name, count(spawn2.id) AS SpawnCount
FROM spawn2, spawnentry, npc_types
WHERE spawn2.spawngroupID = spawnentry.spawngroupID
AND spawnentry.npcID = npc_types.ID
AND spawn2.pathgrid = 0
GROUP by zone, x, y, z, npc_types.name
HAVING SpawnCount > 1
ORDER BY zone, x, y, z, npc_types.name

Here's a query to construct a query to delete the last spawn added for each replicated spawn (i didn
Reply With Quote
  #36  
Old 01-05-2004, 03:02 AM
Kroeg's Avatar
Kroeg
Hill Giant
 
Join Date: Oct 2003
Posts: 241
Default

is this query built to delete anything other than the duplicate spawns? If so, hold off.. the My World team is tackling this problem (and has been for a few days) already.

When we merged data from another worldbuilder's sources, the transition wasn't entirely seemless =P but we're cleaning it up now. The id #s for the duplicate npcs are far too high, and contain strange lootdrop entries. Next DB release should contain a fix to this problem, but don't quote me. Sometimes we release the DBs before they're ready just to satisfy worldbuilders and serverops.. although I'm pretty sure this is the basis of our next release

Mollymillions -- We (MW DB Team) need you on our team.. check out #npcmovdb (and stay longer than 5 minutes, hehe.).
Reply With Quote
  #37  
Old 01-05-2004, 06:18 AM
grues0me
Fire Beetle
 
Join Date: May 2003
Posts: 19
Default

I loaded this database up and have a problem:

One thing is that the guards don assist me when i flee to them from a fight. I realized the diconnects after dying too.

Second - are the trainers in? Do i have to source a different quest.sql in or are basic quests already in?
__________________
go climb a rock
Reply With Quote
  #38  
Old 01-05-2004, 07:34 AM
farce
Hill Giant
 
Join Date: Feb 2003
Posts: 126
Default

Quests arent part of the db.

dunno about guards assisting.. they dont even attack a mob that is set to spawn 2 inches from them.

Disconnect on death is a known issue,and fixed for future releases.
Reply With Quote
  #39  
Old 01-05-2004, 07:41 AM
mattmeck
Guest
 
Posts: n/a
Default

Quote:
One thing is that the guards don assist me when i flee to them from a fight.
thats done with factions in the DB
Reply With Quote
  #40  
Old 01-05-2004, 07:44 AM
grues0me
Fire Beetle
 
Join Date: May 2003
Posts: 19
Default

I see. How about the trainers...i hail them and they wont reply...is this a prob with my setup or can someone confirm that its not working...
__________________
go climb a rock
Reply With Quote
  #41  
Old 01-05-2004, 07:51 AM
mattmeck
Guest
 
Posts: n/a
Default

what happens when you right click on them? and are you running
the newest DB with the NPCID fixxes in it?
Reply With Quote
  #42  
Old 01-05-2004, 08:07 AM
Shawn319
Demi-God
 
Join Date: Jan 2002
Posts: 2,073
Default

[quote=mollymillions]There are a lot of duplicated spawns in the DB, they may be intentional but I wanted to get rid of them. e.g.

SELECT zone, x, y, z, left(npc_types.name,32) AS Name, count(spawn2.id) AS SpawnCount
FROM spawn2, spawnentry, npc_types
WHERE spawn2.spawngroupID = spawnentry.spawngroupID
AND spawnentry.npcID = npc_types.ID
AND spawn2.pathgrid = 0
GROUP by zone, x, y, z, npc_types.name
HAVING SpawnCount > 1
ORDER BY zone, x, y, z, npc_types.name

Here's a query to construct a query to delete the last spawn added for each replicated spawn (i didn
__________________
Shawn319
Semi-Retired EQ Addict

(Retired)EQEmu Lead Tester
(Retired)EQEmu Tech Support

(Retired)Host/ServerOP - [LIVE] Official EQEmu Test Server
(Retired)Host/ServerOP - Shawn319's All-GM Dev Test Server
(Retired)ServerOP - EQEmu Beta Server
(Retired)ServerOP - GuildWars Server
(Retired)ServerOP - Raid Addicts
--------------------------
Reply With Quote
  #43  
Old 01-05-2004, 08:33 AM
grues0me
Fire Beetle
 
Join Date: May 2003
Posts: 19
Default

Quote:
Originally Posted by mattmeck
what happens when you right click on them? and are you running
the newest DB with the NPCID fixxes in it?
I am using live eq with Emu5.3Dr2 and mw_052_053_alpha2.

Right clicking opens a merchant window with no items in it.

The fix...i am not sure which you mean, but if you meant the classfix.sql...i gonna try it now.
__________________
go climb a rock
Reply With Quote
  #44  
Old 01-05-2004, 08:50 AM
mattmeck
Guest
 
Posts: n/a
Default

I "think" thats what you need, with the last SOE patch they changed the class ID #'s, so it through everything off.
Reply With Quote
  #45  
Old 01-05-2004, 09:29 AM
grues0me
Fire Beetle
 
Join Date: May 2003
Posts: 19
Default

Thanks that fix did it. My only problems now are now:

1. Health bars of the mob never decrease. I copied the fix i found on the board into the mob.cpp, no help.

2. The crash-on-dying bug. I realize it must have to do with the 400 damage some mob do, but i didnt found a fix on the board, except the global change of the max damage via sql commands.
__________________
go climb a rock
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 03:07 AM.


 

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