Jump to content
  • 0

Daily reward giver check for ip


Kido

Question


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

Hello, how can i make this daily reward check ip ?

//==================== Informacion ==========================
//==== Recompensa Diaria==========================
//*************************************************************************
//=========================== Conf ==================================================================================
set .@rewname$,"^0000FF[ Premio Diario ]^000000";
setarray .items[0],507,506,508,509,510; //items
//********************************************************************************************************************
prontera,150,206,4	script	Prize	563,50,50,{
if(gettimetick(2) - lastTimeTalked > (60 * 60 * 24)) {
mes .@rewname$;
mes "Wanna get your daily reward?";
next;
switch(select("-Yush!:-No,thx!:-Cancel")) {
	case 1:
        set lastTimeTalked,gettimetick(2);
	mes .@rewname$;
	mes "Allright!";
	mes .@rewname$;
	set .@random,rand(1,25);
	getitem .items[.@random],1;
	close;
	case 2:
	mes .@rewname$;
	mes "Okay bye!";
	close;
	case 3:
	close;
	}
	}
	mes .@rewname$;
	mes "Sry "+strcharinfo(0)+", you already got this";
	mes "Wait 24 hours!!";
	close;
}
Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  


//==================== Informacion ==========================

//==== Recompensa Diaria==========================

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

//=========================== Conf ==================================================================================

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

prontera,150,206,4 script Prize 563,{

set .@rewname$,"^0000FF[ Premio Diario ]^000000";

setarray .items[0],507,506,508,509,510; //items

.@tick = gettimetick(2);

if(.@tick - lastTimeTalked > (60 * 60 * 24)) {

query_sql "select 1 from login join `char` on `char`.account_id = login.account_id join global_reg_value as g on g.char_id = `char`.char_id where last_ip = '"+ getcharip() +"' "+

"and g.`str` = 'lastTimeTalked' and value > ("+ .@tick +" - 86400)", .@tmp;

if ( .@tmp == 0 ) {

mes .@rewname$;

mes "Wanna get your daily reward?";

next;

switch(select("-Yush!:-No,thx!:-Cancel")) {

case 1:

set lastTimeTalked,gettimetick(2);

mes .@rewname$;

mes "Allright!";

getitem .items[ rand( getarraysize(.items) ) ], rand( 1,25 );

close;

case 2:

mes .@rewname$;

mes "Okay bye!";

close;

case 3:

close;

}

}

}

mes .@rewname$;

mes "Sry "+strcharinfo(0)+", you already got this";

mes "Wait 24 hours!!";

close;

}

  • Upvote 2
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

Thank you >:D!

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