blueprint - newbie, simple equation producing random results for some reason..please help

this is my blueprint. im a newbie. the player rating is set to 80. the injury is set to 10. is away is set to true. so the simple equation is essentially 80 - 10-5 = 65. that works. random number between 0-100. if the random number is equal or les than 65 = success. if higher = fail.

For some reason, all my results are completely random when i run this. 90 will be a success, 10 will be a fail. does not make sense to me.

1 Like

Every time you connect a pure node (no execution pin) to an execution pin, it becomes evaluated (recalculated):

In short: here we generate 3 different random values.


  • promote (right click the pin) the result to a local variable:

  • use it many times:

Thank you! fixed the issue!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.