Support Board
Date/Time: Wed, 27 Aug 2025 10:05:03 +0000
Post From: Study won't exit?
[2025-04-23 19:59:26] |
ForgivingComputers.com - Posts: 1106 |
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. |