The SMG4/GLITCH Wiki
Advertisement

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */

// ==============================
// Config scripts, list what each is used for.
// Most any config must go above the import statements.
// Unless stated otherwise.
// ==============================

// **********************************************
// User Tags - http://dev.wikia.com/wiki/UserTags
// **********************************************
 
window.UserTagsJS = {
	modules: {},
	tags: {
                wikicoder: { u:'Wiki Coder' }, // each line except the last needs a comma at the end
                demicoder: { u:'Kinda Halfway-Wiki Coder'},
                color: { u:'The Color Code Master' },
                raptor: { u:'Velociraptor' },
                dylan: { u:'The Ambassador' },
                smg4: { u:'The Big Man' },
                muffin: { u:'Only returns to explain his own cruddy code' },
                gbye: { u:'Retired' },
                crazy: { u:'CRAZY'},
                judea: { u:'JEW'},
                fcukzen: { u:'Herpy G. McNazi'},
                hiatus: { u:'ON HIATUS'},
                zenon: { u:'ARTUS THE FURFAG'},
                TRG: { u:'The NSMB Guy'},
                Man: { u:'The Dude'},
                Major: { u:'Just Some Random Hobo'},
                Retired: { u:'RETIRED'}
	}
};
UserTagsJS.modules.custom = {
    'The Zog.': ['wikicoder', 'gbye'], // each line except the last needs a comma at the end
    'Pinkolol16': ['color', 'gbye'],
    'EmigaRaptor': ['raptor', 'fcukzen', 'zenon'],
    'The Minish LAN': ['dylan'],
    'Supermarioglitchy4': ['smg4'],
    'AgentMuffin': ['muffin'],
    'DoubleAgentMuffin': ['muffin', 'hiatus'],
    'MarioFan5050': ['crazy'],
    'The RPG Gamer': ['TRG', 'Man', 'Major']
    
};
UserTagsJS.modules.mwGroups = ['bureaucrat', 'sysop', 'chatmoderator'];

// RevealAnonIP

window.RevealAnonIP = {
    permissions : ['rollback', 'sysop', 'bureaucrat']
};

//Auto Message Blocked
var MessageBlock = {
    title : 'Blocked.',
    message : 'You have been blocked for $2 for the following reason(s): "$1"',
    autocheck : true
};
//Last Edited Config
window.lastEdited = {
    avatar: false
};

window.ajaxPages = new Array( 'Special:RecentChanges', 'Special:WikiActivity', 'Special:Log', 'Special:NewFiles' );
window.AjaxRCRefreshText = 'Automatically refresh this page',
window.AjaxRCRefreshHoverText = 'Enable auto-refreshing page loads',

// *****************************
// Beginning of Script importing
// *****************************
 
importArticles({
    type: 'script',
    articles: [
        'u:dev:MessageBlock/code.js',
        'u:dev:LastEdited/code.js',
        'u:dev:RevealAnonIP/code.js',
        // 'u:dev:MessageWallUserTags/code.js', /* Please read http://dev.wikia.com/wiki/MessageWallUserTags before re-enabling. This script needs default values to be set for it to work properly.
        'u:dev:UserTags/code.js',
        'u:dev:DynamicImages/code.js',
        'u:dev:DupImageList/code.js',
        'u:dev:LastEdited/code.js',
        'u:dev:DisplayClock/code.js',
        'u:dev:AjaxRC/code.js',
        'u:dev:MessageBlock/code.js',
        'u:dev:FixMultipleUpload/code.js',
        'u:dev:ListAdmins/code.js',
        'u:dev:UserTags/code.js'          // User Rights Tags
    ]
});
Advertisement