Hack doomed2.io

By Dimazik123

  1. // ==UserScript==
  2. // @name Hack doomed2.io
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.21
  5. // @description By Dimazik123
  6. // @author You
  7. // @grant GM_setValue
  8. // @grant GM_getValue
  9. // @grant GM_addValue
  10. // @grant GM_addStyle
  11. // @grant GM_getResourceText
  12. // @run-at document-end
  13. // @match *://doomed2.io/*
  14. // ==/UserScript==
  15.  
  16.  
  17.  
  18.  
  19. if(window.location.href == "http://doomed2.io/" || window.location.href == "http://doomed2.io/index.html"){
  20. document.getElementById("banner_div").remove(); // ad
  21. document.getElementById("preroll").remove(); // ad
  22.  
  23. let canvas = document.getElementById("canvas"); // canvas
  24. document.getElementById("input_username").setAttribute('maxlength', 2222222222222); // infinity symbols for input_username
  25.  
  26. const times = [];
  27. let fps;
  28.  
  29. let HackFPS = document.createElement("div"); //FPS counter
  30. HackFPS.style = "position:absolute;top:-8px;right:0px; left:245px;display:none;";
  31. HackFPS.innerHTML = `
  32. <p>FPS = <span id="TakeFPS"></span></p>
  33. `;
  34.  
  35. document.getElementById("console_div").appendChild(HackFPS);// Paste HackFPS
  36.  
  37. function refreshLoop() {
  38. window.requestAnimationFrame(() => {
  39. const now = performance.now();
  40. while (times.length > 0 && times[0] <= now - 1000) {
  41. times.shift();
  42. }
  43. times.push(now);
  44. fps = times.length;
  45. refreshLoop();
  46. document.getElementById("TakeFPS").innerHTML = fps; // paste fps in span
  47. });
  48. }
  49. refreshLoop(); // start fps function
  50.  
  51. //Hack menu
  52.  
  53. let HackMenu = document.createElement("div");
  54. HackMenu.id = "HackMenu";
  55. HackMenu.style = "display: none;";
  56. HackMenu.innerHTML = `
  57. <h3 style="text-align:center;font-size:23px;font-weight: 900;background: linear-gradient(to right,#ff8a00,#da1b60);-webkit-background-clip: text;-webkit-text-fill-color: transparent;">KrityHack v1.2</h3>
  58. <p class="functions" id="ShowFPS">ShowFPS</p>
  59. <p class="functions" id="Cursor">Cursor</p>
  60. <p class="functions" id="HotKeys">HotKeys</p>
  61. <p class="functions" id="ShowMyObjects">ShowMyObjects</p>
  62. <p class="functions" id="KeepMarkersOnDeath">KeepMarkersOnDeath</p>
  63. <p class="functions" id="Tracer">Tracer</p>
  64. <p class="functions" id="Boosters">Boosters</p>
  65. <p class="functions" id="IWantFap">IWantFap</p>
  66. `;
  67.  
  68. document.getElementById("game_page").appendChild(HackMenu);
  69.  
  70. document.getElementById("HotKeys").onclick = function (){
  71. if(this.style.color == ""){
  72. this.style.color = "rgb(255,219,0)";
  73. }
  74. else{
  75. this.style.color = "";
  76. }
  77. };
  78.  
  79. document.getElementById("ShowFPS").onclick = function (){
  80. if(this.style.color == "" || HackFPS.style.display == "none"){
  81. this.style.color = "rgb(255,219,0)";
  82. HackFPS.style.display = "block";
  83. }
  84. else{
  85. this.style.color = "";
  86. HackFPS.style.display = "none";
  87. }
  88. };
  89.  
  90. document.getElementById("Cursor").onclick = function (){
  91. if(this.style.color == ""){
  92. this.style.color = "rgb(255,219,0)";
  93. canvas.style = "cursor:url(https://drive.google.com/u/0/uc?id=1ima7DNPRd88iLBr6dI75BtBKl_lTqFFn&export=download), default;";
  94. }
  95. else{
  96. this.style.color = "";
  97. canvas.style = "cursor:crosshair;";
  98. }
  99. };
  100.  
  101. document.getElementById("HotKeys").onclick = function (){
  102. if(this.style.color == ""){
  103. this.style.color = "rgb(255,219,0)";
  104. }
  105. else{
  106. this.style.color = "";
  107. }
  108. };
  109.  
  110. document.getElementById("KeepMarkersOnDeath").onclick = function (){
  111. if(this.style.color == ""){
  112. this.style.color = "rgb(255,219,0)";
  113. }
  114. else{
  115. this.style.color = "";
  116. }
  117. };
  118.  
  119. document.getElementById("ShowMyObjects").onclick = function (){
  120. if(this.style.color == ""){
  121. this.style.color = "rgb(255,219,0)";
  122. }
  123. else{
  124. this.style.color = "";
  125. }
  126. };
  127.  
  128. document.getElementById("Tracer").onclick = function (){
  129. if(this.style.color == ""){
  130. this.style.color = "rgb(255,219,0)";
  131. }
  132. else{
  133. this.style.color = "";
  134. }
  135. };
  136.  
  137. document.getElementById("Boosters").onclick = function (){
  138. if(this.style.color == ""){
  139. this.style.color = "rgb(255,219,0)";
  140. }
  141. else{
  142. this.style.color = "";
  143. }
  144. };
  145.  
  146. document.getElementById("IWantFap").onclick = function (){
  147. if(this.style.color == ""){
  148. this.style.color = "rgb(255,219,0)";
  149. let inputClan = document.getElementById("input_clan_name");
  150. let createClan = document.getElementById("create_join_clan_button");
  151. let leaveClan = document.getElementById("leave_clan_button");
  152. let valueTry = prompt("Сколько раз повторить дрочку ?", 10);
  153. let valueInterval = prompt("Выберите длительность дрочки в секундах", 0.5);
  154. valueInterval = valueInterval * 1000;
  155.  
  156. if(!null){
  157. for(let i = 0, value = 0;i < valueTry;i++){
  158. value = valueInterval + value;
  159. setTimeout(function(){inputClan.value = "8✊===D";}, value);
  160. setTimeout(function(){createClan.click();}, value);
  161. setTimeout(function(){leaveClan.click();}, value + valueInterval);
  162. value = valueInterval + value;
  163. setTimeout(function(){inputClan.value = "8=✊==D";}, value);
  164. setTimeout(function(){createClan.click();}, value);
  165. setTimeout(function(){leaveClan.click();}, value + valueInterval);
  166. value = valueInterval + value;
  167. setTimeout(function(){inputClan.value = "8==✊=D";}, value);
  168. setTimeout(function(){createClan.click();}, value);
  169. setTimeout(function(){leaveClan.click();}, value + valueInterval);
  170. value = valueInterval + value;
  171. setTimeout(function(){inputClan.value = "8===✊D";}, value);
  172. setTimeout(function(){createClan.click();}, value);
  173. setTimeout(function(){leaveClan.click();}, value + valueInterval);
  174. value = valueInterval + value;
  175. setTimeout(function(){inputClan.value = "8===✊D~~";}, value);
  176. setTimeout(function(){createClan.click();}, value);
  177. setTimeout(function(){leaveClan.click();}, value + valueInterval);
  178. value = valueInterval + value;
  179. setTimeout(function(){inputClan.value = "8===✊D";}, value);
  180. setTimeout(function(){createClan.click();}, value);
  181. setTimeout(function(){leaveClan.click();}, value + valueInterval);
  182. value = valueInterval + value;
  183. setTimeout(function(){inputClan.value = "8==✊=D";}, value);
  184. setTimeout(function(){createClan.click();}, value);
  185. setTimeout(function(){leaveClan.click();}, value + valueInterval);
  186. value = valueInterval + value;
  187. setTimeout(function(){inputClan.value = "8=✊==D";}, value);
  188. setTimeout(function(){createClan.click();}, value);
  189. setTimeout(function(){leaveClan.click();}, value + valueInterval);
  190.  
  191. if(i == valueTry - 1){
  192. setTimeout(function(){document.getElementById("IWantFap").style.color = "";}, value + valueInterval);
  193. }
  194.  
  195. }
  196. }
  197. }
  198. };
  199.  
  200. GM_addStyle(`
  201. #HackMenu{
  202. border-radius:5px;
  203. border:1px solid white;
  204. background-color:rgb(0,0,0,0.5);
  205. position:absolute;
  206. width:200px;
  207. padding:10px 10px 10px 15px;
  208. top:20%;
  209. left:20%;
  210. }
  211. .functions{
  212. font-size:19px;
  213. font-weight:900;
  214. color:rgb(255,219,0,0.2);
  215. padding-left:5px;
  216. border-left:3px solid transparent;
  217. }
  218. .functions:hover{
  219. cursor:pointer;
  220. color:rgb(255,219,0,0.7);
  221. border-left:3px solid red;
  222. }
  223. `);
  224.  
  225. document.getElementById("server_url_menu").style.visibility = "hidden";
  226.  
  227. document.getElementById("server_url_button").onclick = function(){
  228. if(HackMenu.style.display === "none"){
  229. HackMenu.style.display = "block";
  230. }
  231. else{
  232. HackMenu.style.display = "none"
  233. }
  234. };
  235. console.log("Doomed2.io");
  236.  
  237. //Name Hack
  238.  
  239. const abc = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
  240. const letters = ["𝐚𝐛𝐜𝐝𝐞𝐟𝐠𝐡𝐢𝐣𝐤𝐥𝐦𝐧𝐨𝐩𝐪𝐫𝐬𝐭𝐮𝐯𝐰𝐱𝐲𝐳𝐀𝐁𝐂𝐃𝐄𝐅𝐆𝐇𝐈𝐉𝐊𝐋𝐌𝐍𝐎𝐏𝐐𝐑𝐒𝐓𝐔𝐕𝐖𝐗𝐘𝐙","𝘢𝘣𝘤𝘥𝘦𝘧𝘨𝘩𝘪𝘫𝘬𝘭𝘮𝘯𝘰𝘱𝘲𝘳𝘴𝘵𝘶𝘷𝘸𝘹𝘺𝘻𝘈𝘉𝘊𝘋𝘌𝘍𝘎𝘏𝘐𝘑𝘒𝘓𝘔𝘕𝘖𝘗𝘘𝘙𝘚𝘛𝘜𝘝𝘞𝘟𝘠𝘡","𝙖𝙗𝙘𝙙𝙚𝙛𝙜𝙝𝙞𝙟𝙠𝙡𝙢𝙣𝙤𝙥𝙦𝙧𝙨𝙩𝙪𝙫𝙬𝙭𝙮𝙯𝘼𝘽𝘾𝘿𝙀𝙁𝙂𝙃𝙄𝙅𝙆𝙇𝙈𝙉𝙊𝙋𝙌𝙍𝙎𝙏𝙐𝙑𝙒𝙓𝙔𝙕","𝚊𝚋𝚌𝚍𝚎𝚏𝚐𝚑𝚒𝚓𝚔𝚕𝚖𝚗𝚘𝚙𝚚𝚛𝚜𝚝𝚞𝚟𝚠𝚡𝚢𝚣𝙰𝙱𝙲𝙳𝙴𝙵𝙶𝙷𝙸𝙹𝙺𝙻𝙼𝙽𝙾𝙿𝚀𝚁𝚂𝚃𝚄𝚅𝚆𝚇𝚈𝚉","𝔞𝔟𝔠𝔡𝔢𝔣𝔤𝔥𝔦𝔧𝔨𝔩𝔪𝔫𝔬𝔭𝔮𝔯𝔰𝔱𝔲𝔳𝔴𝔵𝔶𝔷𝔄𝔅ℭ𝔇𝔈𝔉𝔊ℌℑ𝔍𝔎𝔏𝔐𝔑𝔒𝔓𝔔ℜ𝔖𝔗𝔘𝔙𝔚𝔛𝔜ℨ","𝖆𝖇𝖈𝖉𝖊𝖋𝖌𝖍𝖎𝖏𝖐𝖑𝖒𝖓𝖔𝖕𝖖𝖗𝖘𝖙𝖚𝖛𝖜𝖝𝖞𝖟𝕬𝕭𝕮𝕯𝕰𝕱𝕲𝕳𝕴𝕵𝕶𝕷𝕸𝕹𝕺𝕻𝕼𝕽𝕾𝕿𝖀𝖁𝖂𝖃𝖄𝖅","𝒶𝒷𝒸𝒹𝑒𝒻𝑔𝒽𝒾𝒿𝓀𝓁𝓂𝓃𝑜𝓅𝓆𝓇𝓈𝓉𝓊𝓋𝓌𝓍𝓎𝓏𝒜𝐵𝒞𝒟𝐸𝐹𝒢𝐻𝐼𝒥𝒦𝐿𝑀𝒩𝒪𝒫𝒬𝑅𝒮𝒯𝒰𝒱𝒲𝒳𝒴𝒵","𝓪𝓫𝓬𝓭𝓮𝓯𝓰𝓱𝓲𝓳𝓴𝓵𝓶𝓷𝓸𝓹𝓺𝓻𝓼𝓽𝓾𝓿𝔀𝔁𝔂𝔃𝓐𝓑𝓒𝓓𝓔𝓕𝓖𝓗𝓘𝓙𝓚𝓛𝓜𝓝𝓞𝓟𝓠𝓡𝓢𝓣𝓤𝓥𝓦𝓧𝓨𝓩","ⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩⒶⒷⒸⒹⒺⒻⒼⒽⒾⒿⓀⓁⓂⓃⓄⓅⓆⓇⓈⓉⓊⓋⓌⓍⓎⓏ","🅐🅑🅒🅓🅔🅕🅖🅗🅘🅙🅚🅛🅜🅝🅞🅟🅠🅡🅢🅣🅤🅥🅦🅧🅨🅩🅐🅑🅒🅓🅔🅕🅖🅗🅘🅙🅚🅛🅜🅝🅞🅟🅠🅡🅢🅣🅤🅥🅦🅧🅨🅩","𝕒𝕓𝕔𝕕𝕖𝕗𝕘𝕙𝕚𝕛𝕜𝕝𝕞𝕟𝕠𝕡𝕢𝕣𝕤𝕥𝕦𝕧𝕨𝕩𝕪𝕫𝔸𝔹ℂ𝔻𝔼𝔽𝔾ℍ𝕀𝕁𝕂𝕃𝕄ℕ𝕆ℙℚℝ𝕊𝕋𝕌𝕍𝕎𝕏𝕐ℤ","abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ","ᴀʙᴄᴅᴇғɢʜɪᴊᴋʟᴍɴᴏᴘǫʀsᴛᴜᴠᴡxʏᴢᴀʙᴄᴅᴇғɢʜɪᴊᴋʟᴍɴᴏᴘǫʀsᴛᴜᴠᴡxʏᴢ","ᗩᗷᑕᗪEᖴGᕼIᒍKᒪᗰᑎOᑭᑫᖇᔕTᑌᐯᗯ᙭YᘔᗩᗷᑕᗪEᖴGᕼIᒍKᒪᗰᑎOᑭᑫᖇᔕTᑌᐯᗯ᙭Yᘔ","αв¢∂єfgнιנкℓмиσρqяѕтυνωχуzαв¢∂єfgнιנкℓмиσρqяѕтυνωχуz","αвcdeғɢнιjĸlмɴopqrѕтυvwхyzαвcdeғɢнιjĸlмɴopqrѕтυvwхyz","αвcdєfghíjklmnσpqrstuvwхчzαвcdєfghíjklmnσpqrstuvwхчz","卂乃匚ᗪ乇千Ꮆ卄丨フҜㄥ爪几ㄖ卩Ɋ尺丂ㄒㄩᐯ山乂ㄚ乙卂乃匚ᗪ乇千Ꮆ卄丨フҜㄥ爪几ㄖ卩Ɋ尺丂ㄒㄩᐯ山乂ㄚ乙"
  241. ];
  242. const styles = [
  243. "Default (Name Font)","𝐁𝐨𝐥𝐝","𝘐𝘵𝘢𝘭𝘪𝘤","𝘽𝙤𝙡𝙙+𝙄𝙩𝙖𝙡𝙞𝙘","𝙼𝚘𝚗𝚘𝚜𝚙𝚊𝚌𝚎","𝔉𝔯𝔞𝔨𝔱𝔲𝔯","𝕭𝖔𝖑𝖉+𝕱𝖗𝖆𝖐𝖙𝖚𝖗","𝐻𝒶𝓃𝒹","𝓑𝓸𝓵𝓭+𝓗𝓪𝓷𝓭","Ⓑⓤⓑⓑⓛⓔⓢ","🅑🅛🅐🅒🅚 🅑🅤🅑🅑🅛🅔🅢","𝔻𝕠𝕦𝕓𝕝𝕖","Thin","sᴍᴀʟʟ ᴄᴀᴘs","ᔕᑭEᑕIᗩᒪ","αитяσρвια","ѕмooтнer","pαrαnσrmαl","千卂几匚ㄚ"
  244. ];
  245.  
  246.  
  247. (function (){
  248. var styleSelect = document.createElement("select");
  249. styleSelect.style.backgroundColor = "#1a1a1a";
  250. styleSelect.style.color = "white";
  251. styleSelect.style.marginTop = "3px";
  252. styleSelect.style.width = "300px";
  253. styleSelect.id = "fontselecter";
  254. for (var k = 0; k < styles.length; k++) {
  255. var option = document.createElement("option");
  256. option.text = styles[k];
  257. styleSelect.add(option);
  258. }
  259.  
  260. //document.querySelector("body > div:nth-child(3) > div:nth-child(5) > div:nth-child(2)").appendChild(styleSelect);
  261. document.querySelector("#social_icon_div > div:nth-child(2)").appendChild(styleSelect);
  262. document.querySelector("#fontselecter option").style.width = "300px";
  263.  
  264. styleSelect.selectedIndex = GM_getValue("style");
  265. styleSelect.onchange = function () {
  266. GM_setValue("style", styleSelect.selectedIndex);
  267. };
  268.  
  269. var chatInput = document.getElementById("input_username");
  270. chatInput.onkeyup = function () {
  271. if (
  272. ((styleSelect.selectedIndex !== 0) & !chatInput.value.startsWith("/")) |
  273. chatInput.value.startsWith("/p ")
  274. ) {
  275. var fancyText = chatInput.value.startsWith("/p ")
  276. ? chatInput.value.substr(3)
  277. : chatInput.value;
  278. for (var k = 0; k < 52; k++) {
  279. var regex = new RegExp(abc[k], "g");
  280. fancyText = fancyText.replace(
  281. regex,
  282. Array.from(letters[styleSelect.selectedIndex - 1])[k]
  283. );
  284. }
  285. chatInput.value = chatInput.value.startsWith("/p ")
  286. ? "/p " + fancyText
  287. : fancyText;
  288. }
  289. };
  290. }());
  291.  
  292.  
  293. let AAAAAAAAAAAAAAAAAAAA = true;
  294. document.getElementById("connect_button").onclick = setTimeout(function (){
  295. if(AAAAAAAAAAAAAAAAAAAA){
  296. AAAAAAAAAAAAAAAAAAAA = false;
  297. (function chatSymbolsHack(){
  298. var styleSelect = document.createElement("select");
  299. styleSelect.style = "z-index:999999999;position: absolute;cursor: pointer;left: 84px;top: 37px;color: white;width: 300px";
  300. styleSelect.style.backgroundColor = "#1a1a1a";
  301. styleSelect.id = "fontselecter1";
  302. for (var k = 0; k < styles.length; k++) {
  303. var option = document.createElement("option");
  304. option.text = styles[k];
  305. styleSelect.add(option);
  306. }
  307.  
  308. //document.querySelector("body > div:nth-child(3) > div:nth-child(5) > div:nth-child(2)").appendChild(styleSelect);
  309. document.querySelector("#game_page > div").appendChild(styleSelect);
  310. document.querySelector("#fontselecter1 option").style.width = "300px";
  311.  
  312. styleSelect.selectedIndex = GM_getValue("style");
  313. styleSelect.onchange = function () {
  314. GM_setValue("style", styleSelect.selectedIndex);
  315. };
  316.  
  317. var chatInput = document.getElementById("console_text_input");
  318. chatInput.onkeyup = function () {
  319. if (
  320. ((styleSelect.selectedIndex !== 0) & !chatInput.value.startsWith("/")) |
  321. chatInput.value.startsWith("/p ")
  322. ) {
  323. var fancyText = chatInput.value.startsWith("/p ")
  324. ? chatInput.value.substr(3)
  325. : chatInput.value;
  326. for (var k = 0; k < 52; k++) {
  327. var regex = new RegExp(abc[k], "g");
  328. fancyText = fancyText.replace(
  329. regex,
  330. Array.from(letters[styleSelect.selectedIndex - 1])[k]
  331. );
  332. }
  333. chatInput.value = chatInput.value.startsWith("/p ")
  334. ? "/p " + fancyText
  335. : fancyText;
  336. }
  337. };
  338. }());
  339.  
  340. (function clanSymbolsHack(){
  341. var styleSelect = document.createElement("select");
  342. styleSelect.style.backgroundColor = "#1a1a1a";
  343. styleSelect.style.color = "white";
  344. styleSelect.style.marginTop = "3px";
  345. styleSelect.style.width = "300px";
  346. styleSelect.id = "fontselecter2";
  347. for (var k = 0; k < styles.length; k++) {
  348. var option = document.createElement("option");
  349. option.text = styles[k];
  350. styleSelect.add(option);
  351. }
  352.  
  353. //document.querySelector("body > div:nth-child(3) > div:nth-child(5) > div:nth-child(2)").appendChild(styleSelect);
  354. document.querySelector("#clan_menu").appendChild(styleSelect);
  355. document.querySelector("#fontselecter2 option").style.width = "300px";
  356.  
  357. styleSelect.selectedIndex = GM_getValue("style");
  358. styleSelect.onchange = function () {
  359. GM_setValue("style", styleSelect.selectedIndex);
  360. };
  361.  
  362. var chatInput = document.getElementById("input_clan_name");
  363. chatInput.onkeyup = function () {
  364. if (
  365. ((styleSelect.selectedIndex !== 0) & !chatInput.value.startsWith("/")) |
  366. chatInput.value.startsWith("/p ")
  367. ) {
  368. var fancyText = chatInput.value.startsWith("/p ")
  369. ? chatInput.value.substr(3)
  370. : chatInput.value;
  371. for (var k = 0; k < 52; k++) {
  372. var regex = new RegExp(abc[k], "g");
  373. fancyText = fancyText.replace(
  374. regex,
  375. Array.from(letters[styleSelect.selectedIndex - 1])[k]
  376. );
  377. }
  378. chatInput.value = chatInput.value.startsWith("/p ")
  379. ? "/p " + fancyText
  380. : fancyText;
  381. }
  382. };
  383.  
  384. })();
  385. }
  386. },2000);
  387.  
  388. //Name Hack
  389.  
  390. //Default settings
  391.  
  392. let FPS_COUNTER = true;
  393. let CURSOR = true;
  394.  
  395. document.getElementById("connect_button").onclick = function (){
  396. if(FPS_COUNTER){
  397. HackFPS.style.display = "block";
  398. document.getElementById("ShowFPS").style.color = "rgb(255,219,0)";
  399. }
  400. if(CURSOR){
  401. setTimeout(() => {
  402. document.getElementById("Cursor").style.color = "rgb(255,219,0)";
  403. canvas.style = "cursor:url(https://drive.google.com/u/0/uc?id=1ima7DNPRd88iLBr6dI75BtBKl_lTqFFn&export=download), default;";
  404. },2000);
  405. }
  406. };
  407. //Default settings
  408.  
  409. }else if(window.location.href == "http://doomed2.io/leaderboard.html"){
  410. document.querySelector("body > div").style = "max-width:1300px; margin:0 auto;text-align:center;left:0;right:0";
  411. document.querySelector("body > div > div > div:nth-child(2)").style = "text-align:center;margin:10px 0";
  412. document.querySelector("body > div > div > div:nth-child(3)").style = "text-align:center;margin:10px 0";
  413.  
  414. let aTop25 = document.createElement("a");
  415. aTop25.innerText = "Top 25 players of Doomed2.io";
  416. aTop25.href = "https://krityteam.github.io/Doomed2-LeaderBoard/";
  417. aTop25.style = "font-size:20px;font-weight:700;font-family:inherit;margin:15px auto;display:block;border-radius:10px;text-decoration:none;width: 800px;height:auto;overflow:hidden;background-color:#cf0e0e;color:white;padding: 10px;";
  418. aTop25.target = "_blank";
  419.  
  420. document.querySelector("body > div > div > div:nth-child(3)").appendChild(aTop25);
  421.  
  422. console.log("LeaderBoard of Doomed2.io");
  423. }
  424.  
  425. setTimeout(function HackActivated(){
  426. console.log("Doomed2.io HACK ACTIVATED"); // Send in console message
  427. console.log("Doomed2.io HACK ACTIVATED"); // Send in console message
  428. console.log("Doomed2.io HACK ACTIVATED"); // Send in console message
  429. console.log("By Dimazik123"); // Send in console message
  430. },6000);