I'm testing out your script and..
I had to change this..
sub set_ingots
finditem ENK C_ , %secure
for #findindex 1 #findcnt
{
Event property #findid
if copper || shadow || bronze || agapite || gold || verite || valorite in #property
ignoreitem #findid
if ingots in #property && shadow notin #property
set %ingots #findid
}
return
It would ignore my valorite ingots last.
It would then set my valorite ingots to %ingots because they were still #findid.
To this..
set %ingots ENK ;I just added this with all the other varibles..
sub set_ingots
finditem %ingots C_ , %secure
for #findindex 1 #findcnt
{
Event property #findid
if copper || shadow || bronze || agapite || gold || verite || valorite in #property
ignoreitem #findid
}
return
This will ignore all colored ingots and only leave iron..
I also added.
menu HideEUO ;Before the menu (Drives me crazy when a menu pops up behind euo and I have to minimize to see it.) ha!
menu Hide ;Before container setup (I would also have to minimize the menu so I could click on the "ok" to target containers)
Besides that it works flawlessly, great script!
Thanks,
Genesis