Login Page - Create Account

Support Board


Date/Time: Wed, 30 Apr 2025 11:39:23 +0000



Post From: Study won't exit?

[2025-04-23 19:59:26]
ForgivingComputers.com - Posts: 1052
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.