- Aug 6, 2016
- 588
- 516
You need to open the HTML file in a text editor and do this -I go to the College, and i get
Any advices?
There's an error in the college activity. On line 4246 of the compiled html file, the conditional is missing an &&.
If anyone playing wants to fix it, change this line.
Original line: "<<if $currentTime gte 0 $currentTime lte 2>>"
Fixed line: "<<if $currentTime gte 0 && $currentTime lte 2>>"
The proper decompiled line would be <<if $currentTime >= 0 && $currentTime <= 2>>.