can you do division and multplycation via expression?

can you do division and multplycation via expression? please answer

nvm

you can

Use “/” to divide and “*” to multiply.

yeah figured that out used it to make criticle hits

But wait … there is more :wink:

https://flowlab.io/behavior_handbook/#logic-math-expression

And not mentioned there, I explained it somewhere else (search Forum for Ternary), is that you can do a IF … THEN … ELSE comparison.

The syntax is:
(condition)?True value:False value

For example: (A>0)?10:-10
reads as: IF A is greater then 0 THEN return 10 ELSE return -10
Very useful in many scenarios