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
  #1  
Old 06-12-2002, 09:06 PM
EmuGM
Fire Beetle
 
Join Date: May 2002
Posts: 22
Default What's the Most Complete db?

What is the most complete db.sql file right now? Pertaining to correct locs, most updated mobs and items, trade skills, no customized items, stuff like that? and are there any db's out right now that have quests in them?
Reply With Quote
  #2  
Old 06-12-2002, 11:37 PM
Drewfus
Sarnak
 
Join Date: Feb 2002
Posts: 52
Default

Now those are some good questions. Getting kind of hard to get the answer to these questions.

Okay here goes. No flaming allowed here remember.

Anyone have an eta when someone will answer this post with the precise location of where I or we can download a few or at least one good database?? or maybe the next version of eqemu that may come with a new database or something like that??? remember no flaming!!

Have a sense of humor and dont ban me Shawn!!
Reply With Quote
  #3  
Old 06-13-2002, 07:52 AM
killspree
Dragon
 
Join Date: Jun 2002
Posts: 776
Default

I'm working on a full luclin upgrade database. It won't be true to form with the item info(i.e. no bane damage or skill modifiers), but the items themselves will be correct stat-wise.
Reply With Quote
  #4  
Old 06-13-2002, 08:38 AM
EmuGM
Fire Beetle
 
Join Date: May 2002
Posts: 22
Default

Cool, lemme know when u finished that db. Is it going to be an extension from another db or a completely seperate luclin only type db?

By the way, I hope this thread doesnt impose on what Shawn319 was talking about. I'm just inquiring from a general point a view from everyone who thinks the which db is the most accurate and up to date. Hey if so, just delete thread, I dont wanna go against anyone.
Reply With Quote
  #5  
Old 06-13-2002, 10:38 AM
killspree
Dragon
 
Join Date: Jun 2002
Posts: 776
Default

It will mainly be items from luclin. You'll be able to summon them anywhere using the #summonitem command. It'll be up to each serverop to decide what mobs drop them, as I won't be handling that part of it right now.
Reply With Quote
  #6  
Old 06-14-2002, 07:17 AM
Drawde
Dragon
 
Join Date: Jan 2002
Posts: 521
Default

I'm currently working on an updated version of my DB addon (rather slowly though since I haven't had much time to work on it). It should have a lot of improvements in most zones, with more spawn locations and Z-axis fixes (thanks to Trumpcard's 21MB spawnlog collection) as well as more tradeskill recipes (with proper trivial skill values).
Reply With Quote
  #7  
Old 06-14-2002, 12:19 PM
Ariak
Dragon
 
Join Date: Mar 2002
Posts: 633
Default

Drawde = Da Man!
Reply With Quote
  #8  
Old 06-14-2002, 04:31 PM
_OZZY_
Hill Giant
 
Join Date: Jan 2002
Location: Shreveport, Louisiana, USA
Posts: 129
Default

21MB??? Damn! Hehe...that's a lot of spawns!
Reply With Quote
  #9  
Old 06-15-2002, 02:40 AM
Ariak
Dragon
 
Join Date: Mar 2002
Posts: 633
Default

Drawde = Da Man
Reply With Quote
  #10  
Old 06-15-2002, 03:45 AM
Drewfus
Sarnak
 
Join Date: Feb 2002
Posts: 52
Default

/Nod head at Ariak!

Drawde is definately Da MAN!!
Reply With Quote
  #11  
Old 06-15-2002, 09:45 AM
EmuGM
Fire Beetle
 
Join Date: May 2002
Posts: 22
Default

Wow 21mb db, keep us posted!

Hey Drawde if you happen to read this post maybe you can answer these questions about your db:
How accurate are your mob spawns when dealing with the rare spawns, dungeon spawns and town spawns? Does you db have luclin weapons in it and mobs as well? Do you ever put custom stuff and in your db's or do you try to keep it as accurate to the real deal as possible?
Reply With Quote
  #12  
Old 06-16-2002, 03:57 AM
bot403
Sarnak
 
Join Date: May 2002
Posts: 52
Default

a note to you DB makers out there. Try making an upgrade mysql scripts also. I find that i dont want to drop my entire database just to update some tables. Instead of it dropping the entire database and recreating all the tables...including accounts and variables... then just drop teh tables that have changes made for them and then re-create them. THats what i did, but it would be nice to see it incorporated into official releases.
i did somethign like this-
In file update.sql
drop table npc;
create table npc
create definitions here;
drop table loot;
create table loot
more table definitions;
source loot.sql;
source npc.sql;
etc. etc. and remove all the create table definitions for the tables that dont have to be re-sourced like accounts and such.
__________________
-------------------------
ServerOP- Botworld
-------------------------
Reply With Quote
  #13  
Old 06-16-2002, 06:40 AM
Drawde
Dragon
 
Join Date: Jan 2002
Posts: 521
Default

Some replies to your questions - my first DB release was originally very rough and inaccurate in all zones, with many missing spawn points and NPCs, wrong textures and sizes, and most dungeons/underground zones completely messed up with everything at the safe point. Since then I've been improving it with the help of spawnlogs from Trumpcard etc.
In the 0.95 release most towns are near-complete, I'm currently working on outdoor zones (some are OK in 0.95, whilst some, especially hilly ones, have most mobs stuck underground), dungeons are a mixed bag, a few are OK whilst most still have many mobs stuck at the safepoint. I'll fix the dungeons I have spawnlogs for once I've finished fixing outdoor zones.

As for rare spawns, some of them are in there (for example the Ancient Cyclops) but many aren't, the thing is since they're rare there is little chance of them getting collected in a spawnlog unless you're lucky. However if people want to post the approximate locations of some of the others I'll try and add them.

I might try adding some Luclin spawns once I've done Velious, though Luclin zones seem to run annoyingly slowly on my PC.

As for custom stuff, I'm trying to keep the spawns basically the same as EQLive, partly because other people often use my DB as a base for their own add-ons. However with quests (which I'm working on) I'll be adding quite a few custom ones, including some for the intelligent NPC races like aviaks, gnolls, fairies/pixies and frogloks (so they're not just there to kill!)

To bot403, the latest version of my DB addon does have a SQL script that does more or less what you said.
Reply With Quote
  #14  
Old 06-16-2002, 06:48 AM
Ariak
Dragon
 
Join Date: Mar 2002
Posts: 633
Default

Reply With Quote
  #15  
Old 06-16-2002, 07:33 AM
Symarra
Sarnak
 
Join Date: May 2002
Posts: 63
Default Not to be lazy BUT.....

I've got 3 systems I can run EQ on with a T1, and the Q is....

How can I help collect data?

I need some detailed instructions......NOT concerned with ipconfiguring but with what exactly I type to get packcollector/or others running properly.

And what tools I should use exactly to assist ya'll.

I can get to a zone and just let my char sit there for days collecting info, OR do things need to be manipulated(ie. attacked, looted)?

In other words wanna help, but need someone to tell me exactly what to run and where, I can figure out what alterations would be needed for my personal usage.
__________________
Git en ma bellie!
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 08:36 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 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3