Login Page - Create Account

Support Board


Date/Time: Thu, 03 Jul 2025 02:51:18 +0000



Post From: Signal calculation with in the bar

[2021-02-17 15:40:04]
ForgivingComputers.com - Posts: 1076
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.