Kour.io- Speed Hack (LC MOD MENU)

x2 hack kour.io

  1. // ==UserScript==
  2. // @name Kour.io- Speed Hack (LC MOD MENU)
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description x2 hack kour.io
  6. // @author LC|K
  7. // @match *://*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Função para alterar a multiplicação do tempo
  15. function speeeed(multiplier) {
  16. function apply(target, thisArg, argArray) {
  17. try {
  18. throw new Error();
  19. } catch (e) {
  20. if (!e.stack.includes("invoke_")) {
  21. return target.apply(thisArg, argArray) * multiplier;
  22. }
  23. }
  24.  
  25. return target.apply(thisArg, argArray);
  26. }
  27.  
  28. // Substitui a função performance.now() com o Proxy
  29. performance.now = new Proxy(performance.now, {apply});
  30.  
  31. // Mensagem estilizada no console
  32. console.log("%cLC|K MOD MENU", "font-size: 24px; color: #ffffff; background-color: #007bff; padding: 10px 15px; border-radius: 8px; font-weight: bold; box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3); text-align: center;");
  33. }
  34.  
  35. // Verifica se está no site kour.io
  36. if (window.location.hostname === 'kour.io') {
  37.  
  38. // Cria a mensagem na tela
  39. const message = document.createElement('div');
  40. message.textContent = 'LC|K MOD MENU';
  41. message.style.position = 'fixed';
  42. message.style.top = '20px';
  43. message.style.right = '20px';
  44. message.style.padding = '10px 20px';
  45. message.style.backgroundColor = '#007bff';
  46. message.style.color = '#ffffff';
  47. message.style.fontSize = '18px';
  48. message.style.fontWeight = 'bold';
  49. message.style.borderRadius = '8px';
  50. message.style.boxShadow = '0 4px 10px rgba(0, 0, 0, 0.3)';
  51. message.style.zIndex = '9999';
  52. message.style.textAlign = 'center';
  53. message.style.display = 'inline-block';
  54.  
  55. // Adiciona o elemento à página
  56. document.body.appendChild(message);
  57.  
  58. // Chama a função com o multiplicador 2
  59. speeeed(2);
  60. }
  61.  
  62. })();