prontera,150,180,4 script GC Exchanger 100,{
mes .n$;
mes "I can exchange your "+getitemname(.exc_id)+"s for other items.";
mes "Please select from the list what you want.";
mes "( ) = Price per Exchange";
next;
for ( set .@m,0; .@m < getarraysize(.item); set .@m,.@m + 1)
set .@g_menu$,.@g_menu$ + "- "+getitemname(.item[.@m])+" ("+.cost[.@m]+")" + ( (.item[.@m+1] != 0)?":":"");
set .@g,select(.@g_menu$) - 1;
mes .n$;
mes "You have chosen "+getitemname(.item[.@g])+" for the price of "+.cost[.@m]+" "+getitemname(.exc_id)+"s.";
mes "Is that correct?";
if(select("- Yes:- No") - 1) close;
next;
mes .n$;
if(countitem(.exc_id) < .cost[.@g]) {
mes "I'm sorry, but you don't have enough "+getitemname(.exc_id)+", please come back when you have enough.";
close;
}
getitem .item[.@g],1;
delitem .exc_id,.cost[.@g];
mes "Exchange complete.";
close;
OnInit:
set .n$,"["+strnpcinfo(0)+"]";
//= Items: Old Blue Box, Oridecon Box (10pcs), Elunium Box (10pcs), Old Purple Box, Old Card Album
setarray .item[0],603,13890,13889,618,616;
setarray .cost[0],250,500,500,750,2500;
set .exc_id,7517; // Gold Coin
end;
}