set x to (75 - 1.5 (50 - 25))
Is it calculated as:
a) (75 - 1.5(25)) => (75 - 37.5) => 37.5 (btw this is the result i want so please tell me how to write this properly)
B) (75 - 1.5 * 50 - 25) => 73.5 * 50 - 25 => 3675 - 25 => 3650
In other words, can you control the sequence by the ()? or is
1) 75 - 1.5*50-25
2) (75 - 1.5)(50-25)
3) 75 - (1.5 * 50) - 25
the same?
I ask because of the way AND and OR is handled, in that OR sequences are lumped together such that (A & B) OR (C & D) is actually A and (B OR C) & D regardless of the ().
EDIT:
and is ((GetRandomPercent +1) / 50) + ((Player.GetAV Survival) / 50) going to do:
1) (GetRandomPercent + 1) first; then
2) divide the result by 50; then
3) add the result to (Player.GetAV Survival)/50
