Anyone can help please? I tried changing some. Removed stones that can be bought via NPC and change prize to cash point but it is not working.
//======Name========================================
// Daily Gem Collection Quest
//======Version=====================================
// 1.0
//======Author(s)===================================
// Sandbox
//======Comments====================================
// In loving memory of AstralRO
//==================================================
prontera,147,167,5 script Gem Collector 754,{
if(#TaskDelay+86400 > gettimetick(2)) goto Ltdelay;
mes "[ ^000088Gem Collector^000000 ]";
mes "Greetings, ^008800"+strcharinfo(0)+"^000000. I am the renowned gem collector, ^880000Gem Collector^000000! I am collecting some available gems in Rune Midgard!";
mes "All i am collecting are not available with other NPC like me. Made me sad *sigh*.";
next;
mes "[ ^000088Gem Collector^000000 ]";
mes "I need to collect more of them, If you help me, I will give you something to smile at.";
next;
mes "[ ^000088Gem Collector^000000 ]";
mes "You are in part (^FF0000"+(#dtq+1)+"^000000/10) of this daily task, this is the gem that you'll need to hunt: ^880000";
if(#dtq == 0) mes "3-Carat Diamond (10)";
else if(#dtq == 1) mes "Amethyst (20)";
else if(#dtq == 2) mes "Aquamarine (20)";
else if(#dtq == 3) mes "Sardonyx (20)";
else if(#dtq == 4) mes "Pearl (20)";
else if(#dtq == 5) mes "Garnet (20)";
mes "^000000";
next;
mes "[ ^000088Gem Collector^000000 ]";
mes "For every task you finish, I will reward you with 10 ^0000FFCash Points^000000!"; //Edit to the reward that you would be giving
menu "Gem on!",-,"I have the gems already!",Lgotit;
close;
Lgotit:
next;
if(#dtq == 0 && countitem(732) < 10) goto Lnenough;
else if(#dtq == 1 && countitem(719) < 20) goto Lnenough;
else if(#dtq == 2 && countitem(720) < 20) goto Lnenough;
else if(#dtq == 3 && countitem(725) < 20) goto Lnenough;
else if(#dtq == 4 && countitem(722) < 20) goto Lnenough;
else if(#dtq == 5 && countitem(718) < 20) goto Lnenough;
mes "[ ^000088Gem Collector^000000 ]";
mes "Thank you, this will be kept in my trunk full of gemstones! Bahahahaha.";
if(#dtq == 0) delitem 732,20;
else if(#dtq == 1) delitem 719,20;
else if(#dtq == 2) delitem 720,20;
else if(#dtq == 3) delitem 725,20;
else if(#dtq == 4) delitem 722,20;
else if(#dtq == 5) delitem 718,20;
//getitem 7233,rand(120,300); //Edit to the reward that you would be giving
set .@point_amt, 10;
set #CASHPOINTS, #CASHPOINTS + .@point_amt;
dispbottom "Gained : "+.@point_amt+" Cashpoints. Total : "+ #CASHPOINTS +" Cashpoints.";
mes "There, Cash Points given. Check your chat box!";
next;
mes "See you again next time. Goodbye!";
set #dtq,#dtq+1;
if(#dtq == 6)
{ set #dtq,0;
set #TaskDelay,gettimetick(2);
}
close;
Lnenough:
mes "[ ^000088Gem Collector^000000 ]";
mes "This monocle never fails to tell me if someone's deceiving me.";
close;
Ltdelay:
mes "[ ^000088Gem Collector^000000 ]";
mes "I don't need any gems for now, come back again tomorrow.";
close;
}
NPC is not showing...