Find equipped items on non-active familiars?

bumcheekcity

Active member
If I have an item equipped on an active familiar, it's accounted for in equipped_amount(item it).

If, however, I have it equipped on a not-currently-active familiar, it isn't, and equipped_amount returns 0.

How do I account for the fact that the familiar may be non-active in equipped_amount()?
 

Bale

Minion
Right now, I think that the only way to find items equipped on a familiar is to parse familiar.php
 

Veracity

Developer
Staff member
Code:
foreach fam in $familiars[]
  if ( have_familiar( fam ) )
    print( fam + " is wearing " + familiar_equipped_equipment( fam ) );
 
Top