Twitch Plays Pokemon

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Snowcrafta
    V's beta-male entourage
    • May 2005
    • 2873

    #181
    Re: Twitch Plays Pokemon

    Bird Jesus

    Comment

    • Pseudo Enigma
      ごめんなさい (/ω\)
      • Aug 2012
      • 2290

      #182
      Re: Twitch Plays Pokemon

      Originally posted by Snowcrafta
      *sigh*
      The Safari Zone has been modded to remove the step timer.

      Also

      HAIL BIRD JESUS
      what the fuck.

      If we look at it this way,

      we had our first gym battle - a veritable milestone for any Pokemon Trainer
      we had nugget bridge/second gym battle - the challenge of becoming a group of people that can make choices
      we had the Cut HM/Tree block - an experiment to see if we could somehow manage to make actual decisions with menus without messing up
      we had Lt.Surge's gym - 2 switches that given enough time, we got through
      we had the Rt9 Ledge - 9 tiles that either you go right, to victory, or down and back again
      we WOULD'VE had the Celadon Game Department - a maze with tiles that forces the group to work together, which we did once but dug out before democracy was instated - but nope democracy

      and now we WOULD'VE had the Safari Zone, the ultimate test for our hive mind, pitting us against time and money to get through. But nope, now we get infinite time.
      I almost don't want to watch anymore. It's not possible to fail at all now, and that was the only interesting part about it.

      Comment

      • Crazyjayde
        FFR Veteran
        • May 2007
        • 1169

        #183
        Re: Twitch Plays Pokemon

        The level of care has hit new heights.

        Comment

        • Wineandbread
          Custom User Title
          • Oct 2007
          • 2105

          #184
          Re: Twitch Plays Pokemon

          where's TwitchPlaysFFR guise
          gotta pass excite bike
          Originally posted by Gundam-Dude
          my semen is flying through the air as we speak
          We climb up a lot of ladders, and fall down a lot of chutes.

          Taking "all" oddjobs! PM me requests. Requests filled: 2 last active Mar. 6th, 2017


          Keep it real pls. Will deny requests I cannot manage.


          Comment

          • Nyokou
            ( ̄ー ̄)
            • Apr 2005
            • 4246

            #185
            Re: Twitch Plays Pokemon

            I kept seeing headlines about this... but I only just checked it out now.

            It's ridiculous.
            Twitter | Instagram | Snapchat: Nyokou

            Comment

            • XelNya
              [Kaho]
              FFR Simfile Author
              • Sep 2012
              • 3368

              #186
              Re: Twitch Plays Pokemon

              Originally posted by Crazyjayde
              Why "sigh"?
              Like you'd want to sit through the pain anyway.
              Actually I'd get a good amount of laughter out of it.

              What should be done is that should it take a day to get through these sorts of sections, THEN a step in is done. It gives the users a time limit, but one that is much more manageable.

              That being said tbh I - highly - doubt the safari zone would have ever been cleared.

              Comment

              • Pseudo Enigma
                ごめんなさい (/ω\)
                • Aug 2012
                • 2290

                #187
                Re: Twitch Plays Pokemon

                okay if anything I thought there would be an issue with money. The thing they should've done was removed the price. Now that they have democracy they have very little reason at all to use infinite steps.

                Comment

                • YoshL
                  Celestial Harbor
                  FFR Simfile Author
                  FFR Music Producer
                  • Aug 2008
                  • 6156

                  #188
                  Re: Twitch Plays Pokemon




                  omg fuck


                  Originally posted by Charu
                  Only yours, for an easy price of $19.99! You too can experience the wonders of full motion rump sticking.

                  Comment

                  • top
                    Banned
                    • Apr 2012
                    • 1907

                    #189
                    Re: Twitch Plays Pokemon

                    Comment

                    • Snowcrafta
                      V's beta-male entourage
                      • May 2005
                      • 2873

                      #190
                      Re: Twitch Plays Pokemon

                      Farewell CCC, We barely knew you

                      Comment

                      • KrazyKitsune
                        FFR Player
                        • Dec 2010
                        • 602

                        #191
                        Re: Twitch Plays Pokemon

                        They successfully taught Drowzee Psychic lmao

                        Comment

                        • choof
                          Banned
                          FFR Simfile Author
                          • Nov 2013
                          • 8563

                          #192
                          Re: Twitch Plays Pokemon

                          eta on accidentally drowzee release

                          Comment

                          • noname219
                            FFR Wiki Admin
                            • May 2007
                            • 1694

                            #193
                            Re: Twitch Plays Pokemon

                            Here's a script (that I modded from an existing one) that will remove all the stuff (b, a, start, select, right, left, etc.) from the chat :

                            Code:
                            // ==UserScript==
                            // @name TwitchChatCleanser
                            // @version 0.0.2
                            // @description Cleans up the Twitch.TV chat by not showing any messages containing 2 or more non-ASCII characters (configurable), messages matching the configurable regular expressions or messages consisting only of (or excessive) emoticons.
                            // @author morkai
                            // @include http://www.twitch.tv/*
                            // @include http://*.twitch.tv/*
                            // @exclude http://www.twitch.tv/*/popout
                            // @exclude http://www.twitch.tv/
                            // @exclude http://www.twitch.tv/directory/*
                            // ==/UserScript==
                            
                            function twitchChatCleanser()
                            {
                              if (self !== top)
                              {
                                return;
                              }
                            
                              // Do not display a message if it contains the specified (or more) number
                              // of non-ASCII characters.
                              var MAX_NON_ASCII_CHARS = 2;
                              
                              // Do not display a message if it contains the specified (or more) number
                              // of emoticons.
                              var MAX_EMOTICONS = 4;
                            
                              // Messages matching one of the following regular expressions will not be
                              // shown in the chat.
                              var FILTERS = [
                                /b/i,
                                /a/i,
                                /start/i,
                                /down/i,
                                /up/i,
                                /right/i,
                                /left/i,
                                /democracy/i,
                                /anarchy/i,
                                /enter/i,
                                /select/i,
                              ];
                            
                              var STRIP_TAGS_RE = /<(?:.|\n)*?>/gm;
                              var EMOTICON_RE = /"emo\-[0-9]+ emoticon"/g;
                              var EMPTY_MESSAGE_PATTERN = 'chat_line"></';
                            
                              function isDirtyText(text)
                              {
                                for (var i = 0, l = FILTERS.length; i < l; ++i)
                                {
                                  if (FILTERS[i].test(text))
                                  {
                                    return true;
                                  }
                                }
                            
                                var dirtyChars = 0;
                                
                                for (var i = 0, l = text.length; i < l; ++i)
                                {
                                  if (text.charCodeAt(i) > 127)
                                  {
                                    ++dirtyChars;
                                    
                                    if (dirtyChars >= MAX_NON_ASCII_CHARS)
                                    {
                                      return true;
                                    }
                                  }
                                }
                                
                                return false;
                              }
                            
                              jQuery(function()
                              {
                                var insert_chat_line = Chat.prototype.insert_chat_line;
                                var insert_with_lock = Chat.prototype.insert_with_lock;
                                var format_message = Chat.prototype.format_message;
                            
                                Chat.prototype.insert_chat_line = function(a)
                                {
                                  if (a.subscriber || a.tagtype === 'mod' || !isDirtyText(a.message))
                                  {
                                    insert_chat_line.call(this, a);
                                  }
                                };
                            
                                Chat.prototype.format_message = function()
                                {
                                  var text = format_message.apply(this, arguments);
                                  var textWoHtml = text.replace(STRIP_TAGS_RE, '').trim();
                            
                                  if (textWoHtml.length <= 1)
                                  {
                                    return '';
                                  }
                                  
                                  var emoMatches = text.match(EMOTICON_RE);
                                  
                                  if (emoMatches && emoMatches.length >= MAX_EMOTICONS)
                                  {
                                    return '';
                                  }
                            
                                  return text;
                                };
                            
                                Chat.prototype.insert_with_lock = function(a, line, c, b)
                                {
                                  if (line.lastIndexOf(EMPTY_MESSAGE_PATTERN) === -1)
                                  {
                                    insert_with_lock.apply(this, arguments);
                                  }
                                };
                              });
                            }
                            
                            function contentEval(source) {
                              // Check for function input.
                              if ('function' == typeof source) {
                                // Execute this function with no arguments, by adding parentheses.
                                // One set around the function, required for valid syntax, and a
                                // second empty set calls the surrounded function.
                                source = '(' + source + ')();'
                              }
                            
                              // Create a script node holding this  source code.
                              var script = document.createElement('script');
                              script.setAttribute("type", "application/javascript");
                              script.textContent = source;
                            
                              // Insert the script node into the page, so it will run, and immediately
                              // remove it to clean up.
                              document.body.appendChild(script);
                              document.body.removeChild(script);
                            }
                            
                            contentEval(twitchChatCleanser);

                            Comment

                            • Xiz
                              TWG Chaos
                              FFR Simfile Author
                              • Feb 2012
                              • 3399

                              #194
                              Re: Twitch Plays Pokemon

                              New idea:

                              Twitch plays QWOP

                              Comment

                              • Crazyjayde
                                FFR Veteran
                                • May 2007
                                • 1169

                                #195
                                Re: Twitch Plays Pokemon

                                Looks like the input delay has been halved since last interruption. Shit is getting done in record time.

                                Comment

                                Working...