Jump to content
  • 0
Sign in to follow this  
iCORE

[request] Daily Reward

Question

can you help me guys to set a "daily reward" script in a form of npc that has a timer that reset every 24 hours

Share this post


Link to post
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Try something like this. You've got to change the sprite, NPC position and something else to better suit your needs:

 

prontera,150,150,4	script	rewards	60,{	mes "Here's your daily reward!";	next;	if (#nextrewardtime > gettimetick(2)) {		mes "Sorry, it seems you've already got it!";	}	else {		mes "Take this!";		getitem 512, 1; // Apple		#nextrewardtime = gettimetick(2) + 24*60*60; // delay by 1 day	}	close;}

 

It parses correctly, but didn't test ingame.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.