Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I add more numbers in math.random?

Asked by 8 years ago

My question was probably not clear so I'll give a brief explanation.

I have a variable called "ctc" this is a random number between 1 and 250

when ctc is 3 it changes a value to "angel", how would I do this for multiple numbers?

like if I wanted 3 or 4 or 5 or 6 to also be "angel"?

01local ctc= math.random(1,250)
02 
03local try = ReplicatedStorage.PlayerStats[id].Tries.Value
04if try > 0 then
05    if ctc == 3 then
06        event:FireServer()
07 
08 
09        script.Value.Value ="Angel"
10 
11        --script.Parent.Continue.Visible = true
12    elseif
13 
14        ctc == 2 then
15        event:FireServer()
View all 35 lines...

3 answers

Log in to vote
2
Answered by 8 years ago

You want to use the or gate, which returns true if one or more of the given parameters is true. For example, if you want to return 'angel' if ctc equals 3,4, or 5, then you would structure it like this:

1local ctc = math.random(1,250)
2 
3if ctc == 3 or ctc == 4 or ctc == 5 then
4    return "angel"
5end

If you have a large group of numbers that ctc could equal, such as anything between 1 and 100, it is easier to structure it like this:

1local ctc = math.random(1,250)
2 
3if ctc >= 1 or ctc <= 100 then
4    return "angel"
5end
0
For future reference, logical disjunctions and conjunctions of boolean expressions, in software programming, are called 'operators', not 'gates'. This is a trivial distinction, but often newbies read these answers and we don't want to introduce foreign terminology without reason. 'Gate' is usually reserved for circuits and hardware. duckwit 1404 — 8y
0
I've run into an issue, I have multiple values like 1,125 is angel and then 127,250 is fallen angel and 126 is demon. but I've gotten multiple values above 125 and it still says angel, what might the issue be? Fraxinus_Sanctus 38 — 8y
Ad
Log in to vote
-1
Answered by
gdunn2 54
8 years ago

or like this

1if ctc >= 3 and <=5
0
This would syntax error. Instead, do if ctc >= 3 and ctc <= 5 then Kampfkarren 215 — 8y
0
oops thats what i meant :P sorry gdunn2 54 — 8y
Log in to vote
-2
Answered by
farrizbb 465 Moderation Voter
8 years ago
Edited 8 years ago

Use or i.e

1if ctc == 3 or ctc == 4 or ctc == 5 then

Did it wrong before

0
This is not how "or" works. Programical 653 — 8y
0
Ya sure i'm pretty sure it is. farrizbb 465 — 8y
0
if the first statement is false(3) then it goes to the second(4) if thats false it goes to the next how is that not how or works :/ farrizbb 465 — 8y
0
This wouldn't work Kampfkarren 215 — 8y
View all comments (2 more)
0
Because you have to reference ctc each time. Azarth 3141 — 8y
0
Had it explained to me sos. farrizbb 465 — 8y

Answer this question