How to check Me.Inventory is full?

coolman

Active Member
I use Custom Triggers right ,but it;s no perfect.

Because:

Known Bug Tracking
AddTrigger Trigger Repetition
When using chat tabs (even just 1), switching away from the tab and returning to it causes triggers to be reapplied to ALL buffered text in the selected tab. Do not use chat tabs if using AddTrigger.


Is there another way to check if Me.Inventory is full?

thanks.
 

coolman

Active Member
why
echo ${Me.Inventory[pristine rosewood strong box].IsSlotOpen[${Me.Inventory[pristine rosewood strong box].NumSlots}]}

is always true????
 

Valerian

ISX Specialist
coolman said:
why
echo ${Me.Inventory[pristine rosewood strong box].IsSlotOpen[${Me.Inventory[pristine rosewood strong box].NumSlots}]}

is always true????
my guess is the first pristine rosewood strong box in your inventory is in your bank, and the last slot of that box is indeed empty.

if you want to know if you have an empty slot in your inventory, your best bet would be to use a custom inventory array...
Code:
Me:CreateCustomInventoryArray[nonbankonly]
echo ${Me.CustomInventory[pristine rosewood strong box].IsSlotOpen[${Me.CustomInventory[pristine rosewood strong box].NumSlots}]}
 
Top Bottom