Is tradeable
Function Syntax
boolean is_tradeable(item check_me )
- check_me is an item to test
This function checks to see if the item check_me can be traded, returning true if it can and false otherwise.
Code Samples
The following function dumps your entire inventory into your mall store.
void inv_dump() {
if(have_shop()) {
foreach i in get_inventory()
if(is_tradeable(i)) put_shop(0, item_amount(i), i);
}
}
See Also