Didn't test but should work:
prontera,150,150,4 script Fused Cards seller 60,{ mes "Wanna get a fused card?"; mes "For that, I need:"; mes "1x Red Potion"; // Item ID: 501 mes "1x Blue Potion"; // Item ID: 505 mes "1x Yellow Potion"; // Item ID: 503 mes "1x White Potion"; // Item ID: 504 next; if (select("Yes:No")==2){ // No mes "Get out of here!"; close; } if (countitem(501) && countitem(503) && countitem(504) && countitem(505)){ delitem 501,1; delitem 503,1; delitem 504,1; delitem 505,1; if (rand(100) >= 90) { getitem YOUR_CARD_ID,1; mes "Success! There you go!"; } else { mes "LOL FAIL!"; } } else { mes "You're missing items!"; } close;}
Greetings Sir jaBote,
I just wanna say Thank you for your reply.. very kind of yours.. tested and it work.