Jump to content
  • 0

vote to lotti ticket


nesotomayor

Question


  • Group:  Members
  • Topic Count:  59
  • Topics Per Day:  0.02
  • Content Count:  122
  • Reputation:   0
  • Joined:  06/08/14
  • Last Seen:  

hi,

requesting for a script npc that will convert your 10 voting points to 1 lotti ticket.

please advise,

thanks

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1268
  • Reputation:   382
  • Joined:  02/03/12
  • Last Seen:  

Replace <item_id> with the ticket id.

prontera,100,100,5	script	Lotto Ticket	100,{
	mes "[Lotto Ticket Dealer]";
	mes "How many voting points would you like to exchange?";
	mes "[10 Voting points = 1 Lotto Ticket]";
	next;
	switch( input( .@pas1, 10, #KAFRAPOINTS ) ) {
		case -1:
			mes "[Lotto Ticket Dealer]";
			mes "You can't go that low; the minimum value is 10.";
			close;
			
		case 1:
			mes "[Lotto Ticket Dealer]";
			mes "You don't have that many voting points!";
			close;
	}
	#KAFRAPOINTS = #KAFRAPOINTS - (.@pas1-(.@pas1%10));
	mes " [Lotto Ticket Dealer]";
	mes "Thank you please come again!";
	getitem <item_id>, .@pas1/10;
	close;
}
Link to comment
Share on other sites


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

can someone conver  this to eathena

#KAFRAPOINTS = #KAFRAPOINTS - (.@pas1-(.@pas1%10));

change to

set #KAFRAPOINTS,( #KAFRAPOINTS - ( .@pas1 - ( .@pas1 % 10 ) ) );

for details read this

http://rathena.org/board/topic/78263-scripting-faqtipstricks/?p=267219

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