Jump to content

Question

Posted (edited)

I want to make an olbbluebox with callfunc, inside the script I want to separate the IDs to be delivered and their amount per percentage, as an example

In a range of 10%
607.15;
608.25;
In a range of 30%
607.10;
608.20;

 

somebody can help me?

Edited by Zutcer

2 answers to this question

Recommended Posts

  • 2
Posted
1 hour ago, Zutcer said:

I want to make an olbbluebox with callfunc, inside the script I want to separate the IDs to be delivered and their amount per percentage, as an example

In a range of 10%
607.15;
608.25;
In a range of 30%
607.10;
608.20;

 

somebody can help me?

Please try this.

function	script	F_RandomRate	{

	.@r = rand(100);
	if( .@r <= 10 )			// 10% Rate
		setarray .@i,607,15,608,25;
	else if( .@r <= 40 ) {	// 40% Rate
		setarray .@i,607,10,608,20;
	} else {
		dispbottom( "You recieved nothing.");
		end;
	}
	getitem .@i[0],.@i[1];
	end;
}

 

  • Upvote 1

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...