Jump to content
  • 0

H>Daily Rewards


Sallycantdance

Question


  • Group:  Members
  • Topic Count:  224
  • Topics Per Day:  0.14
  • Content Count:  796
  • Reputation:   12
  • Joined:  12/04/20
  • Last Seen:  

hello can someone help me how to make this daily reward script reset every 12am thank you!

 

Quote

//====================== rAthena Script ===============================================================
//=== Made by Rikimaru
//=== Topic Link : http://rathena.org/board/topic/58004-request-daily-reward-npc-script/
//==================== Information ====================================================================
//==== Daily Reward Script
//================= Version : =========================================================================
//=== V 1.1   Fixed a typo in the Script [ Rikimaru ]
//=== V 1.0   Finished Scripting the Daily Reward Script [ Rikimaru ]
//============== Credits : ============================================================================
//=== Credits to Rikimaru for the Daily Reward Script
//=== rAthena Profile Link : http://rathena.org/board/user/434-rikimaru/
//=====================================================================================================
//*************************************************************************
//welgaia,169,236,4    script    Daily Reward NPC    75,{
turbo_room,107,127,5    script    Daily Reward NPC    75,{
//=========================== Settings ================================================================
set .@rewname$,"[ Daily Reward ]";
set .rewardid,12744;
set @rewardamount,1;
//======================= Settings End ================================================================
//*****************************************************************************************************
if(gettimetick(2) > #lastTimeTalked) {
mes .@rewname$;
mes "Hello "+strcharinfo(0)+",I";
mes "am here to give you a daily";
mes "Reward. Do you want to have it?";
next;
switch(select("-Yes,sure!:-No,bye!:-Cancel")) {
case 1:
mes .@rewname$;
mes "Okay going to give you the following items!";
mes "3x Light White Potion Box";
mes "3x Light Blue Potion Box";
mes "2x NT Field Manaual";
mes "2x NT Job Manaual";
mes "2x NT Bubble Gum";

next;
mes "Welcome...this is Daily gift...";
getitem 13534,3;
getitem 13810,3;
getitem 12263,2;
getitem 14606,2;
getitem 12264,2;
mes "Okay have fun with it!";
set #lastTimeTalked,gettimetick(2)+86400;
close;
case 2:
mes .@rewname$;
mes "Okay goodbye!";
close;
case 3:
close;
}
}
mes .@rewname$;
     .@delay = 24 - (gettimetick(2) - #lastTimeTalked);
   .@hours = .@delay / 60*60;
   .@hours = .@delay / (60*60);
     .@minutes = (.@delay - (.@hours*60*60)) / 60;
     mes "Sorry, you have to wait ^ff0000"+.@hours+" hour"+(.@hours>1?"s":"")+" "+.@minutes+" minute"+(.@minutes>1?"s":"")+" "+.@seconds+" second"+(.@seconds>1?"s":"")+"^000000 to claim your free supplies again.";
close;
OnTimer0050:
        showscript "Daily Rewards", getnpcid(0);
        initnpctimer;
        end;
OnInit:
        initnpctimer;
        end;
}
 

 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  78
  • Reputation:   19
  • Joined:  12/24/18
  • Last Seen:  

5 hours ago, GM Winter said:

hello can someone help me how to make this daily reward script reset every 12am thank you!

 

 

 

Try add this somewhere in your script maybe before the OnInit

OnClock0001:
	query_sql "UPDATE `acc_reg_num` SET `value` = '0' WHERE `key` = '#lastTimeTalked'";
end;

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  485
  • Reputation:   271
  • Joined:  06/13/17
  • Last Seen:  

9 hours ago, Mice said:

 

Try add this somewhere in your script maybe before the OnInit

OnClock0001:
	query_sql "UPDATE `acc_reg_num` SET `value` = '0' WHERE `key` = '#lastTimeTalked'";
end;

 

Using query_sql alone will give you the bug of other players that are currently online save and about to save their #lastTimeTalked after the OnClock0001:
If you want to clear that. you should make sure that online players account variable #lastTimeTalked is also set using the addrid(0); then set #lastTimeTalked,0;

Also i don't recommend this kind of checking for daily.

The best way to deal with daily is gettime(DT_YYYYMMDD) if the reset is 12:00AM which changes the date

prontera,155,181,3	script	Daily Reward	94,{
	setarray .@items,501,502,503;
	setarray .@amounts,10,10,10;

	if(#DailyReward != gettime(DT_YYYYMMDD)){
		mes "[Daily Reward]";
		mes "Here's your daily rewards!";
		for(.@i=0;.@i<getarraysize(.@items);.@i++)
			getitem .@items[.@i],.@amounts[.@i];
		set #DailyReward = gettime(DT_YYYYMMDD);
	} else {
		mes "[Daily Reward]";
		mes "You already received your daily reward today.";
		mes "Time until next reward: "+callfunc("Time2Str",86400-gettimetick(1));
	}
end;
}

If you want to change the daily reset to let's say 5:00AM, you just simply need to change the if condition into these. Adding the check !#DailyReward to make sure that new players can get it before 5AM.

if(!#DailyReward || (#DailyReward != gettime(DT_YYYYMMDD) && gettime(DT_HOUR) >= 5)){
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  224
  • Topics Per Day:  0.14
  • Content Count:  796
  • Reputation:   12
  • Joined:  12/04/20
  • Last Seen:  

On 12/7/2024 at 9:17 PM, Haruka Mayumi said:

Using query_sql alone will give you the bug of other players that are currently online save and about to save their #lastTimeTalked after the OnClock0001:
If you want to clear that. you should make sure that online players account variable #lastTimeTalked is also set using the addrid(0); then set #lastTimeTalked,0;
Also i don't recommend this kind of checking for daily.

The best way to deal with daily is gettime(DT_YYYYMMDD) if the reset is 12:00AM which changes the date

prontera,155,181,3	script	Daily Reward	94,{
	setarray .@items,501,502,503;
	setarray .@amounts,10,10,10;

	if(#DailyReward != gettime(DT_YYYYMMDD)){
		mes "[Daily Reward]";
		mes "Here's your daily rewards!";
		for(.@i=0;.@i<getarraysize(.@items);.@i++)
			getitem .@items[.@i],.@amounts[.@i];
		set #DailyReward = gettime(DT_YYYYMMDD);
	} else {
		mes "[Daily Reward]";
		mes "You already received your daily reward today.";
		mes "Time until next reward: "+callfunc("Time2Str",86400-gettimetick(1));
	}
end;
}

If you want to change the daily reset to let's say 5:00AM, you just simply need to change the if condition into these. Adding the check !#DailyReward to make sure that new players can get it before 5AM.

if(!#DailyReward || (#DailyReward != gettime(DT_YYYYMMDD) && gettime(DT_HOUR) >= 5)){

hello sir thank you for this script while trying it i got this error then i changed 

this line
set #DailyReward, = gettime(DT_YYYYMMDD);
to 
set #DailyReward,gettime(DT_YYYYMMDD);

then its working
but the problem now is the remaining time to the next reward was not showing

12.png

Edited by GM Winter
Link to comment
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.   Paste as plain text instead

  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.

×
×
  • Create New...