PDA

View Full Version : Forges


canehdian
08-07-2005, 08:21 PM
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

sdabbs65
08-08-2005, 12:07 AM
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.

sdabbs65
08-08-2005, 12:11 AM
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

canehdian
08-08-2005, 02:29 AM
thx for all that info, but if you cant combine anything what use is a forge =P

sdabbs65
08-08-2005, 03:17 AM
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.

bushman77
08-08-2005, 11:26 AM
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

sdabbs65
08-19-2005, 01:01 AM
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