Login Page - Create Account

Support Board


Date/Time: Fri, 26 Dec 2025 21:27:15 +0000



Post From: Study won't exit?

[2025-04-23 19:59:26]
ForgivingComputers.com - Posts: 1180
You have this:

if(sc.Input[0].GetYesNo() == false || sc.LastCallToFunction)

but you don't set sc.Input[0], so it is 0 by default.

You need to put this:

sc.Input[0].SetYesNo(1);

in the sc.SetDefaults block.