@arzzzae
Updated the Script
if (product == 0) {
mes "I need you to gather some items";
mes "enter any items here";
next;
if (countitem("Jellopy") < 1) goto miss;
if (countitem("Clover") < 1) goto miss;
if (countitem("Fluff") < 1) goto miss;
delitem "Jellopy",1;
delitem "Clover",1;
delitem "Fluff",1;
mes "I see that you have all the items required!";
next;
mes "Please wait for at least 10 minutes in order for me to finish this item.";
addtimer 600000,strnpcinfo(0)+"::OnEnd";
set product,gettimetick(2)+600;
close;
miss:
mes "Sorry, you dont have all the items required.";
close;
}
else if (product >= gettimetick(2)){
OnEnd:
mes "Here's You Item";
getitem 502,1;
set product,0;
close;
}