you didn't copy pasted my script properly , you missing one "}"
copy here and paste properly
prontera,162,176,0 script Mining 1907,3,3,{
mes "[^0000FFMining Entrance^000000]";
mes "Before i warp you to mining ground you must have mithril coin from skill matching event";
mes "5x Mithril Coin";
mes "1x Gold Coin US";
next;
mes "[^0000FFMining Entrance^000000]";
mes "you want to go for mining?";
switch(select("I have requirements!","no thanks...")) {
case 1:
if(countitem(674) >= 5 && countitem(7720) >= 1) {
mes "[^0000FFMining Entrance^000000]";
mes "Great! You have the items.";
select("Warp Me");
delitem 7720,1;
delitem 674,5;
warp "force_2-2",173,121;
end;
} else {
mes "[^0000FFMining Entrance^000000]";
mes "Bring me the items I asked for!";
close;
}
case 2:
mes "[^0000FFMining Entrance^000000]";
mes "ok! see you next time!";
close;
}
}