DEEP SPACE

this is cool

当前为 2024-03-09 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name DEEP SPACE
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description this is cool
  6. // @author GEORGECR
  7. // @match https://bloxd.io/
  8. // @icon https://i.postimg.cc/NMG91FWH/space-BG-loco.jpg
  9. // @license MIT
  10. // @supportURL https://github.com/damirarh/GreasyForkScripts
  11. // @match https://www.trueachievements.com/game/*/achievements*
  12. // @grant none
  13. // ==/UserScript==
  14.  
  15. setInterval(function() {
  16. 'use strict';
  17. document.title = "DEEP SPACE";
  18. const maintext = document.querySelector('.Title.FullyFancyText');
  19. maintext.style.fontFamily = {
  20. "name": "Montserrat",
  21. "weight": "400",
  22. "style": "normal",
  23. "source": "Fonts/Montserrat/Montserrat-Regular.ttf"
  24. };
  25. maintext.style.textShadow = " 10px 5px 5px #000000";
  26. maintext.style.webkitTextStroke = "none";
  27.  
  28.  
  29.  
  30.  
  31. document.querySelector('.Title.FullyFancyText').textContent = "DEEP SPACE";
  32. document.querySelector('.Title.FullyFancyText').style.backgroundImage = "https://piskel-imgstore-b.appspot.com/img/68888566-cce3-11ee-a3cd-35b2269c1bce.gif";
  33. let background = document.getElementsByClassName("Background");
  34. background[0].src = "https://i.postimg.cc/0yTx0G0L/client-BG.jpg";
  35. let names = document.getElementsByClassName("AvailableGameText");
  36. let imgs = document.getElementsByClassName("AvailableGameImg")
  37. let imgedits = document.getElementsByClassName("AvailableGame");
  38.  
  39.  
  40.  
  41.  
  42. setInterval(function() {
  43. const crosshair = document.querySelector(".CrossHair");
  44. if (crosshair) {
  45. crosshair.textContent = "";
  46. crosshair.style.backgroundImage = "url(https://piskel-imgstore-b.appspot.com/img/68888566-cce3-11ee-a3cd-35b2269c1bce.gif)";
  47. crosshair.style.backgroundRepeat = "no-repeat";
  48. crosshair.style.backgroundSize = "contain";
  49. crosshair.style.width = "25px";
  50. crosshair.style.height = "25px";
  51. }
  52. }, 1000);
  53.  
  54.  
  55.  
  56. // Hotbar
  57. (function() {
  58. 'use strict';
  59.  
  60. setInterval(function() {
  61. const hotbarslots = document.querySelectorAll(".item");
  62. const selectedslot = document.querySelectorAll(".SelectedItem");
  63. if (hotbarslots) {
  64. hotbarslots.forEach(function(hotbar) {
  65. hotbar.style.borderRadius = "8px";
  66. hotbar.style.borderColor = "#000000";
  67. hotbar.style.backgroundColor = "transparent";
  68. hotbar.style.boxShadow = "none"
  69. hotbar.style.outline = "transparent"
  70. });
  71. }
  72. if (selectedslot) {
  73. selectedslot.forEach(function(slot) {
  74. slot.style.backgroundColor = "transparent";
  75. slot.style.boxShadow = "none";
  76. slot.style.borderRadius = "15px";
  77. slot.style.borderColor = "#FFFFFF";
  78. slot.style.outline = "transparent";
  79. });
  80. }
  81. }, 1);
  82. })();
  83. });