Hey guys, so I've been messing around with this script on a ServUO server.

Anyways, I've got it to the point where it puts certain items into the trash barrel so that I can get CuB points. However, I can't figure out why it's not opening MiB. The following code snippet looks good (item id is correct). Do I have something wrong in the settings? I have ASOS checked, but also have MIB checked. Do these two settings conflict with one another?
Thank you.
if #FINDTYPE = HTD ; MIB, but ancient?
{
if %tempmenu = EUOCheckBox21 ; check for ancient MIB
{
set #LOBJECTID #FINDID
event macro 17 0
wait 30
event property #FINDID
if ancient notin #PROPERTY
{
menu get EUOCheckBox8 ; just checking for ancients and not MIBs
if #MENURES = #FALSE
{
ignoreitem #FINDID 2 ; it's plain, forget it
goto checkanddragagain
}
}
else
{
set %ancientcount %ancientcount + 1
set %totalancient %totalancient + 1
UPDATE: Okay, I figured out the issue. It's trying to open the MIB while its still on the sea serpent's corpse. So I need to have it open it after it's in my pack. Let me try to figure this out. If I still need help after a couple days I'll post back here.