Massassi Forums Logo

This is the static archive of the Massassi Forums. The forums are closed indefinitely. Thanks for all the memories!

You can also download Super Old Archived Message Boards from when Massassi first started.

"View" counts are as of the day the forums were archived, and will no longer increase.

ForumsDiscussion Forum → Massassi Poll Party: Rex Reddit
Massassi Poll Party: Rex Reddit
2019-05-13, 1:43 AM #1
Does the previous winner still hold the Redditors' reins?

Who can namedrop as many ancient Greek pedophiles and German mental patients as possible in a single post right here in 2019?

Which ancient FGR thread will Krokodile revive next - regardless of if I linked to it on the channel the very same day he revived it?

Will Brian ever update T-O: DOA 2's download with the updated version?

The answer we're looking for is Doctor Worm.
Star Wars: TODOA | DXN - Deus Ex: Nihilum
2019-05-15, 7:12 AM #2
Uhh.... who's Dr. Worm?
And when the moment is right, I'm gonna fly a kite.
2019-05-15, 7:13 AM #3
Nobody, so shut up.
Star Wars: TODOA | DXN - Deus Ex: Nihilum
2019-05-15, 7:14 AM #4
> : (
And when the moment is right, I'm gonna fly a kite.
2019-05-15, 9:58 AM #5
Code:
// ==UserScript==
// @name         Trump->TODOA converter
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  TODOA
// @author       Pretentious Pete
// @match        https://forums.massassi.net/vb3/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var replaceArry = [
        [/Donald Trump/gi, 'Download TODOA'],
        [/Trump/gi, 'TODOA'],
        // etc.
    ];
    var numTerms = replaceArry.length;
    var txtWalker = document.createTreeWalker (
    document.body,
    NodeFilter.SHOW_TEXT,
    { acceptNode: function (node) {
            //-- Skip whitespace-only nodes
            if (node.nodeValue.trim() ){
                return NodeFilter.FILTER_ACCEPT; }

            return NodeFilter.FILTER_SKIP;
        }
    },
    false
);
    var txtNode = null;

    while (txtNode = txtWalker.nextNode () ) {
        var oldTxt = txtNode.nodeValue;

        for (var J = 0; J < numTerms; J++) {
            oldTxt = oldTxt.replace (replaceArry[J][0], replaceArry[J][1]);
        }
        txtNode.nodeValue = oldTxt;
    }
    // Your code here...
})();


I "wrote" a script which changes all occurrences of Trump to TODOA and Donald Trump to Download TODOA:

[https://i.imgur.com/ZQdQmcU.png]

Just need to add your your TamperMonkey userscripts.

Also, there's a Massassi Discord?
2019-05-15, 10:56 PM #6
This thread does not deliver.
2019-05-16, 9:52 AM #7
1 write-in vote for friend14
2019-05-16, 1:19 PM #8
Damn, I'm neck and neck with Massassi Discord. Get on and vote for me!!

↑ Up to the top!