Halo Alpha
Advertisement
Halo Alpha

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.
// Credit to Runescape Wiki
 
//Chat's topic. Remember to escape single quotes in the topic using \' to prevent this from breaking.
        var chatTopic = '<span style="color:#ff2500;">Welcome to FLEETCOM - UNSC Fleet Communications.</span><br /><a href="/wiki/Halo_Alpha:Chat_Policy" style="text-decoration:none;" style="text-decoration:none;" target="_blank" title="FLEETCOM Chat Policy">Rules</a> <span style="color:#ff2500;">•</span> <a href="/wiki/Category:Chat_logs" style="text-decoration:none;" style="text-decoration:none;" target="_blank" title="FLEETCOM Chat Logs">Logs</a></font> <span style="color:#ff2500;">•</span> <a href="/wiki/MediaWiki:Emoticons" style="text-decoration:none;" style="text-decoration:none;" target="_blank" title="FLEETCOM Emotion Icons">Emotes</a></font> <span style="color:#ff2500;">•</span> <a href="/wiki/User:Meanders Ahead/Commands" style="text-decoration:none;" style="text-decoration:none;" target="_blank" title="FLEETCOM AI Commands">Commands</a></font> <span style="color:#ff2500;">•</span>  <img width="13" height="13" src="https://images.wikia.nocookie.net/halo/images/0/0d/ODST_Chat_Insignia.png"> <span style="color:#ff2500;">=</span> <a href="/wiki/Halo_Alpha:Chat_Policy#Chat_Moderators" style="text-decoration:none;" style="text-decoration:none;" target="_blank" title="FLEETCOM Moderators">Chat Mods</a> <img width="13" height="13" src="https://images.wikia.nocookie.net/halo/images/4/48/SPARTAN-II_Chat_Insignia.png"> <span style="color:#ff2500;">=</span> <a href="/wiki/Halo Aplha:Administrators" style="text-decoration:none;" style="text-decoration:none;" target="_blank" title="FLEETCOM Administrators">Admins</a> <img width="13" height="13" src="https://images.wikia.nocookie.net/halo/images/e/e0/Bot_Chat_Insignia.png">  <span style="color:#ff2500;">=</span> <a href="/wiki/Halo Alpha:Bots" style="text-decoration:none;" style="text-decoration:none;" target="_blank" title="FLEETCOM AI">Bots</a>'
 
$(function() {
    $('#ChatHeader .public.wordmark').prepend('<div class="chattopic" style="text-align:center; position:absolute; width:60%; z-index:0; font-size: 13px; color:#3A3A3A; font-weight:bold; line-height:1.6; margin-left:110px;">'+chatTopic+'</div>')
    .find('a').attr('style','position:relative;text-decoration:none;')
})
$('#ChatHeader .public.wordmark div:not(:first-child)').remove()
 
// END Chat topic
 
// ************
// Chat options import
// ************
// Written by Sactage, Callofduty4 and Madnessfan34537
var chatOptionsLoaded = false;
if (!chatOptionsLoaded){
    chatOptionsLoaded = true;
    //importScriptPage('Chat/Options.js','scripts');
    importScriptPage('ChatOptions/code.js','dev');
    $('#chatOptionsButton').remove()
    $('#chat-options-button').appendTo("#ChatHeader").css({'right' : '155px', 'bottom' : 0, 'position' : 'absolute', 'cursor' : 'pointer'});
}
 
// ****************
// END Chat options import
// ****************
 
// load chat options stylesheet
importStylesheetPage('Chat/Chat.css', 'scripts');
// end load chat options stylsheet
 
/*Mark admins*/
// Written by administrators of the Runescape wiki, who also kindly gave permission for use.
setInterval(function() {
    $('#Rail .User.chat-mod:not(.admin) .username').each(function() {
        if (!this.innerHTML.match(/TheRequiemEmpire/)) {
            if (!this.innerHTML.match(/Meanders Ahead/)) {
                $(this).parent().addClass('admin');
            } else {
                $(this).parent().addClass('bot');
            }
        }
    });
}, 1000)
Advertisement