When combining a Platinum Bar and a Cat'e Eye Agate I get a Platinum Cat's Eye Necklace. This is OK because the script checks for "Cat's Eye Agate" in my inventory. This only got me to 226. Now that I'm 242 I need to do something else. I tried Platinum Bars + Amber but I get Platinum Amber Ring. Well the script is looking for "Amber" in my inventory and grabs a Plantinum Amber Ring and puts that in the Jewel Kit which screws up Macro.
So basically my script only works when the gem has a different name then the final product? Anyway to fix that? I'll include the 2 parts of the script that I think is relevant and maybe someone can tell me if there is a better way to do it.
Thanks for your help in advance.
-------------------------------------------------------------------------------------
|verify we have stuff to items
/sendkey down ctrl
/finditem similar "platinum bar"
/if $cursor()!=TRUE /goto :OutOfcomponents
/click left auto
/finditem similar "jade"
/if $cursor()!=TRUE /goto :OutOfcomponents
/click left auto
/call Makejewelry
/sendkey up ctrl
| Sell our products
:SellJewelry
/varset v99 $char(plat)
/varset v98 $char(gold)
/varset v55 $char(silver)
/varset v56 $char(copper)
/finditem similar "jaded platinum ring"
/if $find()==FALSE /goto :Sellstuff
/click left merchant buy
:WaitSale
/doevents
/if n $v99!=$char(plat) /goto :Sellstuff2
/if n $v98!=$char(gold) /goto :Sellstuff2
/if n $v55!=$char(silver) /goto :Sellstuff2
/if n $v56!=$char(copper) /goto :Sellstuff2
/goto :WaitSale
:Sellstuff
/varset v99 $char(plat)
/varset v98 $char(gold)
/varset v55 $char(silver)
/varset v56 $char(copper)
/finditem similar "jaded platinum ring"
/if $find()==FALSE /goto
/click left merchant buy
:WaitSale
/doevents
/if n $v99!=$char(plat) /goto :Sellstuff
/if n $v98!=$char(gold) /goto :Sellstuff
/if n $v55!=$char(silver) /goto :Sellstuff
/if n $v56!=$char(copper) /goto :Sellstuff
/goto :WaitSale
-------------------------------------------------------------------------------------

