Jump to content
  • 0

how can change this Daily Reward to per account


Blue Jem

Question


  • Group:  Members
  • Topic Count:  151
  • Topics Per Day:  0.04
  • Content Count:  393
  • Reputation:   3
  • Joined:  09/16/13
  • Last Seen:  


//====================== 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/

//=====================================================================================================

//*************************************************************************

prontera,146,158,5 script Daily Reward 911,{

//=========================== Settings ================================================================

set .@rewname$,"[ Daily Reward ]";

set .rewardid,607;

set @rewardamount,10;

//======================= Settings End ================================================================

//*****************************************************************************************************

if(gettimetick(2) - lastTimeTalked > (60 * 60 * 24)) {

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 item!";

next;

mes .@rewname$;

getitem .rewardid,@rewardamount;

mes "Okay have fun with it!";

set lastTimeTalked,gettimetick(2);

close;

case 2:

mes .@rewname$;

mes "Okay goodbye!";

close;

case 3:

close;

}

}

mes .@rewname$;

mes "Sorry you can get the";

mes "Reward again after ";

mes "24 Hours are over!";

close;

}

 

Edited by Capuche
Change the title
Link to comment
Share on other sites

1 answer to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10018
  • Reputation:   2372
  • Joined:  10/28/11
  • Last Seen:  

change ALL

lastTimeTalked

to

#lastTimeTalked
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...