Login Page - Create Account

Support Board


Date/Time: Wed, 21 May 2025 04:29:21 +0000



Post From: Problem with Alert being triggered multiple times

[2023-12-12 16:23:41]
User431178 - Posts: 683
Try using SetAlert instead - ACSIL Interface Members - Functions: sc.SetAlert()

or maybe replace


if (BarHasClosed)
{
sc.PlaySound(30, "test alert message");
}

with


if (BarHasClosed && !sc.IsFullRecalculation)
{
sc.PlaySound(30, "test alert message");
}