Thanks YOGA, it works like a charm :3
Last request please, Can you please add a special effects when they convert? where to add this on the script
specialeffect2 248;
prontera,147,157,5 script BC - PODS 100,{
mes "[Trader]";
mes "You currently have ^ff0000"+countitem(9524)+"^000000 "+getitemname(9524)+"";
menu "Convert ^ff0000"+getitemname(9524)+"^000000 to ^ff0000"+getitemname(7179)+"^000000", L_PODS, "Nevermind", L_Cancel;
L_PODS:
next;
mes "[Trader]";
mes "How many you want to exchange?";
mes "^ff0000Note^000000: 1,000 "+getitemname(9524)+" is 1 "+getitemname(7179)+"";
input .@count;
if (.@count == 0) close;
if (countitem(9524) < .@count*1000) goto L_Noitem;
delitem 9524,.@count*1000;
getitem 7179,.@count*1;
close;
L_Noitem:
next;
mes "[Trader]";
mes "[ ^ff0000X^000000 ] Insufficient "+getitemname(9524)+"";
close;
L_Cancel:
mes "[Trader]";
mes "Feel free to use my service anytime!";
close;
end;
}