Verion of get_inventory() that works like available_amount() ?

fxer

Member
Since get_inventory() just returns your inventory, hard stop, is there a version that functions like available_amount() where it checks equipped items, terrarium, and based on prefs closet/hagnks etc? How hard would it be to write my own function to do that?
 

Theraze

Active member
ashq print("Available items:"); foreach it in $items[] if (available_amount(it) > 0) print(it+": "+available_amount(it));
 
Top