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.
Question
Belkan
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?
Edited by EmistryPlease use [CODEBOX] or Attachment for long contents.
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.