Bokki Tease Club Σ: Second Semester Feedback Thread

All about the past, current and future webteases and the art of webteasing in general.
---
denial1234
Explorer
Explorer
Posts: 5
Joined: Fri Jul 11, 2014 3:53 pm

Re: Bokki Tease Club Σ: Second Semester Feedback Thread

Post 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
		  ];
Attachments
Bokki Tease Club S Second Semester by Shattered.zip
(199.88 KiB) Downloaded 23 times
Post Reply