Godmod visuals

dMN - UI Geliştirmesi: Combat'e Auto Push, yeni ayarlar (spike hesaplama süresi, hız, mod), AutoMill (Shift+M ile tetiklenecek) ve Misc içinde Visuals (Night Mode, Spike Ayarları, Blur) eklendi.

  1. // ==UserScript==
  2. // @name Godmod visuals
  3. // @namespace https://omgy.dev
  4. // @uthor OMGY and HaxBountyHunter
  5. // @version v1.2
  6. // @license MIT
  7. // @description dMN - UI Geliştirmesi: Combat'e Auto Push, yeni ayarlar (spike hesaplama süresi, hız, mod), AutoMill (Shift+M ile tetiklenecek) ve Misc içinde Visuals (Night Mode, Spike Ayarları, Blur) eklendi.
  8. // @match *://*.moomoo.io/*
  9. // @match *://dev.moomoo.io/*
  10. // @match *://sandbox.moomoo.io/*
  11. // @grant none
  12. // ==/UserScript==
  13. (function () {
  14. 'use strict';
  15.  
  16. console.log("Purple and Gold Visuals Loaded");
  17.  
  18. // Apply custom background to the main menu
  19. const mainMenu = document.getElementById("mainMenu");
  20. if (mainMenu) {
  21. mainMenu.style.backgroundImage = "url('file:///C:/Users/cgranger9/Downloads/God%20Mod.png')";
  22. mainMenu.style.backgroundRepeat = "repeat";
  23. mainMenu.style.backgroundSize = "contain";
  24. console.log("Custom main menu background applied.");
  25. }
  26.  
  27. // Custom colors for loading text (purple filling with gold outline)
  28. const loadingText = document.getElementById("loadingText");
  29. if (loadingText) {
  30. loadingText.style.color = "#800080"; // Purple
  31. loadingText.style.textShadow = "#FFD700 -2px -2px 10px, #FFD700 0px -5px 1px, #FFD700 0px -5px 10px"; // Gold shadow
  32. console.log("Custom loading text applied.");
  33. }
  34.  
  35. // Game name styling (Updated to "Hax Legit")
  36. const gameNameElement = document.getElementById("gameName");
  37. if (gameNameElement) {
  38. gameNameElement.textContent = "God Mod"; // Updated game name
  39. gameNameElement.style.backgroundImage = "linear-gradient(to right, #800080, #FFD700)"; // Purple to Gold gradient
  40. gameNameElement.style.WebkitBackgroundClip = "text";
  41. gameNameElement.style.color = "transparent";
  42. gameNameElement.style.textShadow = "0 0 2px #800080, 0 0 5px #FFD700"; // Purple to Gold shadow
  43. gameNameElement.style.webkitTextFillColor = "transparent";
  44. gameNameElement.style.webkitTextStroke = "1px #FFD700"; // Gold outline
  45. console.log("Game name updated to 'God Mod' with purple and gold styling.");
  46. }
  47.  
  48. // Custom player skin colors (purple filling with gold outline)
  49. const config = window.config || {};
  50. config.skinColors = [
  51. "#800080", "#800080", "#800080", // Purple skin
  52. "#FFD700", "#FFD700", "#FFD700", // Gold skin
  53. "#800080", "#FFD700", "#800080", // Alternating purple and gold
  54. "#FFD700", "#800080", "#FFD700" // Alternating purple and gold
  55. ];
  56. console.log("Custom player skin colors (purple and gold) applied.");
  57.  
  58. // Set custom CSS for UI elements
  59. const style = document.createElement("style");
  60. style.innerHTML = `
  61. #gameUI .joinAlBtn, a {
  62. animation: 5s infinite linear both normal rainbow;
  63. }
  64.  
  65. @keyframes rainbow {
  66. 0% { filter: hue-rotate(0deg); }
  67. 100% { filter: hue-rotate(360deg); }
  68. }
  69.  
  70. .menuCard {
  71. background-color: rgba(128, 0, 128, 0.25); /* Purple background */
  72. border-radius: 4px;
  73. border: 3px solid #FFD700; /* Gold border */
  74. padding: 20px;
  75. color: white;
  76. font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  77. }
  78.  
  79. .menuB {
  80. text-align: center;
  81. background-color: rgba(128, 0, 128, 0.55); /* Purple background */
  82. color: #FFD700; /* Gold text */
  83. border: none;
  84. border-radius: 4px;
  85. padding: 4px 4px;
  86. cursor: pointer;
  87. transition: 0.3s ease;
  88. }
  89.  
  90. .menuB:hover {
  91. background-color: #FFD700; /* Gold on hover */
  92. color: #800080; /* Purple text */
  93. }
  94.  
  95. .menuB:active {
  96. transform: translateY(1px);
  97. }
  98.  
  99. .loader {
  100. position: absolute;
  101. top: 50%;
  102. left: 50%;
  103. border: 16px solid #800080; /* Purple border */
  104. border-radius: 50%;
  105. border-top: 16px solid #FFD700; /* Gold spinner */
  106. width: 60px;
  107. height: 60px;
  108. animation: spin 0.5s linear infinite;
  109. }
  110.  
  111. @keyframes spin {
  112. 0% { transform: rotate(0deg); }
  113. 100% { transform: rotate(360deg); }
  114. }
  115. `;
  116. document.head.appendChild(style);
  117. console.log("Custom UI styles (purple and gold) applied.");
  118. })();