prontera,255,255,5 script Cash Points Exchanger 758,{
set .@i, #CASHPOINTS;
mes "[Cashpoints Exchanger]";
mes "You have ^0055FF"+.@i+" Cash Points^000000.";
if (!.@i) { mes "Please come back later."; close; }
mes "I can convert your ^FF0000Cash Points^000000 To a ^FF0000TCG^000000.";
next;
if(select(" - Trade: - ^777777Leave^000000")==2) close;
mes "[Cashpoints Exchanger]";
mes "How many would you like to convert?";
next;
input .@j;
mes "[Cashpoints Exchanger]";
if (.@j < 1 || .@j > #CASHPOINTS) { mes "That's an invalid amount."; close; }
mes "Are you sure you want to exchange ^0055FF"+.@j+" Cashpoints^000000?";
if(select(" - Yes: - No")==2) close;
mes " ";
set #CASHPOINTS, #CASHPOINTS-(.@j*1);
getitem 7227, .@j;
mes "You now have "+countitem(7227)+" TCG.";
close;
}
Cashpoints to TCG