I'm wondering how (or if) I can make a percent chance of a selection of events happening. Like, the way you can say "choose ("thing1", "thing2", "thing3")" in the expession, ect. But set a likelihood of it happening.
Develop games in your browser. Powerful, performant & highly capable.
(On Event) - Set Variable to round(random(100))
(Sub-Events) -
If Variable < %chance - Do Thing1
Else if Variable < %chance - Do Thing2
Else if Variable < %chance - Do Thing3
ect...
oosyrag THANK YOU! This is simple, and I'm going to try it out tomorrow. Hopefully it solves my issue!