New patch fixes the karkat double follow talk bug: http://cg.scs.carleton.ca/~abeinges/apatchy/
Different page to circumvent caching based bugs. Also renamed the walkable area images to REALLY get caching.
GUYS I POSTED A NEW THREAD THAT I HAVE BETTER CONTROL OVER. PLEASE GO THERE!
http://mspaforums.com/showthread.php...and-Support%21
Last edited by Mme Sparklecakes XVII; 09-02-2012 at 10:10 AM.
Funnily enough, when I first played the game, minutes after it was released, it worked absolutely fine (I use Google Chrome), with the one exception of not being able to get into the second room - but refreshing a few times fixed that, and was no doubt caused by the high traffic that day. When I tried to play after one of the patches was released (both? I'm not sure), however, Meenah was stuck in the first frame.
Clearing my cache seems to have fixed the issue, so it's not a problem, but I found it amusing that I only had problems with that bug after the patch.
Your chumhandle is littleStalker and you rather 3njoy the us3 of th3 numb3r thr33~~~
Protip:
I use an Ipad to read, so when I get to a flash, I have to open youtube.
Works every time.
Wait, how do you open a flash in youtube. Do you mean that you're opening that actual flash or are you just searching for a version of the flash that someone else has uploaded to youtube?
I thought the game might work on my ipad since it's html5, but it just says 91% loaded and hangs out there. I figured the comic's not really made to be read on the ipad though, so I didn't worry about it.
Hello.
Didn't get to read entire thread, but pretty sure it wasn't mentioned nor fixed, so hopefully following is in correct place.
As is noted currently IE9 won't play intro. Reason is thatis mangling name of element by appending params. (Creates "movieplayMovie" but correct is only movie)Code:window.document.getElementById("movie" + params[0]);
There is another problem. For some reason Flash doesn't define CurrentFrame nor TotalFrame() in ActiveX object, which causes futher failures in script notably failure to end intro. (Also there was missing object like "this.movie.object.TotalFrames" )
I spotted some futher areas for improvement, but those don't appear to be critical.
Complete patch:
Note1: Not tested with other browsers, so it might need some additional code. (like ActiveX Flash vs plugin Flash)Code:Index: Sburb.min.js =================================================================== --- Sburb.min.js (revision 421) +++ Sburb.min.js (working copy) @@ -2584,10 +2584,10 @@ }; } else if (this.type == "movie") { - this.movie = window.document.getElementById("movie" + params[1]); + this.movie = window.document.getElementById("movie"); this.threshold = parseInt(params[2]); this.checkCompletion = function () { - if (this.movie && (!this.movie.TotalFrames || (this.movie.TotalFrames() > 0 && this.movie.TotalFrames() - 1 - this.movie.CurrentFrame() <= this.threshold))) { + if (this.movie && (!this.movie.TotalFrames || (this.movie.object.TotalFrames > 0 && this.movie.object.TotalFrames - 1 - this.movie.object.FrameNum <= this.threshold))) { Sburb.commands.removeMovie(params[1]); return true; } @@ -2816,8 +2816,8 @@ Sburb.playMovie(Sburb.assets[params[0]]); if (params.length > 0) { var interval = setInterval(function () { - var movie = window.document.getElementById("movie" + params[0]); - if (movie && (!movie.CurrentFrame || movie.CurrentFrame() >= 4)) { + var movie = window.document.getElementById("movie"); + if (movie && (!movie.object.FrameNum || movie.object.FrameNum >= 4)) { clearInterval(interval); commands.playSong(info.substring(info.indexOf(",") + 1, info.length)); }
Note: Didn't get to play game yet...
Last edited by Klimax; 09-03-2012 at 06:14 AM.
I don't think this has be mentioned yet, but sorry if I missed it.
After being Kankri and then going to talk to Meenah, I went over, as Meenah, to talk to Karkat. For some reason I then decided that I wanted to be Latula, who was standing right there. When I became Latula, both Kankri and Karkat snapped back to their original positions, which wouldn't have been a problem if I hadn't been standing in Kankri's spot. Kankri and Meenah were then locked together, and I could be any of the three of them, but neither Kankri nor Meenah could move.
I just cleared my cache and tried it with the latest version, and this still happens.
Try the other thread, linked a few posts up.