I've got one variable which gets a random number assigned, and another value which is fixed at another number based on a player action.
just using COMPARE TWO VALUES and setting the variables in the slots doesn't work for me.
Please post a screenshot of events.
If you are using random() expression, it returns a float number, so it will never be equal to another number. Use int(random(100)) if you need an integer number in the range from 0 to 99
Develop games in your browser. Powerful, performant & highly capable.
Please post a screenshot of events. If you are using random() expression, it returns a float number, so it will never be equal to another number. Use int(random(100)) if you need an integer number in the range from 0 to 99
Brilliant. Thanks!