Jump to content
  • 0

Can i request some event npc?


laklaker

Question


  • Group:  Members
  • Topic Count:  38
  • Topics Per Day:  0.01
  • Content Count:  109
  • Reputation:   0
  • Joined:  12/27/11
  • Last Seen:  

Can i request for something event npc? Like a gambling npc. When you trade 1000 coins it will be 3000 coins ? But only 10% chance? THANKS ALOT!!

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:  10013
  • Reputation:   2346
  • Joined:  10/28/11
  • Last Seen:  

try this

prontera,155,181,5 script Sample 757,{
set .itemID,7539;
set .Amount,1000;
set .WinningRate,10;
mes "Do you want to gamble with yours "+getitemname( .itemID )+" ?";
mes "You need "+.Amound+" of it...and only "+.WinningRate+" % to win.";
next;
if( select("Yes:No") == 2 ) close;
if( countitem( .itemID ) < .Amount ){
 mes "You didnt have enough of "+.Amount+" each.";
}else{
 delitem .itemID,.Amount;
 if( rand(100) < 10 ){
  mes "Congratz...you win..";
  getitem .itemID,3 * .Amount;
 }else{
  mes "Failed";
 }
}
close;
}

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  38
  • Topics Per Day:  0.01
  • Content Count:  109
  • Reputation:   0
  • Joined:  12/27/11
  • Last Seen:  

THANKS ALOT !!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  25
  • Reputation:   0
  • Joined:  08/22/12
  • Last Seen:  

Emistry, try and expand on your script.

For example, you should make it so it will randomly give out of the choice

For example:

5 x Yggdrasil berry (20% chance)

1x Gym Membership box (20% chance)

20 x Yggdrasil berry (15% chance)

Then the grand prize will be 10x mithril coin (5% or 1% chance)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  56
  • Reputation:   4
  • Joined:  06/20/13
  • Last Seen:  

hi do u have if poring coin change to zeny?

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