Go Back   EQEmulator Home > EQEmulator Forums > Archives > Archive::Development > Archive::Development

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

Reply
 
Thread Tools Display Modes
  #1  
Old 04-02-2002, 09:26 AM
1010101
Sarnak
 
Join Date: Mar 2002
Posts: 63
Default Looking for Ariak's most recent db...

I've been trying to find a copy of Ariak's most recent database (preferably already compiled) but am having no luck, as Ariak's site seems to be experiencing some technical difficulties. I did get an out-of-date version from a mirror I found by searching one of the threads here, but I'd really like the ToV spawns.

If someone could email it to me (or mirror it somewhere), that'd be greatly appreciated. My email address is 1010101@mighty.co.za.

If you email it to me, please post here that you did so, as I'd hate to receive 10 copies . Thanks in advance.

- 1010101
(http://www.gameroom.com/1010101)
Reply With Quote
  #2  
Old 04-02-2002, 10:48 AM
DeletedUser
Fire Beetle
 
Join Date: Sep 2002
Posts: 0
Default

Hey 1010101, nice to see youve come to our boards (A month ago, but I didn't see ya)

Try visiting: http://nctimes.net/~threeofus/

When you click db.zip and it goes to the geocities page, add a space after the link and you can download it.

Seems to be his new site..
Reply With Quote
  #3  
Old 04-02-2002, 10:53 AM
Ariak
Dragon
 
Join Date: Mar 2002
Posts: 633
Default

/dev/n00b is sponsoring a site for me. Geocities would lock out the page after like 10 meg of data-transfer a day.. Which, basically, is 3 visits and 3 downloads or something.
Reply With Quote
  #4  
Old 04-02-2002, 10:54 AM
1010101
Sarnak
 
Join Date: Mar 2002
Posts: 63
Default

Woohoo! Thanks, image. I appreciate the quick response . And I'm glad to be here. Expect to see much more of me in the coming months.

- 1010101
(http://www.gameroom.com/1010101)
Reply With Quote
  #5  
Old 04-02-2002, 11:19 AM
devn00b's Avatar
devn00b
Demi-God
 
Join Date: Jan 2002
Posts: 15,658
Default

hehe i grew rather annoyed at going to geocrap and getting that you have excceded you xfer limit!

soo worthless!

glad to help. wish i could do more for the emu =)
__________________
(Former)Senior EQEMu Developer
GuildWars Co-Founder / World Builder.
World Builder and Co-Founder Zek [PVP/Guild Wars/City Takeovers]
Member of the "I hate devn00b" Club
Most Senior EQEMu Member.

Current Work: EverQuest 2 Emulator. Zeklabs Server
Reply With Quote
  #6  
Old 04-03-2002, 05:12 AM
Ariak
Dragon
 
Join Date: Mar 2002
Posts: 633
Default !

Fixxing the site today, or tomorrow, whenever I am not busy..
Reply With Quote
  #7  
Old 04-09-2002, 12:17 PM
ryco
Fire Beetle
 
Join Date: Apr 2002
Posts: 27
Default

Ariak, does that new DB work with 0.3.0 Emu ?
I'm a newbie hehe tryed to use your DB ( which looks really awesome ) but got some errors ...
Reply With Quote
  #8  
Old 04-09-2002, 12:36 PM
devn00b's Avatar
devn00b
Demi-God
 
Join Date: Jan 2002
Posts: 15,658
Default

That DB 1.07 i thin it is (could be wrong) is not compatable with the current emu.
__________________
(Former)Senior EQEMu Developer
GuildWars Co-Founder / World Builder.
World Builder and Co-Founder Zek [PVP/Guild Wars/City Takeovers]
Member of the "I hate devn00b" Club
Most Senior EQEMu Member.

Current Work: EverQuest 2 Emulator. Zeklabs Server
Reply With Quote
  #9  
Old 04-09-2002, 03:46 PM
Lurker_005
Demi-God
 
Join Date: Jan 2002
Location: Tourist town USA
Posts: 1,671
Default

1.07 is NOT compatable with EQEmu0.3.0

However the data can be imported in. Use the DB that came with 3.0 and import the data from the spawn,loot,merchant related tables.

Note you have to add data to the spawn2 table, there are several new column's of data required. But some default values work fine in them. I have a post with more info somewhere, in the Dev forum I think.

Or just wait for her next release
Reply With Quote
  #10  
Old 04-09-2002, 09:15 PM
ryco
Fire Beetle
 
Join Date: Apr 2002
Posts: 27
Default

ahhhh ok thought so...
Could you just explain me how to import the item data ?
I tried to copy/paste the item things into drawde's db, but it doesn't work hehe

Thanks for the help
Reply With Quote
  #11  
Old 04-10-2002, 10:12 AM
Lurker_005
Demi-God
 
Join Date: Jan 2002
Location: Tourist town USA
Posts: 1,671
Default

Don't try to mix Drawde's and Ariak's databases, it just isn't worth the hastle, just have a copy of both. If you really want Ariak's database in 3.0 it is easiest to work with the db.sql file. first copy out the aproriate tables to seperate files. Like how Drawde has (not the Full DB) Don't save the table structure, just the "INSERT ...." lines The only one you should have to edit is npc_types add 0,0,' ',' ',0,0,0,1,0,0,0,0 to all the lines
Code:
INSERT INTO npc_types VALUES (1,'Aagron',35,1,1,2010,0,3,3,0,9,37,5,0);

Becomes
INSERT INTO npc_types VALUES (1,'Aagron',35,1,1,2010,0,3,3,0,9,37,5,0,0,0,' ',' ',0,0,0,1,0,0,0,0);
Reply With Quote
  #12  
Old 04-10-2002, 10:51 AM
ryco
Fire Beetle
 
Join Date: Apr 2002
Posts: 27
Default

Well I took only the items from Ariak's db and made a item.txt with them, then I removed the items from Drawde's and went in mysql, did :
use eq
source db.sql
...
use eq
source item.txt

and I think I got it to work now =)
thanks for the help
Reply With Quote
  #13  
Old 04-10-2002, 11:42 AM
Lurker_005
Demi-God
 
Join Date: Jan 2002
Location: Tourist town USA
Posts: 1,671
Default

That should be ok, but while Ariak had some extra items, Drwade's was using the latest collected items(I think) You could source the latest collected items, then Ariak's. It will beep 25000 times, but you'll have the lates collected items plus any Ariak added.
Reply With Quote
  #14  
Old 04-10-2002, 01:27 PM
ryco
Fire Beetle
 
Join Date: Apr 2002
Posts: 27
Default

Had fun with Ariak's items tonight, really tons of nice toys hehe
Good idea to add both, but I can't stand with the beeps
Reply With Quote
  #15  
Old 04-10-2002, 11:35 PM
Ariak
Dragon
 
Join Date: Mar 2002
Posts: 633
Default

My DB is not compatible with the current DB. I am lazy.
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 05:52 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