**GOLDEN EGG THEME WITH BUILT IN CROSSHAIR** (Shellshock.io)

Become a KING!!

目前为 2022-03-30 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name **GOLDEN EGG THEME WITH BUILT IN CROSSHAIR** (Shellshock.io)
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.42
  5. // @description Become a KING!!
  6. // @author austin_is_cool_23
  7. // @match https://shellshock.io/
  8. // @match https://algebra.best/
  9. // @match https://eggcombat.com/*
  10. // @match https://shellshock.io/*
  11. // @match https://eggfacts.fun/*
  12. // @match https://biologyclass.club/*
  13. // @match https://egghead.institute/*
  14. // @match https://egg.dance/*
  15. // @match https://eggisthenewblack.com/*
  16. // @match https://mathfun.rocks/*
  17. // @match https://hardboiled.life/*
  18. // @match https://overeasy.club/*
  19. // @match https://zygote.cafe/*
  20. // @match https://mathdrills.info
  21. // @match https://eggsarecool.com/*
  22. // @match https://deadlyegg.com/*
  23. // @match https://mathgames.world/*
  24. // @match https://hardshell.life/*
  25. // @match https://violentegg.club/*
  26. // @match https://yolk.life/*
  27. // @match https://softboiled.club/*
  28. // @match https://scrambled.world/*
  29. // @match https://deathegg.world/*
  30. // @match https://violentegg.fun/*
  31. // @icon https://st4.depositphotos.com/1000451/30856/i/1600/depositphotos_308568652-stock-photo-golden-egg-with-gold-crown.jpg
  32. // @grant none
  33. // @lisense MIT
  34. // ==/UserScript==
  35. (function () {
  36. "use strict";
  37. window.mod = {
  38. loadGui: () => {},
  39. modMenu: {
  40. instruction: {},
  41. credit: {},
  42. crosshairSettings: {
  43. /* Change the type here to have the type be always set as a default */
  44. type: "None", // None, White Cross, Black Cross, White Circle, Black Circle, White Square, Black Square
  45. container: {
  46. label: {},
  47. },
  48. },
  49. },
  50. };
  51. window._utils = {};
  52. window._utils.requirelib = async function (url, global) {
  53. return new Promise(async function (resolve) {
  54. async function getCode() {
  55. var xmlHttp = new XMLHttpRequest();
  56. xmlHttp.open("GET", url, false);
  57. xmlHttp.send(null);
  58. return xmlHttp.responseText;
  59. }
  60. let code = await getCode();
  61. if (global) {
  62. code += 'window["' + global + '"] = ' + global + ";";
  63. }
  64. let evaluateCode = new Function(code);
  65. evaluateCode();
  66. resolve("done");
  67. });
  68. };
  69. window._utils
  70. .requirelib("https://unpkg.com/guify@0.12.0/lib/guify.min.js")
  71. .then(() => {
  72. window.mod.loadGui();
  73. });
  74. const y = document.createElement("div");
  75. y.id = "crossY";
  76. const z = document.createElement("div");
  77. z.id = "crossZ";
  78. const w = document.createElement("div");
  79. w.id = "crossW";
  80. const x = document.createElement("div");
  81. x.id = "crossX";
  82. document.body.appendChild(y);
  83. document.body.appendChild(z);
  84. document.body.appendChild(w);
  85. document.body.appendChild(x);
  86. function updateCrosshair(type) {
  87. if (type == "None") {
  88. let y = document.getElementById("crossY");
  89. let z = document.getElementById("crossZ");
  90. let w = document.getElementById("crossW");
  91. let x = document.getElementById("crossX");
  92. y.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  93. z.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  94. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  95. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  96. }
  97. if (type == "White Cross") {
  98. let y = document.getElementById("crossY");
  99. let z = document.getElementById("crossZ");
  100. let w = document.getElementById("crossW");
  101. let x = document.getElementById("crossX");
  102. y.style.cssText = `width:5px;height:17px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  103. z.style.cssText = `width:17px;height:5px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  104. w.style.cssText = `width:4px;height:16px;background-color:White;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  105. x.style.cssText = `width:16px;height:4px;background-color:White;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  106. }
  107. if (type == "Black Cross") {
  108. let y = document.getElementById("crossY");
  109. let z = document.getElementById("crossZ");
  110. let w = document.getElementById("crossW");
  111. let x = document.getElementById("crossX");
  112. y.style.cssText = `width:5px;height:17px;background-color:White;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  113. z.style.cssText = `width:17px;height:5px;background-color:White;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  114. w.style.cssText = `width:4px;height:16px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  115. x.style.cssText = `width:16px;height:4px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  116. }
  117. if (type == "Red Cross") {
  118. let y = document.getElementById("crossY");
  119. let z = document.getElementById("crossZ");
  120. let w = document.getElementById("crossW");
  121. let x = document.getElementById("crossX");
  122. y.style.cssText = `width:5px;height:17px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  123. z.style.cssText = `width:17px;height:5px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  124. w.style.cssText = `width:4px;height:16px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  125. x.style.cssText = `width:16px;height:4px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  126. }
  127. if (type == "Orange Cross") {
  128. let y = document.getElementById("crossY");
  129. let z = document.getElementById("crossZ");
  130. let w = document.getElementById("crossW");
  131. let x = document.getElementById("crossX");
  132. y.style.cssText = `width:5px;height:17px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  133. z.style.cssText = `width:17px;height:5px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  134. w.style.cssText = `width:4px;height:16px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  135. x.style.cssText = `width:16px;height:4px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  136. }
  137. if (type == "Yellow Cross") {
  138. let y = document.getElementById("crossY");
  139. let z = document.getElementById("crossZ");
  140. let w = document.getElementById("crossW");
  141. let x = document.getElementById("crossX");
  142. y.style.cssText = `width:5px;height:17px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  143. z.style.cssText = `width:17px;height:5px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  144. w.style.cssText = `width:4px;height:16px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  145. x.style.cssText = `width:16px;height:4px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  146. }
  147. if (type == "Green Cross") {
  148. let y = document.getElementById("crossY");
  149. let z = document.getElementById("crossZ");
  150. let w = document.getElementById("crossW");
  151. let x = document.getElementById("crossX");
  152. y.style.cssText = `width:5px;height:17px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  153. z.style.cssText = `width:17px;height:5px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  154. w.style.cssText = `width:4px;height:16px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  155. x.style.cssText = `width:16px;height:4px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  156. }
  157. if (type == "Blue Cross") {
  158. let y = document.getElementById("crossY");
  159. let z = document.getElementById("crossZ");
  160. let w = document.getElementById("crossW");
  161. let x = document.getElementById("crossX");
  162. y.style.cssText = `width:5px;height:17px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  163. z.style.cssText = `width:17px;height:5px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  164. w.style.cssText = `width:4px;height:16px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  165. x.style.cssText = `width:16px;height:4px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  166. }
  167. if (type == "Purple Cross") {
  168. let y = document.getElementById("crossY");
  169. let z = document.getElementById("crossZ");
  170. let w = document.getElementById("crossW");
  171. let x = document.getElementById("crossX");
  172. y.style.cssText = `width:5px;height:17px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  173. z.style.cssText = `width:17px;height:5px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  174. w.style.cssText = `width:4px;height:16px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  175. x.style.cssText = `width:16px;height:4px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  176. }
  177. if (type == "White Circle") {
  178. let y = document.getElementById("crossY");
  179. let z = document.getElementById("crossZ");
  180. let w = document.getElementById("crossW");
  181. let x = document.getElementById("crossX");
  182. y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  183. z.style.cssText = `width:8px;height:8px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  184. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  185. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  186. }
  187. if (type == "Red Circle") {
  188. let y = document.getElementById("crossY");
  189. let z = document.getElementById("crossZ");
  190. let w = document.getElementById("crossW");
  191. let x = document.getElementById("crossX");
  192. y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  193. z.style.cssText = `width:8px;height:8px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  194. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  195. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  196. }
  197. if (type == "Orange Circle") {
  198. let y = document.getElementById("crossY");
  199. let z = document.getElementById("crossZ");
  200. let w = document.getElementById("crossW");
  201. let x = document.getElementById("crossX");
  202. y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  203. z.style.cssText = `width:8px;height:8px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  204. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  205. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  206. }
  207. if (type == "Yellow Circle") {
  208. let y = document.getElementById("crossY");
  209. let z = document.getElementById("crossZ");
  210. let w = document.getElementById("crossW");
  211. let x = document.getElementById("crossX");
  212. y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  213. z.style.cssText = `width:8px;height:8px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  214. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  215. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  216. }
  217. if (type == "Green Circle") {
  218. let y = document.getElementById("crossY");
  219. let z = document.getElementById("crossZ");
  220. let w = document.getElementById("crossW");
  221. let x = document.getElementById("crossX");
  222. y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  223. z.style.cssText = `width:8px;height:8px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  224. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  225. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  226. }
  227. if (type == "Blue Circle") {
  228. let y = document.getElementById("crossY");
  229. let z = document.getElementById("crossZ");
  230. let w = document.getElementById("crossW");
  231. let x = document.getElementById("crossX");
  232. y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  233. z.style.cssText = `width:8px;height:8px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  234. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  235. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  236. }
  237. if (type == "Purple Circle") {
  238. let y = document.getElementById("crossY");
  239. let z = document.getElementById("crossZ");
  240. let w = document.getElementById("crossW");
  241. let x = document.getElementById("crossX");
  242. y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  243. z.style.cssText = `width:8px;height:8px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  244. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  245. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  246. }
  247. if (type == "Black Circle") {
  248. let y = document.getElementById("crossY");
  249. let z = document.getElementById("crossZ");
  250. let w = document.getElementById("crossW");
  251. let x = document.getElementById("crossX");
  252. y.style.cssText = `width:9px;height:9px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  253. z.style.cssText = `width:8px;height:8px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`;
  254. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  255. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  256. }
  257. if (type == "White Square") {
  258. let y = document.getElementById("crossY");
  259. let z = document.getElementById("crossZ");
  260. let w = document.getElementById("crossW");
  261. let x = document.getElementById("crossX");
  262. y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  263. z.style.cssText = `width:8px;height:8px;background-color:#ffffff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  264. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ffffff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  265. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ffffff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  266. }
  267. if (type == "Red Square") {
  268. let y = document.getElementById("crossY");
  269. let z = document.getElementById("crossZ");
  270. let w = document.getElementById("crossW");
  271. let x = document.getElementById("crossX");
  272. y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  273. z.style.cssText = `width:8px;height:8px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  274. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  275. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  276. }
  277. if (type == "Orange Square") {
  278. let y = document.getElementById("crossY");
  279. let z = document.getElementById("crossZ");
  280. let w = document.getElementById("crossW");
  281. let x = document.getElementById("crossX");
  282. y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  283. z.style.cssText = `width:8px;height:8px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  284. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  285. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  286. }
  287. if (type == "Yellow Square") {
  288. let y = document.getElementById("crossY");
  289. let z = document.getElementById("crossZ");
  290. let w = document.getElementById("crossW");
  291. let x = document.getElementById("crossX");
  292. y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  293. z.style.cssText = `width:8px;height:8px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  294. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  295. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  296. }
  297. if (type == "Green Square") {
  298. let y = document.getElementById("crossY");
  299. let z = document.getElementById("crossZ");
  300. let w = document.getElementById("crossW");
  301. let x = document.getElementById("crossX");
  302. y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  303. z.style.cssText = `width:8px;height:8px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  304. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  305. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  306. }
  307. if (type == "Blue Square") {
  308. let y = document.getElementById("crossY");
  309. let z = document.getElementById("crossZ");
  310. let w = document.getElementById("crossW");
  311. let x = document.getElementById("crossX");
  312. y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  313. z.style.cssText = `width:8px;height:8px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  314. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  315. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  316. }
  317. if (type == "Purple Square") {
  318. let y = document.getElementById("crossY");
  319. let z = document.getElementById("crossZ");
  320. let w = document.getElementById("crossW");
  321. let x = document.getElementById("crossX");
  322. y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  323. z.style.cssText = `width:8px;height:8px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  324. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  325. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  326. }
  327. if (type == "Black Square") {
  328. let y = document.getElementById("crossY");
  329. let z = document.getElementById("crossZ");
  330. let w = document.getElementById("crossW");
  331. let x = document.getElementById("crossX");
  332. y.style.cssText = `width:9px;height:9px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  333. z.style.cssText = `width:8px;height:8px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  334. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  335. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  336. }
  337. if (type == "White Long Width") {
  338. let y = document.getElementById("crossY");
  339. let z = document.getElementById("crossZ");
  340. let w = document.getElementById("crossW");
  341. let x = document.getElementById("crossX");
  342. y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  343. z.style.cssText = `width:16px;height:4px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  344. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  345. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  346. }
  347. if (type == "Red Long Width") {
  348. let y = document.getElementById("crossY");
  349. let z = document.getElementById("crossZ");
  350. let w = document.getElementById("crossW");
  351. let x = document.getElementById("crossX");
  352. y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  353. z.style.cssText = `width:16px;height:4px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  354. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  355. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  356. }
  357. if (type == "Orange Long Width") {
  358. let y = document.getElementById("crossY");
  359. let z = document.getElementById("crossZ");
  360. let w = document.getElementById("crossW");
  361. let x = document.getElementById("crossX");
  362. y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  363. z.style.cssText = `width:16px;height:4px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  364. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  365. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  366. }
  367. if (type == "Yellow Long Width") {
  368. let y = document.getElementById("crossY");
  369. let z = document.getElementById("crossZ");
  370. let w = document.getElementById("crossW");
  371. let x = document.getElementById("crossX");
  372. y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  373. z.style.cssText = `width:16px;height:4px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  374. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  375. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  376. }
  377. if (type == "White Long Width") {
  378. let y = document.getElementById("crossY");
  379. let z = document.getElementById("crossZ");
  380. let w = document.getElementById("crossW");
  381. let x = document.getElementById("crossX");
  382. y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  383. z.style.cssText = `width:16px;height:4px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  384. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  385. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  386. }
  387. if (type == "Green Long Width") {
  388. let y = document.getElementById("crossY");
  389. let z = document.getElementById("crossZ");
  390. let w = document.getElementById("crossW");
  391. let x = document.getElementById("crossX");
  392. y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  393. z.style.cssText = `width:16px;height:4px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  394. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  395. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  396. }
  397. if (type == "Blue Long Width") {
  398. let y = document.getElementById("crossY");
  399. let z = document.getElementById("crossZ");
  400. let w = document.getElementById("crossW");
  401. let x = document.getElementById("crossX");
  402. y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  403. z.style.cssText = `width:16px;height:4px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  404. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  405. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  406. }
  407. if (type == "Purple Long Width") {
  408. let y = document.getElementById("crossY");
  409. let z = document.getElementById("crossZ");
  410. let w = document.getElementById("crossW");
  411. let x = document.getElementById("crossX");
  412. y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  413. z.style.cssText = `width:16px;height:4px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  414. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  415. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  416. }
  417. if (type == "Black Long Width") {
  418. let y = document.getElementById("crossY");
  419. let z = document.getElementById("crossZ");
  420. let w = document.getElementById("crossW");
  421. let x = document.getElementById("crossX");
  422. y.style.cssText = `width:17px;height:5px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  423. z.style.cssText = `width:16px;height:4px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  424. w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  425. x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`;
  426. }
  427. if (type == "--- RED ---") {
  428. alert(
  429. `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".`
  430. );
  431. }
  432. if (type == "--- ORANGE ---") {
  433. alert(
  434. `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".`
  435. );
  436. }
  437. if (type == "--- YELLOW ---") {
  438. alert(
  439. `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".`
  440. );
  441. }
  442. if (type == "--- GREEN ---") {
  443. alert(
  444. `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".`
  445. );
  446. }
  447. if (type == "--- BLUE ---") {
  448. alert(
  449. `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".`
  450. );
  451. }
  452. if (type == "--- PURPLE ---") {
  453. alert(
  454. `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".`
  455. );
  456. }
  457. if (type == "--- WHITE ---") {
  458. alert(
  459. `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".`
  460. );
  461. }
  462. if (type == "--- BLACK ---") {
  463. alert(
  464. `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".`
  465. );
  466. }
  467. }
  468. window.mod.loadGui = function () {
  469. const crosshairGui = new window.guify({
  470. title: "Crosshair Menu (Version 2)",
  471. theme: "dark",
  472. align: "left",
  473. width: 300,
  474. barMode: "none",
  475. opacity: 0.95,
  476. root: document.body,
  477. open: true,
  478. });
  479. crosshairGui.Register({
  480. type: "folder",
  481. label: "Instructions",
  482. open: false,
  483. });
  484. window.mod.modMenu.instruction = crosshairGui.Register({
  485. type: "text",
  486. label: "Credits",
  487. folder: "Instructions",
  488. });
  489. window.mod.modMenu.instruction.container.innerHTML = `<p style="color:green;font-size: small;margin-bottom: 0px;padding-left: 2.5px;">Well well... It seems you have found out my crosshair mods. *not a hack*</p><p style="color:white;font-size: small;margin-top: 0px;padding-left: 2.5px;">1. Below are the settings for the mod as you can see.</p><p style="color:green;font-size: small;margin-top: 0px;padding-left: 2.5px;">2. Select the settings and color you would like to use, they will appear in the center of the screen.</p><p style="color:white;font-size: small;margin-top: 0px;padding-left: 2.5px;">3. You can not set to anything that start or end with a "---" as they are markers.</p><p style="color:blue;font-size: small;margin-top: 0px;padding-left: 2.5px;">4. Take this mod into a game and try it out!</p><p style="color:orange;font-size: small;margin-top: 0px;padding-left: 2.5px;">[WARNING] : This has not been publicly allowed or disallowed in Shell League, so dont use it unless permission is granted!</p><p style="color:red;font-size: small;margin-top: 0px;padding-left: 2.5px;">[NOTE] : Do not reproduce, reupload, or take this mod as austiniscool23 and my Clan worked hard on this. If you do please credit me as we worked on this, any modifications will be yours, but the framework will still be ours, due to reason of our amazing developers!.</p>`;
  490. crosshairGui.Register({
  491. type: "folder",
  492. label: "Crosshair Settings",
  493. open: false,
  494. });
  495. crosshairGui.Register({
  496. type: "select",
  497. label: "Types",
  498. object: window.mod.modMenu.crosshairSettings,
  499. property: "type",
  500. folder: "Crosshair Settings",
  501. options: [
  502. "None",
  503. "--- RED ---",
  504. "Red Cross",
  505. "Red Circle",
  506. "Red Square",
  507. "Red Long Width",
  508. "--- ORANGE ---",
  509. "Orange Cross",
  510. "Orange Circle",
  511. "Orange Square",
  512. "Orange Long Width",
  513. "--- YELLOW ---",
  514. "Yellow Cross",
  515. "Yellow Circle",
  516. "Yellow Square",
  517. "Yellow Long Width",
  518. "--- GREEN ---",
  519. "Green Cross",
  520. "Green Circle",
  521. "Green Square",
  522. "Green Long Width",
  523. "--- BLUE ---",
  524. "Blue Cross",
  525. "Blue Circle",
  526. "Blue Square",
  527. "Blue Long Width",
  528. "--- PURPLE ---",
  529. "Purple Cross",
  530. "Purple Circle",
  531. "Purple Square",
  532. "Purple Long Width",
  533. "--- WHITE ---",
  534. "White Cross",
  535. "White Circle",
  536. "White Square",
  537. "White Long Width",
  538. "--- BLACK ---",
  539. "Black Cross",
  540. "Black Circle",
  541. "Black Square",
  542. "Black Long Width",
  543. ],
  544. onChange: updateCrosshair,
  545. });
  546. window.mod.modMenu.credit = crosshairGui.Register({
  547. type: "text",
  548. label: "Credits",
  549. });
  550. window.mod.modMenu.credit.container.innerHTML = `<p style="color:red;font-size: medium;margin-bottom: 0px;padding-left: 15px;">Made by austiniscool23.</p><p style="color:red;font-size: medium;margin-top: 0px;padding-left: 15px;">With the help of KNG Clan!</p>`;
  551. let titleTextElm = crosshairGui.panel.panel.childNodes[0];
  552. titleTextElm.style.color = "rgb(255, 196, 0)";
  553. titleTextElm.style.fontWeight = "bold";
  554. };
  555. })();
  556. let css =
  557. `#ss_background, #gameDescription, .load_screen, #progress-container { background: url('https://st4.depositphotos.com/1000451/30856/i/1600/depositphotos_308568652-stock-photo-golden-egg-with-gold-crown.jpg') !important; position: absolute !important; background-size: cover !important; background-repeat: no-repeat !important; background-position: center !important; width: 100% !important; height: 100% !important; } div.media-tabs-content.front_panel.roundme_sm { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To=')!important; background-size: cover !important;} #equip_sidebox { border: var(--ss-space-sm) solid black} .front_panel, #equip_sidebox { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); background-size: cover !important;} .front_panel { border: var(--ss-space-sm) solid black; } .ss_field, .ss_select { background: white; border: 1px solid black; color: black;} .btn_blue, .btn_green, .ss_bigtab, .ss_bigtab.selected, .button_blue { background: gold !important; border: 0.2em solid black !important; color: black !important; } .btn_yolk, .btn_red, .btn_blue1 { background: black !important; border: 0.2em solid black !important; color: gold !important; } .morestuff { background-color: black !important; border: 0.2em solid black !important; } .ss_bigtab:hover { color: black !important; } #stat_item { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); } #stat_item h4, .stat_stat { color: black; } .news_item:nth-child(odd), .stream_item:nth-child(odd) { background: url('https://cdn.discordapp.com/attachments/811268272418062359/908381929164910642/2Q.png'); } .news_item:nth-child(even), .stream_item:nth-child(even) { background: url('https://cdn.discordapp.com/attachments/811268272418062359/908381929164910642/2Q.png'); } .stream_item:hover, .news_item.clickme:hover { background: gold !important; } #weapon_select:nth-child(1n+0) .weapon_img { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To=')!important; border: 3px solid black!important; } #popupTipDay #weapon_select:nth-child(1n+0) .weapon_img { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To=')!important; border: 3px solid black!important; } h3, h1, h2, h4, h5, h6, .front_panel h3, #equip.equipped_slots h3, #item_grid h3 { color: black !important; } label, .label { color: black !important; } .egg_count { color: black; } .account_eggs { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); } #equip_equippedslots .equip_item, #equip_itemtype .selected, #equip_equippedslots .equip_item:hover { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); background-color: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); border: 0.33em solid black; } #equip_grid .store_item, #equip_grid .highlight, #equip_grid .store_item:hover { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); border: 0.33em solid black; color: black; } .popup_lg, .popup_sm { background: url('https://wallpaperaccess.com/full/3375439.jpg'); border: 0.33em solid black; } .box_blue2 { background-color: transparent; } .pause-bg { background: rgba(0,0,0,0.3) !important; } #maskmiddle { background: url('../img/scope.png') center center no-repeat !important; background-size: contain !important; width: 100vh !important; height: 100vh !important; } .crosshair.normal { background: gold; } .crosshair { border: 0.05em solid black; } .crosshair.powerfull { background: gold; } #createPrivateGame .roundme_sm, #settingsPopup .roundme_sm, #pickServerPopup .roundme_sm, #adBlockerVideo .roundme_sm { background: transparent !important }`
  558. document.head.insertAdjacentHTML("beforeend", `<style>${css}</style>`)
  559. (function () {
  560. const addScript = () => {
  561. document.head.innerHTML += `<style>
  562. * {
  563. --ss-transparent: #00000000;
  564. --ss-black: #000;
  565. --ss-white: #8cb8ff; /*White Text*/
  566. --ss-offwhite: #FFF3E4;
  567. --ss-yellow0:#000000;
  568. --ss-yellow: #171717;
  569. --ss-yolk0: #171717;
  570. --ss-yolk: #000000; /*Yellow Buttons*/
  571. --ss-yolk2: #0044b3;
  572. --ss-red0: #000000;
  573. --ss-red: #000000;
  574. --ss-red2: #000000;
  575. --ss-red-bright: #000000;
  576. --ss-pink: #000000;
  577. --ss-pink1: #000000;
  578. --ss-pink-light: #000000;
  579. --ss-brown: #000147;
  580. --ss-blue00: #003b75;
  581. --ss-blue0: #ffffff;
  582. --ss-blue1: #0407b8;
  583. --ss-blue2: #003b75;
  584. --ss-blue3: #000123; /*Lighter Box Borders*/
  585. --ss-blue4: #003b75; /*Blue Subtitles, Darker Box Borders*/
  586. --ss-blue5: #171717;
  587. --ss-green0: #000000;
  588. --ss-green1: #000000;
  589. --ss-green2: #000000;
  590. --ss-orange1: #595959;
  591. --ss-vip-gold: linear-gradient(to right, #0004ff, #0003c9, #0002a1, #000170, #000147);
  592. --ss-clear: rgba(255, 255, 255, 0);
  593. --ss-blue2clear: rgba(94, 186, 217, 0);
  594. --ss-shadow: rgba(0,0,0,0.4);
  595. --ss-blueshadow: #4a4dff;
  596. --ss-darkoverlay: rgba(0, 0, 0, 0.8);
  597. --ss-darkoverlay2: rgba(0, 0, 0, 0.2);
  598. --ss-lightoverlay: url("https://i.pinimg.com/originals/0a/54/ef/0a54ef17f9414b707278320da87680ea.gif"); /*Main Background*/
  599. --ss-lightbackground: linear-gradient(var(--ss-blue1), var(--ss-blue2));
  600. --ss-blueblend1: linear-gradient(#349ec1, #5fbad8); /*Some Box fill colors*/
  601. --ss-scrollmask1: linear-gradient(var(--ss-blue2clear), var(--ss-blue2));
  602. --ss-scrollmask2: linear-gradient(rgba(56, 158, 192, 0), #389EC0);
  603. --ss-fieldbg: linear-gradient(#91CADB, #000000, #000000, #000000, #000000);
  604. --ss-white-60: rgba(255,255,255,.6);
  605. --ss-white-90: rgba(255,255,255,.9);
  606. --ss-me-player-bg: rgba(247,149,32,.8);
  607. --ss-them-blue-bg: rgba(0,66,87,.8);
  608. --ss-them-blue-color: #003b75;
  609. --ss-them-red-bg: rgb(133,0,0,.8);
  610. --ss-them-red-color: #ff4145
  611. --ss-me-red-bg: rgba(255,65,69,.8);
  612. --ss-me-blue-bg: rgb(94,187,217,.8);
  613. }
  614. </style>`
  615. }
  616. document.body ? addScript() : document.addEventListener("DOMContentLoaded", e => addScript());
  617. })();