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

Development::Development Forum for development topics and for those interested in EQEMu development. (Not a support forum)

Reply
 
Thread Tools Display Modes
  #1  
Old 08-07-2005, 08:21 PM
canehdian
Sarnak
 
Join Date: Nov 2004
Location: Windsor, Ontario, Canada
Posts: 59
Default Forges

I was wondering if anyone knows how to put up forges, or how to make a combine container, because ive been trying for the past few days and no luck.

thanks ahead of time
__________________
From The Biggest tool ever

Server Op of A server in development! =D

formerly A fire inside
Reply With Quote
  #2  
Old 08-08-2005, 12:07 AM
sdabbs65
Dragon
 
Join Date: Dec 2003
Location: Earth
Posts: 818
Default forge

Quote:
Originally Posted by canehdian
I was wondering if anyone knows how to put up forges, or how to make a combine container, because ive been trying for the past few days and no luck.

thanks ahead of time
I used this off the fourms before just modify it to suit your needs.
hope it helps.. may confuse you even more tho hehe..


INSERT INTO object (id, zoneid, xpos, ypos, zpos, heading, itemid, charges, objectname, type, icon) VALUES (5001, 152, '220', '90', '-55', '140', 17909, 0, 'IT66_ACTORDEF', 53, 1115);

It inserts... well, a forge in the Nexus. It looks like a forge, but it does augment combines instead you can find the code to chage it im sure.
instead of 'IT66_ACTORDEF'

here is thelist I have
13 - Unknown combine type (Maybe for Augments?)
17 - Forge
19 - Brew Barrel
21 & 22 - Kiln & Pottery Wheel, not sure which is which
23 - Unimplemented Tradeskill
24 - Wiz only combine container (Research container?)
25 - Mage only
26 - Necro only
27 - Ench Only
28 - Unimplemented Tradeskill
29 - Unimplemented Tradeskill
31 - High Elves Forge
32 - Dark Elves Forge
33 - Ogre Forge
34 - Dwarve Forge
35 - Gnome Forge
36 - Barbarian Forge
37 - Unimplemented Tradeskill
38 - Iksar Forge
39 - Human Forge
40 - Human Forge (but why 2?)
41 - Halfling Tailoring kit
42 - Erudite Tailor
43 - Wood Elf Tailor
44 - Wood Elf Fletching kit
45 - Iksar Pottery Wheel
47 - Troll Forge
48 - Wood Elf Forge
49 - Halfling Forge
50 - Erudite Forge

4, 6, 7, and 8 all seem to be normal bag types. No combine button. Not sure what they are used for.
__________________
hosting Eqemu/Runuo/wow Emulators.

www.cheaterz.info
Reply With Quote
  #3  
Old 08-08-2005, 12:11 AM
sdabbs65
Dragon
 
Join Date: Dec 2003
Location: Earth
Posts: 818
Default Ground items.

This is the data from GroundItems.Ini file from SHOWEQ. I just added things as I found them.

[GroundItem]
IT1_ACTORDEF=Long Sword
IT5_ACTORDEF=Throwing Knife
IT8_ACTORDEF=Basic Staff
IT10_ACTORDEF=Arrow
IT14_ACTORDEF=Basic Hammer
IT16_ACTORDEF=Basic Spear
IT27_ACTORDEF=Book
IT35_ACTORDEF=Mod Rod
IT62_ACTORDEF=Flaming Sword
IT63_ACTORDEF=Small Bag
IT64_ACTORDEF=Large Bag
IT65_ACTORDEF=Scroll
IT66_ACTORDEF=Forge
IT67_ACTORDEF=Voodoo Doll
IT68_ACTORDEF=Glowing Black Stone
IT69_ACTORDEF=Oven
IT70_ACTORDEF=Brew Barrel
IT73_ACTORDEF=Kiln
IT74_ACTORDEF=Pottery Wheel
IT78_ACTORDEF=Campfire (Oven)
IT128_ACTORDEF=Loom
IT177_ACTORDEF=Shattering Hammer
IT203_ACTORDEF=Round Shield
IT210_ACTORDEF=Shimmering Orb
IT400_ACTORDEF=Globe of Slush Water
IT401_ACTORDEF=Red Mushroom
IT402_ACTORDEF=Blue Mushroom
IT403_ACTORDEF=Yew Leaf
IT10511_ACTORDEF=A Soulstone Shard
IT10512_ACTORDEF=Orb of Exploration
IT10630_ACTORDEF=Fish Sword
IT10661_ACTORDEF=Blade of Walnan
IT10714_ACTORDEF=Augmentation Sealer
IT10725_ACTORDEF=Shuriken
__________________
hosting Eqemu/Runuo/wow Emulators.

www.cheaterz.info
Reply With Quote
  #4  
Old 08-08-2005, 02:29 AM
canehdian
Sarnak
 
Join Date: Nov 2004
Location: Windsor, Ontario, Canada
Posts: 59
Default

thx for all that info, but if you cant combine anything what use is a forge =P
__________________
From The Biggest tool ever

Server Op of A server in development! =D

formerly A fire inside
Reply With Quote
  #5  
Old 08-08-2005, 03:17 AM
sdabbs65
Dragon
 
Join Date: Dec 2003
Location: Earth
Posts: 818
Default eh

Quote:
Originally Posted by canehdian
thx for all that info, but if you cant combine anything what use is a forge =P
my forges work great... im not sure how you set yours up.
if you post your forge SLQ code maybe someone can troubleshoot it for you.
__________________
hosting Eqemu/Runuo/wow Emulators.

www.cheaterz.info
Reply With Quote
  #6  
Old 08-08-2005, 11:26 AM
bushman77
Hill Giant
 
Join Date: May 2003
Location: In the bush
Posts: 129
Default forge sql script

ok we have gotten the forge put in place now we need to be able to have a tradeskill recipie properly setup so we can combine a few items to make a 'new' item
what we've tried gives us the error you cannot combine these items in this container type

Last edited by bushman77; 08-09-2005 at 05:11 PM.. Reason: using the forge
Reply With Quote
  #7  
Old 08-19-2005, 01:01 AM
sdabbs65
Dragon
 
Join Date: Dec 2003
Location: Earth
Posts: 818
Default fix

Quote:
Originally Posted by bushman77
ok we have gotten the forge put in place now we need to be able to have a tradeskill recipie properly setup so we can combine a few items to make a 'new' item
what we've tried gives us the error you cannot combine these items in this container type
drop table forage;

CREATE TABLE forage (

id int(11) NOT NULL auto_increment,

zoneid int(4) NOT NULL default '0',

Itemid int(11) NOT NULL default '0',

level smallint(6) NOT NULL default '0',

chance smallint(6) NOT NULL default '0',

PRIMARY KEY (id)

) TYPE=MyISAM;

-------------------------
then source in this.

http://spacetrader.no-ip.info/fordge.sql
__________________
hosting Eqemu/Runuo/wow Emulators.

www.cheaterz.info
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 10:27 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