map,x,y,pos script NameNPC skin,{
if ( countitem(30000) ) {
mes "Hey Brave adventurer, Seems that you have the requirements to enter the sacred cave.";
mes "Would you like to go there ?";
next;
if ( select("Yes:No") == 1 ) {
close2;
warp "new_1-1",0,0;
end;
}
else {
mes "Bye !";
close;
}
}
else {
mes "You don't have the requirements.";
close;
}
}