Is there a way to choose a number in sequence, for example saying random(1,5) it can be 1,2,3,4,5 but if I want to say i want either 1 or 3 ONLY, how should I achieve that?
Yeah that works, I just thought there is an easy way just like Random(1,3) I thought there is some thing like the word "Random" for example in SQL we can say "IN (1,3)"
Comments
Use two integer attributes: randNum and oneOrThree
Change Attribute: randNum To: random(0,1)
When self.randNum = 1
---- Change Attribute: oneOrThree To: 1
--Otherwise
---- Change Attribute: oneOrThree To: 3