Login Page - Create Account

Support Board


Date/Time: Sat, 19 Apr 2025 10:46:58 +0000



Post From: C2447 error when compiling Advanced Custom Studies

[2025-03-24 09:30:18]
User431178 - Posts: 649
Post the whole complier error message next time, it may point directly to the error.

This is wrong for a start:

sc.Input[1].SetTime(HOURS(9) + MINUTES(30));

See this example in the docs:
ACSIL Interface Members - sc.Input Array: sc.Input[].SetTime()

Also you can construct an SCDateTime object and call the GetTime() member function:

SCDateTime(int Hour, int Minute, int Second, int Millisecond)


SCDateTime(9, 30, 0, 0).GetTime()