1. Win counter was broken.
Changing line 124 in Database.php seems to fix it:
Code: Select all
if ($player->rank == 1 && sizeof($rankings) > 1 && !$firstFound) {
Change Widgets_Clock\Gui\Script\whileLoopScript.txtm:
Code: Select all
Seconds = TextLib::SubString(CurrentLocalDateText,17,2);
if (Seconds != OldSeconds) {
declare Text delim = ":";
OldSeconds = Seconds;
Counter = (Counter+1)%2;
if (Counter == 1) {
delim = " ";
}
Hours = TextLib::SubString(CurrentLocalDateText,10,3);
Minutes = TextLib::SubString(CurrentLocalDateText,14,2);
LocalTime.Value = "🕑 "^Hours^delim^Minutes;
}