RenzXVI

Terraria Chat Topic

Aug 10th, 2016
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Terraria Chat Topic
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  Chat topic links
  6. // @author      
  7. // @match        wikia.com
  8. // @grant        none
  9. // @include      http://terraria.wikia.com/wiki/Special:Chat
  10. // @include      wikia.com
  11.  
  12. // ==/UserScript==
  13.  
  14. (function() {
  15.     'use strict';
  16.  
  17.     // Your code here...
  18.  
  19. var chatTopic = '<br />• <a href="/wiki/TW:CHAT" target="_blank" title="Chat Guidelines" style="position:relative;text-decoration:underline;color:#9400D3;text-shadow:0px 0px 2px black;">Chat Guidelines</a> • <a href="http://www.wikia.com/Terms_of_Use" target="_blank" title="Terms of Use" style="position:relative;text-decoration:underline;">Terms of Use</a> • <a href="/wiki/Special:Log/chatban" title="Chat Ban Log" target="_blank" style="position:relative;text-decoration:underline;">Chat Ban Log</a> • <br /> • <a href="/wiki/User_talk:Squazzil" title="Squazzil: Talk Page" target="_blank" style="position:relative;text-decoration:underline;">Squazzil: Talk Page</a> • <a href="/wiki/w:c:dev:ChatTags%23Usage" target="_blank" title="Dev wiki Chat Tags help" style="position:relative;text-decoration:underline;">Chat Tags Help</a> • <a href="/wiki/Special:Log/block" title="Block Log" target="_blank" style="position:relative;text-decoration:underline;">Block Log</a> •';
  20. $(function() {
  21.     $('#ChatHeader .public.wordmark').prepend('<div class="chattopic" style="text-align:center;position:absolute;width:80%;z-index:0;font-size: 11px;line-height:1.0;margin-left:110px;">'+chatTopic+'</div>')
  22.     .find('a').attr('style','position:relative;text-decoration:none;');
  23. });
  24.  
  25. })();
Add Comment
Please, Sign In to add comment