MSPA Forums
Page 13 of 13 FirstFirst ... 310111213
Results 301 to 314 of 314

Thread: Problems With The Latest Update

  1. #301
    Dutchess of Rainbowsworth Art Team
    Music Team
    Mme Sparklecakes XVII's Avatar
    Join Date
    Apr 2009
    Location
    Canadia
    Posts
    13,380

    Re: Problems With The Latest Update

    Quote Originally Posted by kwinse View Post
    That's normal. There's a way over to that ledge. In fact...

    (Worthless bug report while I'm here, the 'is that sobbing?' box pops up even if Andrew's following you)
    Dude is really emotional okay???

  2. #302
    IT'S TIME TO GET RIIIIIIIIPPED temporalPeregrine's Avatar
    Join Date
    Jul 2010
    Location
    Spain
    Posts
    2,699

    Re: Problems With The Latest Update

    I got a blackscreen this morning while tabbing back to the game, and I'm pretty sure talking to karkat while he's following you allows you to glitch the fuck out of him and even crash the tab, at least in one of the latest secret versions yesterday.

  3. #303
    Dutchess of Rainbowsworth Art Team
    Music Team
    Mme Sparklecakes XVII's Avatar
    Join Date
    Apr 2009
    Location
    Canadia
    Posts
    13,380

    Re: Problems With The Latest Update

    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.

  4. #304

    Join Date
    Dec 2010
    Location
    Land of Fugue and Logic
    Posts
    544

    Re: Problems With The Latest Update

    Quote Originally Posted by AchillesAndTortoise View Post
    Despite this, I still can't get Meenah to move in Chrome. I tried clearing my cache, it didn't help.
    Fuck, don't mind me, turns out I suck at computers. I cleared my cache properly, it works perfectly now.

  5. #305
    It could be bunnies PetPeeve's Avatar
    Join Date
    May 2010
    Location
    Land of Hog Butchers and Big Shoulders
    Pronouns
    he/him/his
    Posts
    1,304

    Re: Problems With The Latest Update

    Quote Originally Posted by CKyle View Post
    Using Chrome 22.0.1229.26 beta on OS X 10.8.1. Last night and the night before the update worked fine, except all music and sound effects would disappear after a while and not come back, even after moving to new areas.

    This evening I find I cannot move Meenah outside her front door. She makes the walking animation and faces whatever direction I press, but she does not actually move around the map. I have not left it running long enough to see if the sound still cuts out.
    Same report from me, on the latest mac chromium. Just to have a unique report I tried it in Safari too, and loading fails at 91%. It was working fine in Safari, too.
    I am sometimes this guy:

  6. #306
    Dutchess of Rainbowsworth Art Team
    Music Team
    Mme Sparklecakes XVII's Avatar
    Join Date
    Apr 2009
    Location
    Canadia
    Posts
    13,380

    Re: Problems With The Latest Update

    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.

  7. #307

    Re: Problems with the latest update

    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~~~

  8. #308

    Re: Problems With The Latest Update

    Protip:
    I use an Ipad to read, so when I get to a flash, I have to open youtube.

    Works every time.

  9. #309

    Re: Problems With The Latest Update

    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.

  10. #310
    Super High-School Level Poster Sporkaganza's Avatar
    Join Date
    Jan 2011
    Pronouns
    he/him/his
    Posts
    2,763

    Re: Problems With The Latest Update

    Okay this thread definitely needs to be locked now.
    Quote Originally Posted by Iguana Baritone View Post
    Homestuck is just Dragon Ball written by Douglas Adams.

  11. #311

    Post Re: Problems With The Latest Update

    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 that
    Code:
    window.document.getElementById("movie" + params[0]);
    is mangling name of element by appending params. (Creates "movieplayMovie" but correct is only movie)
    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:
    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));
                     }
    Note1: Not tested with other browsers, so it might need some additional code. (like ActiveX Flash vs plugin Flash)
    Note: Didn't get to play game yet...
    Last edited by Klimax; 09-03-2012 at 06:14 AM.

  12. #312

    Re: Problems With The Latest Update

    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.

  13. #313
    Human of Alfandra simon.clarkstone's Avatar
    Join Date
    Feb 2010
    Location
    Oxford, UK
    Pronouns
    he/him/his
    Posts
    4,589

    Re: Problems With The Latest Update

    Try the other thread, linked a few posts up.
    [U4G] OREG (A space adventure)
    Starring Opabiniataurs, because humanoids are boring.

  14. #314
    Party Captain AdminGorg Drillgorg's Avatar
    Join Date
    Apr 2009
    Location
    UM to the BC!
    Pronouns
    he/him/his
    Posts
    15,436

    Re: Problems With The Latest Update

    Guys, I realize you were linked here by Hussie but please read the post where the Ganktron says to go to a different thread.
    -

Page 13 of 13 FirstFirst ... 310111213

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •