Page 5 of 5

Re: Bokki Tease Club Σ: Second Semester Feedback Thread

Posted: Fri May 02, 2025 8:31 am
by denial1234
forbiddendesire wrote: Wed Feb 15, 2023 7:47 pm Hello! Looking forward to this tease, I'm a big fan of your work. Just wanted to let you know though, I downloaded the tease using the MiloDownloader but it seems it doesn't work with GuideMe. I just get a blank screen when I load the tease.
Hi, I had the same issue and fixed it. There were some syntax errors in the javascript code.
To use it with GuideMe, do the following:

1. Download the tease as usual with the downloader
2. Download the attached zip file of this post
3. Unzip the xml file and overwrite the original xml file from the tease with it

Should work now.

@Shattered: In case you want to update the tease:

There were many instances of such a line:

Code: Select all

scriptVars.put("rankingscore=["userMilascore","userKatoscore","userBrookescore"]",rankingscore=["userMilascore","userKatoscore","userBrookescore"]);
By only using double-quotes, GuideMe cannot parse this javascript. I changed these lines to:

Code: Select all

scriptVars.put('rankingscore=["userMilascore","userKatoscore","userBrookescore"]',rankingscore=["userMilascore","userKatoscore","userBrookescore"]);
I also changed this code, to define the variables for the scores:

Code: Select all

		  var userAlisascore = scriptVars.get("userAlisascore");
		  var userMilascore = scriptVars.get("userMilascore");
		  var userKatoscore = scriptVars.get("userKatoscore");
		  var userBrookescore = scriptVars.get("userBrookescore");
		  
          var allUserscoresarray = [
			userAlisascore, 
			userMilascore, 
			userKatoscore, 
			userBrookescore
		  ];