Issues making gems with craft lady

Newbie Spellweaver
Joined
Jun 30, 2008
Messages
43
Reaction score
0
I seem to have a problem with the craft lady, she wont make certain things. She will do for example peddler torches, but I cant get her to make gems, always getting the error about not correct items.

I found the crafting script in the M2Server\Envir\Market_Def\ folder the start of which looks like this

Code:
;Settings
(@makegemlist)
%100
+5
+6
+43
+37

[@main]
#SAY
Choose the item you want to make.\ \
<Food item/@makefood>                            <Potion/@makepotion>\
<Gem item/@makegem>                            <Other item/@makeitem>\
<Exclusive for making/@makeetc>         <Stuff item/@makestuff>\
<Ask/@ask> the lady more information about crafting\

[@makefood]
Choose the food you want to cook.\ \
<Previous screen/@main>

[@makepotion]
Choose the potion you want to create.\ \
<Previous screen/@main>

[@makegem]
You can succeed to make a gem most of the times,\
but it could also fail... so be careful.\
Choose the gem you want to craft.\ \
<Previous screen/@main>
and a bit further through it is the info on items needed for the gems e.g.

Code:
[@infoProtectionGem]
To craft this item you will need:\
1x GoldOre Purity 12+\
1x BlackIronOre Purity 12+\
1x Any Accessory\
1x Any Stone\
<Main/@main>

and near the bottom....

Code:
;; by @makegem
BraveryGem        200    1
MagicGem          200    1
SoulGem           200    1
ProtectionGem     200    1
EvilSlayerGem     200    1
DurabilityGem     200    1
StormGem          200    1
AgilityGem        200    1
AccuracyGem       200    1
PoisonGem         200    1
FreezingGem       200    1
DisillusionGem    200    1
EnduranceGem      200    1

and in \M2server\MakeItem.txt there is this sort of thing for the gems
Code:
[ProtectionGem]
GoldOre        12
BlackIronOre   12
Accessory   1
Stone   1

From looking at the crafting script i dont know how any of it works :scratch: :scratch: :scratch: does it link to something else?? is there something missing ???
Some of it does work, like i said the peddler torchs can be made, but without knowing how the script actually works i dont really know where else to start looking.:scratch:

Any help on this one greatly recieved as I dont know what else to try.
 
Initiate Mage
Joined
May 15, 2008
Messages
4
Reaction score
0
[ProtectionGem]
GoldOre 12 <---i think that is tellin the npc u need 12 gold ores
BlackIronOre 12 <-- same as above
Accessory 1
Stone 1
 
Newbie Spellweaver
Joined
Jun 30, 2008
Messages
43
Reaction score
0
[ProtectionGem]
GoldOre 12 <---i think that is tellin the npc u need 12 gold ores
BlackIronOre 12 <-- same as above
Accessory 1
Stone 1

yeah i did wonder that myself, reading the updates.doc file in there is says also made it so ore values below 6 no longer mean 'required purity' but instead just 'required amount'
so if you want ppl to make an item using 2 goldores you just put goldore 2 and instead of the old purity 2+ it'll do 2* goldore


i will try messing with it a bit more and see what happens.
 
Newbie Spellweaver
Joined
Jun 30, 2008
Messages
43
Reaction score
0
tried changeing the 12 to 12+ didnt work
tried changeing the 12 to 1 didnt work
still says i used the incorrect items.