• Due to recent spam attacks that heavily used compormised accounts we did reset all user passwords, AGAIN, if it happens and your account got compromised again due to re-used passwords your account will be perma-banned.

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