Pendorian Elite UI

Changes a large portion of the text and UI to 'Elite' blue and makes small changes to the UI.

נכון ליום 22-11-2018. ראה הגרסה האחרונה.

// ==UserScript==
// @name Pendorian Elite UI
// @namespace http://pendoria.net/
// @version 1.2.2
// @author Puls3 (From Pendoria)
// @include http*://*pendoria.net* 
// @grant none
// @description Changes a large portion of the text and UI to 'Elite' blue and makes small changes to the UI.
// ==/UserScript==

//Version 1.1 - Removed dungeon text.
//Version 1.2
// - Added Favicon.
// - Fixed match & switched to include.
// - Turned inventory '!' to blue.
// - Fixed namespace.
//Version 1.2.1 - Fixed inventory exclamation point not changing.
//Version 1.2.2 - Added background image.

//Made by Puls3
//It's very easy to edit!
//If cloned please give credit!

var head = document.getElementsByTagName('head')[0];
head.insertAdjacentHTML("afterend", `
<link rel="icon" href="https://xer0-puls3.github.io/assets/images/favicon.ico" type="image/x-icon"/>
<style>

/* CHAT CSS BELOW */

.chat-username {
  color: rgb(0, 153, 255) !important;
}

/* UI CSS Below */

body {
  background-image: url(https://zerthox.github.io/ClearVision/images/sapphire.jpg) !important;
}

.green {
  background-color: rgb(0, 153, 255) !important;
}
#expwidth {
  background-color: rgb(0, 153, 255) !important;
}
#profile, #menu, #stats-hourly {
  top: -50px;
  background-color: rgba(0,0,0,0) !important;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) , rgba(0,0,0,0.3)) !important;
}
#logo {
  display: none;
}
#quest_done {
  color: rgb(0, 153, 255);
}
#quest_prog {
  color: rgb(0, 153, 255);
}
#event {
  color: rgb(0, 153, 255) !important;
}
quest_abandon {
  background-color: rgb(0, 153, 255) !important;
}
button {
  background: rgba(0, 153, 255,0.5) !important;
}
#invinfo {
  color: rgb(0, 153, 255) !important;
}

/* TS CSS BELOW */

#gainedres {
  color: rgb(0, 153, 255) !important;
}

#gainedtype {
  color: rgb(0, 153, 255) !important;
}

#guild_currency {
  color: rgb(0, 153, 255) !important;
}

#guild_amount {
  color: rgb(0, 153, 255) !important;
}

#quint span {
  color: rgb(0, 153, 255) !important;
}

.actionexperience, .actionexperience span {
  color: rgb(0, 153, 255) !important;
}

#double_tradeskill span {
  color: rgb(0, 153, 255) !important;
}

/* DUNGEON CSS BELOW */

#dungeon-dialogue {
  display: none;
}

/* COMBAT CSS BELOW */

.timeshit, .timescrit, .timesdodged, .hitstaken, #gainedgold, .actiongold, #guild_gold {
  color: rgb(0, 153, 255) !important;
}
#double_battle span {
  color: rgb(0, 153, 255) !important;
}

</style>
`);
长期地址
遇到问题?请前往 GitHub 提 Issues。