Sure
Code will be like this:
prontera,100,100,4 script BlahBlahBlah 100,{
mes "Blah Blah";
next;
if( select("Coumpound plz", "No thank") != 1 )
close;
if( countitem(5035) < 1 && countitem(2285) < 1 )
{
mes "You don't have Poring Hat and Apple of Archer";
close
}
mes "blah blha";
delitem 5035,1; // Poring Hat
delitem 2285,1; // Apple of Archer
// ItemID: 20000 or something you want to add into your server
// Items description: Duplicate on Apple of Archer, sprite, and name in itemdescription.txt, resname.txt, displayname.txt v.v...
// Itemdb:
// 20000,Apple_of_Archer_Compound,Apple of Archer,6,20,,10,,,,,,,,16,,,,,{ bonus bDex,3; },{},{}
getitem2 5035,1,1,0,0,0,0,0,20000;
close;
}