Jump to content
  • 0

NPC daily reward with rentitem


Question

5 answers to this question

Recommended Posts

  • 0
Posted (edited)
4 hours ago, IsabelaFernandez said:

Hello guys, I would like this NPC to deliver the reward with the rentitem command, 7200 (time) for example and, if possible, prevent the reward with another
char, only after 24h a single char and not several of the same account.

https://pastebin.com/zd9QFzsx

Thank you all ?

// by Mabuhay
// 24 hrs cd
// account bound
prontera,149,191,5	script	Daily Reward	911,{
	.@cd = 60*60*24; // 24 hrs
	.@time = gettimetick(2);
	if ( #DAILYRENTREWARD+.@cd > .@time ) {
		mes "Come back again after "+Time2Str(#DAILYRENTREWARD+.@cd)+" for your reward.";
		close;
	}
	mes "Here is your daily reward!";
	close2;
	rentitem 1201, 7200; // <id>, <time in seconds>
	#DAILYRENTREWARD = .@time;
	end;
}

Untested but should work

Edited by Mabuhay
  • Upvote 1
  • 0
Posted
8 minutes ago, Mabuhay said:

// by Mabuhay
// 24 hrs cd
// account bound
prontera,149,191,5	script	Daily Reward	911,{
	.@cd = 60*60*24; // 24 hrs
	.@time = gettimetick(2);
	if ( #DAILYRENTREWARD+.@cd > .@time ) {
		mes "Come back again after "+Time2Str(#DAILYRENTREWARD+.@cd)+" for your reward.";
		close;
	}
	mes "Here is your daily reward!";
	close2;
	rentitem 1201, 7200; // <id>, <time in seconds>
	#DAILYRENTREWARD = .@time;
	end;
}

Untested but should work

 

perfectly as i wanted to thank you so much

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...