Jump to content
  • 0

Request> Lucky machine Script


legtoleg

Question


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  21
  • Reputation:   0
  • Joined:  02/11/19
  • Last Seen:  

Hello !

I would like to have a npc where we give items and in return we have a 50% chance of having defined items or having nothing at all. For example, you have to give 10 apples to have a 50% chance of having certain items and 50% of having nothing

Can you help me ?

Thanks ? 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  927
  • Reputation:   168
  • Joined:  04/05/13
  • Last Seen:  

.@req_amount = 10;

.@req_item_id = 501;

if(countitem(.@req_item_id) >= .@req_amount)

{

delitem .@req_item_id,.@req_amount;

if(rand(100) >= 50){

getitem 1599,1;

}

}

Try this.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  477
  • Reputation:   269
  • Joined:  06/13/17
  • Last Seen:  

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  21
  • Reputation:   0
  • Joined:  02/11/19
  • Last Seen:  

Thanks you so much ! 
it's perfect 

n fact, i would like them not to choose the item. He click on the pnj, this one checks if has the request items (10 red potion) if he has everything, the npv gives him an item (put in the script list) or nothing 50% chance.

Like on chiken ro for the connoisseur (cla machine) 

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