Jump to content
  • 0
Sign in to follow this  
mrlongshen

Daily rewards

Question

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;}

 

Can someone add after redeem, please redeem again at 9.00 pm on 14.12.2015. I need the date and time.

Share this post


Link to post
Share on other sites

5 answers to this question

Recommended Posts

  • 0
prontera,150,180,4	script	rewards	1_F_MARIA,{	mes "Here's your daily reward!";	next;	if ( #nextrewardtime + .next_take > gettimetick(2) ) {		mes "Sorry, it seems you've already got it!";	}	else {		mes "Take this!";		getitem Apple, 1;		#nextrewardtime = gettimetick(2);		query_sql "select date_format( now() + interval "+ .next_take +" second,'%l %i %p'), date_format( now() + interval "+ .next_take +" second,'%e.%c.%Y')", .@time1$, .@time2$;		mes "Can someone add after redeem, please redeem again at "+ .@time1$ +" on "+ .@time2$ +". I need the date and time.";	}	close;OnInit:	.next_take = 24*60*60; // next time take in seconds. 24*60*60 = 1 Day	end;}

Share this post


Link to post
Share on other sites
  • 0

@@AnnieRuru thanks a lot.

This mes is funny ! hahaha 

mes "Can someone add after redeem, please redeem again at "+ .@time1$ +" on "+ .@time2$ +". I need the date and time.";

Your are writing back mine hahahahahaha

Its should be:

Your next redeem will be available at + .@time1$ +on "+ .@time2$ +". See you later.

 

kikiki. trolling me. btw thanks mam !  :o 

Share this post


Link to post
Share on other sites
  • 0

 

prontera,150,180,4	script	rewards	1_F_MARIA,{	mes "Here's your daily reward!";	next;	if ( #nextrewardtime + .next_take > gettimetick(2) ) {		mes "Sorry, it seems you've already got it!";	}	else {		mes "Take this!";		getitem Apple, 1;		#nextrewardtime = gettimetick(2);		query_sql "select date_format( now() + interval "+ .next_take +" second,'%l %i %p'), date_format( now() + interval "+ .next_take +" second,'%e.%c.%Y')", .@time1$, .@time2$;		mes "Can someone add after redeem, please redeem again at "+ .@time1$ +" on "+ .@time2$ +". I need the date and time.";	}	close;OnInit:	.next_take = 24*60*60; // next time take in seconds. 24*60*60 = 1 Day	end;}

can u make it base on ip?

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

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