Subpage under development, new version coming soon!
Asunto: Conditional order bug
- 1
In my game tonight I had a conditional order to change tactic if “losing by at most 1 goal”
Well I was winning 3-2 and the tactic changed anyway……has anyone else had this happen?
Well I was winning 3-2 and the tactic changed anyway……has anyone else had this happen?
so it is
that condition works for every result that ist better than a loss by 2 goals, including a win
that condition works for every result that ist better than a loss by 2 goals, including a win
it is neither bugged nor robbed. ;-)
Just not expressed very precisely with words.
If you think in mathematical terms, it os not easier to understand but at least it becomes logic, .i.e.
x = your goals
y = opponents goals
losing by at most 1 goal:
substitution takes place, if (y-x) <=1
winning by at most 1 goal
..., if (x-y)<=1
losing by at least 1 goal
... if (y-x)>=1
winning by at least 1 goal
... if (x-y)>=1
Just not expressed very precisely with words.
If you think in mathematical terms, it os not easier to understand but at least it becomes logic, .i.e.
x = your goals
y = opponents goals
losing by at most 1 goal:
substitution takes place, if (y-x) <=1
winning by at most 1 goal
..., if (x-y)<=1
losing by at least 1 goal
... if (y-x)>=1
winning by at least 1 goal
... if (x-y)>=1
It is late, I hope this makes sense. Can somebody please check? :-)
At most is kind a useless.
Don't see how to use it...
At least is what you need.
Don't see how to use it...
At least is what you need.
Sounds like it should be taken out of it doesn’t work :)
Thanks for the answers guys.
Thanks for the answers guys.
well, I used it in order to substitute a strong player for a weaker trainee in close games. But if I was too far behind (loosing e.g. with 2 goals), I prefered to not substitute and let the trainee play for 90 min training.
(editado)
(editado)
At most should have An extra condition within its core
Losing... Your team goals < other team goals
Winning... Your team goals > other team goals
This should really be resolved actually. It cannot be that hard to implement is it? I Mean...they can let a computer generate stuff from scratch using AI... These 2 conditions should be a no brainer for using the "at most" condition.
Losing... Your team goals < other team goals
Winning... Your team goals > other team goals
This should really be resolved actually. It cannot be that hard to implement is it? I Mean...they can let a computer generate stuff from scratch using AI... These 2 conditions should be a no brainer for using the "at most" condition.
- 1