How to determine whether an item is itembound items?

Code:
    mes "You currently have "+countbound()+" bounded items.";	next;	mes "The list of bounded items include:";	for(set .@i,0; .@i<getarraysize(@bound_items); set .@i,.@i+1)		mes getitemname(@bound_items[.@i]);	close;
 
Back
Top