Comment by tessierashpool9
1 year ago
easy:
while(true) {
if(
(date.today() - date(this.system.uptime) >= 51)
&& !this.sys.isFlying
) {
this.sys.resetNow();
}
time.sleep(1000);
}
1 year ago
easy:
while(true) {
if(
(date.today() - date(this.system.uptime) >= 51)
&& !this.sys.isFlying
) {
this.sys.resetNow();
}
time.sleep(1000);
}
well now your system doesn't do anything because its stuck in a forever loop checking the time. it's most likely programmed in C so you can remove the OOP as well.