Login Page - Create Account

Support Board


Date/Time: Sat, 19 Jul 2025 00:11:25 +0000



Post From: Signal calculation with in the bar

[2021-02-17 15:40:04]
ForgivingComputers.com - Posts: 1085
This if block at line 268 causes the calculations that follow to wait until the bar has closed:

if(sc.GetBarHasClosedStatus() == BHCS_BAR_HAS_CLOSED)

You can try changing it to
if(true)
and see what happens.