Jump to content
  • 0

Daily Roll Machine


Belkan

Question


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  33
  • Reputation:   0
  • Joined:  03/09/12
  • Last Seen:  

I've edited this script: http://rathena.org/b...y-roll-machine/ deleting the ticket, i wanna insert a time expiration, how can i do this?

prontera,150,170,5	script	Roll Machine	563,{
set @npc$,"[ Roll Machine ]";


	// Hours Delay for each Roll
	set .Hours,24;

	// Items Available to Gain through Roll Machine
	setarray .Items[0],7621;


mes @npc$;
mes "Roll machine restarts everyday 12:00AM";
next;

if ( #Roll_Claimed > gettimetick(2) ){
	mes "You already rolled for the day";
	mes "see you tomorrow";
}else{
	mes @npc$;
	mes "Roll the machine?";
	next;
	if( select("Yes, let's roll it!:I change my mind") == 2 ) close;
		mes @npc$;
		mes "Random Item Flashing....";
		mes "Rolling........";
		next;
		mes @npc$;
		set .@i,rand( getarraysize( .Items ) );
		mes "A ^0000FF"+getitemname( .Items[.@i] )+"^000000 appear on the screen.";
		mes "Thanks for using Roll Machine";
		set #Roll_Claimed,gettimetick(2) + ( .Hours * 3600 );
		getitem .Items[.@i],1;
	}
close;
}
}

Edited by Emistry
Please use [CODEBOX] or Attachment for long contents.
Link to comment
Share on other sites

4 answers to this question

Recommended Posts


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

time expiration on what ?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  33
  • Reputation:   0
  • Joined:  03/09/12
  • Last Seen:  

sorry, time expiration for the item obtained from the npc

Link to comment
Share on other sites


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

change

getitem .Items[.@i],1;

into

rentitem .Items[.@i],<time>;

*rentitem <item id>,<time>;
*rentitem "<item name>",<time>;

Creates a rental item in the attached character's inventory. The item will expire
in <time> seconds and be automatically deleted. When receiving a rental item,
the character will receive a message in their chat window. The character will
also receive warning messages in their chat window before the item disappears.
This command can not be used to rent stackable items. Rental items cannot be
dropped, traded, sold to NPCs, or placed in guild storage. (i.e. trade mask 75)
Note: 'delitem' in an NPC script can still remove rental items.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  33
  • Reputation:   0
  • Joined:  03/09/12
  • Last Seen:  

thx emistry

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