Go Back   EQEmulator Home > EQEmulator Forums > Archives > Archive::Support > Archive::Tutorials/Howto's > Tutorials--Outdated Use the Wiki > Tutorials::Discussion

Tutorials::Discussion Discuss Tutorials here. Do NOT POST tutorials here, they belong on the wiki.

Reply
 
Thread Tools Display Modes
  #151  
Old 07-15-2005, 04:59 PM
Aquelin's Avatar
Aquelin
Hill Giant
 
Join Date: Jan 2004
Posts: 145
Default

Did anyone find a fix for the non-loading opcodes pictured here:
http://img319.imageshack.us/my.php?image=error5xb.jpg

Sorry if I missed it, I did skim through all 10 pages of this thread.
__________________
Reply With Quote
  #152  
Old 07-17-2005, 03:49 PM
duke_nemmerle
Fire Beetle
 
Join Date: Jun 2005
Posts: 9
Default

I think in the original tutorial there is a step that says something about making sure you overwrite such and such...go back and do that

If not, re-do the step where you download the world.exe -and- the step where you overwrite it
Reply With Quote
  #153  
Old 07-19-2005, 04:49 AM
MysticDeath
Sarnak
 
Join Date: Jul 2005
Posts: 58
Default

nice tutorial on how to do it, i have some errors though, starting a thread bout it... :P

Last edited by MysticDeath; 07-19-2005 at 02:47 PM..
Reply With Quote
  #154  
Old 07-29-2005, 01:08 AM
iwantavr4
Sarnak
 
Join Date: Jun 2005
Location: Arizona
Posts: 50
Default

Okie dokie.

Well i had a vacation pop-up out of no where(thats good), im also finishing my tour up here in Africa(thats also good), ive also been swamped with turning my duties over to someone else(not so good), and that also means my EQEmu services are pretty much done(also not good). Im sorry to all those who could not get it working. They have patched EQ quite a few times between when this guide was made and now. So fixing the same files i did might not work.

Now htat im going home ill be back contributing to the "Vision", so i wont have much use for an EMu. Perhaps this thread can go into an old archive now, im not sure. But i now understand why it was so difficult for me to find a working guide. EQ changes too much for the average Emu user to keep up without extreme effort. The Devs here are the ones who deserve some major thanks, as well as the people at PEQ.

Good luck everyone. Im pretty much out of here.

Last edited by iwantavr4; 07-29-2005 at 09:58 AM..
Reply With Quote
  #155  
Old 08-02-2005, 01:35 AM
Tharic
Fire Beetle
 
Join Date: Jul 2005
Posts: 2
Default broken link

http://www.facet42.com/downloads/EQE...1-DR1-Perl.zip
appears to be broken...

Anyone know where else I could find this file?

Tharic
Reply With Quote
  #156  
Old 08-02-2005, 02:32 PM
kagegod
Fire Beetle
 
Join Date: Jul 2005
Posts: 1
Default

I was able to do everything but

perl load_13thfloor_items.pl -d eq -u [user] -p [password] <items.txt

Everytime I run this I get the error:

DBD::mysql::db do failed: Unknown column 'clicklevel12' in 'field list' at load_13thfloor_items.pl line 37, <STDIN> line xx

This repeats for all 45,091 lines and thus converts no items. I tried to add the clicklevel12 field into eq.items but I get the same error - anyone else have this problem?
Reply With Quote
  #157  
Old 08-02-2005, 04:10 PM
Havock
Fire Beetle
 
Join Date: Aug 2005
Posts: 3
Exclamation

Quote:
Originally Posted by Tharic
http://www.facet42.com/downloads/EQE...1-DR1-Perl.zip
appears to be broken...

Anyone know where else I could find this file?

Tharic
I'm having trouble with this aswel as the MySQL. Can you post up to date locations of where I can download these from? Much appreciated.
Reply With Quote
  #158  
Old 08-04-2005, 04:01 PM
marqmajere
Fire Beetle
 
Join Date: Jul 2005
Posts: 1
Default

Quote:
Originally Posted by Tharic
http://www.facet42.com/downloads/EQE...1-DR1-Perl.zip
appears to be broken...

Anyone know where else I could find this file?

Tharic
Not working for me either.
Reply With Quote
  #159  
Old 08-04-2005, 09:43 PM
Aretnap
Fire Beetle
 
Join Date: Jul 2005
Posts: 4
Default

/points at EQEMU6.1DR1

/points at MYSQL
Reply With Quote
  #160  
Old 08-06-2005, 04:21 AM
Carnage_ou812
Fire Beetle
 
Join Date: Jul 2005
Posts: 12
Default

Quote:
Originally Posted by kagegod
I was able to do everything but

perl load_13thfloor_items.pl -d eq -u [user] -p [password] <items.txt

Everytime I run this I get the error:

DBD::mysql::db do failed: Unknown column 'clicklevel12' in 'field list' at load_13thfloor_items.pl line 37, <STDIN> line xx

This repeats for all 45,091 lines and thus converts no items. I tried to add the clicklevel12 field into eq.items but I get the same error - anyone else have this problem?
I am having this same problem after running the tutorial 3 times. I was able to successfully start everything and login to my locally running server. A broad item search shows 0 items and merchants have nothing to sell.

Any suggestions?
Reply With Quote
  #161  
Old 08-06-2005, 04:56 AM
Greyhill
Fire Beetle
 
Join Date: Jan 2004
Location: Right behind you
Posts: 7
Default

Carnage + Kagegod:

There's a problem because the item table changed (http://eqemulator.net/forums/showthread.php?t=18990) with the "release" of 0.6.2-DR0. To get around this, you can follow exactly the steps in the tutorial above, but, before you type...

Code:
perl load_13thfloor_items.pl -d eq -u [user] -p [password] <items.txt
1) Go into the command prompt.

2) \mysql\bin\mysql -u [username] -p

3) Enter your password.

4) Execute the following commands:

Code:
use eq;

ALTER TABLE items CHANGE UNK145 UNK150 int not null;
ALTER TABLE items CHANGE UNK141 UNK145 int not null;
ALTER TABLE items CHANGE UNK137 UNK140 int not null;
ALTER TABLE items CHANGE UNK133 UNK135 int not null;
ALTER TABLE items CHANGE UNK129 UNK130 int not null;

ALTER TABLE items ADD clicklevel2 int not null AFTER clicktype;
ALTER TABLE items ADD proclevel2 int not null AFTER proctype;
ALTER TABLE items ADD wornlevel2 int not null AFTER worntype;
ALTER TABLE items ADD focuslevel2 int not null AFTER focustype;
ALTER TABLE items ADD scrolllevel2 int not null AFTER scrolltype;
5) Exit mysql and continue with the tutorial.

6) After you've set everything else up, it's back to mysql (\mysql\bin\mysql -u [username] -p)

7) Now, we do everything in reverse

Code:
use eq;

alter table items change unk130 unk129 not null;
alter table items change unk135 unk133 not null;
alter table items change unk140 unk137 not null;
alter table items change unk145 unk141 not null;
alter table items change unk150 unk145 not null;

alter table items drop column clicklevel2;
alter table items drop column wornlevel2;
alter table items drop column proclevel2;
alter table items drop column focuslevel2;
alter table items drop column scrolllevel2;
It ought to work (does for me) at this point. Thanks for the fantastic tutorial, iwantavr4

Last edited by Greyhill; 08-06-2005 at 01:04 PM..
Reply With Quote
  #162  
Old 08-06-2005, 09:44 AM
Carnage_ou812
Fire Beetle
 
Join Date: Jul 2005
Posts: 12
Default

I got a syntax error when adding the last set of commands from that first section. Adding 'int' before the not null fixed it to where there was no syntax error and I was able to login.

Now, spells are all screwy. My first level wizard is unable to even scribe spells because they are all listed at level 255 with a tiger claw skill.
Reply With Quote
  #163  
Old 08-07-2005, 12:42 PM
-Arctura-
Fire Beetle
 
Join Date: May 2005
Posts: 1
Red face complete and utter noob here...

Ok im a complete noob to this, but would really like to get this figured out.

Im stuck on this step

4) Extract Scalar, DBI, and DBD-Mysql to individual directories in temp

what temp? create a new temp folder and put the files there?



4a) Open command prompt, navigate to the extracted DBI directory, type in PPM then:
Code: install DBI.ppd



oK, i opened the PPM.. typed in install, and it says it cannot find the files, i guess thats because i dont know where to put them in the first place....
how do i make the PPM find the files? i know Standard DOS code but this doesnt seem to recognize it.
how would i say 'install (folder where i put the files)/DBI.ppd'
so that it works?


like i said im a total noob and need things to be explained in full.
(assume i know nothing) lol
Reply With Quote
  #164  
Old 08-10-2005, 06:00 PM
kawika
Sarnak
 
Join Date: Mar 2005
Location: Hurricane City aka Pensacola, FL
Posts: 81
Default

Good call Greyhill, can that be added to the tutorial?
Reply With Quote
  #165  
Old 08-11-2005, 01:07 AM
Debacle
Fire Beetle
 
Join Date: Jun 2005
Posts: 11
Default Aha! It works!

Well, this tutorial finally got me up and running - and thanks Greyhill, I had the same issues with items but the fix worked.

There are alot of other issues right now (characters won't delete, spell msgs are 'Spellunknown', can't scribe spells from scrolls (#scribespells works though)), etc. I'll continue to scour these forums before making a post on them, though.
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 04:22 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