Custom Mods for Kirka

3/3/2025, 8:54:35 PM

  1. // ==UserScript==
  2. // @name Custom Mods for Kirka
  3. // @namespace Violentmonkey Scripts
  4. // @match https://kirka.io/*
  5. // @grant none
  6. // @version 1.0
  7. // @author Dami
  8. // @description 3/3/2025, 8:54:35 PM
  9. // ==/UserScript==
  10. // ==UserScript==
  11. // @name Mods for Kirka
  12. // @namespace http://tampermonkey.net/
  13. // @version 1.0
  14. // @description Click X/x to toggle fire rate, B/b to toggle AutoDodge, K/k to toggle AutoWalk, G/g to toggle AutoJump, N/n to toggle KillAura/AutoShoot, L/l to toggle AutoCrouch, M/m to toggle AutoSwitch
  15. // @author Cqmbo__
  16. // @match https://kirka.io/
  17. // @match https://kirka.io/games
  18. // @icon https://yt3.ggpht.com/ofXbHpiwGc4bYnwwljjZJo53E7JRODr-SG32NPV1W6QiUnGUtVAYDwTP2NMz2pUPGnt99Juh5w=s88-c-k-c0x00ffffff-no-rj
  19. // @license MIT
  20. // @grant none
  21. // ==/UserScript==
  22.  
  23. let fireRateEnabled = false;
  24. let autoDodgeEnabled = false;
  25. let autoDodgeInterval;
  26. let isAutoWalking = false;
  27. let isAutoDashing = false;
  28. let isKillauaActive = false;
  29. let autoJumpEnabled = false;
  30. let autoJumpInterval;
  31. let isAutoCrouching = false;
  32. let autoCrouchInterval;
  33. let autoSwitchEnabled = false;
  34. let autoSwitchInterval;
  35. let fireRateValue = 2123;
  36. let autoJumpIntervalValue = 100;
  37. let autoDashInterval;
  38. let autoSwitchIntervalValue = 50;
  39.  
  40. // Store original Date.now and performance.now functions
  41. const originalDateNow = Date.now;
  42. const originalPerformanceNow = performance.now;
  43. // Automatically enable the speed hack
  44. performance.now = () => originalPerformanceNow.call(performance) * 1.10;
  45. console.log("Speed increase enabled");
  46.  
  47. function toggleFireRate() {
  48. fireRateEnabled = !fireRateEnabled;
  49. if (fireRateEnabled) {
  50. // Increase the Date.now function rate
  51. Date.now = () => originalDateNow() * (fireRateValue);
  52. console.log("Gun fire rate increase enabled");
  53. } else {
  54. // Restore original Date.now function
  55. Date.now = originalDateNow;
  56. console.log("Gun fire rate increase disabled");
  57. }
  58. updateInfoDisplay();
  59. }
  60. // ==UserScript==
  61. // @name Kirka Wallhack 2025
  62. // @author Kirka Central
  63. // @match *://kirka.io/*
  64. // @version 1.0.3
  65. // @description Free Working Kirka Wallhack 2025
  66. // @run-at document-start
  67. // @namespace KirkaCentral
  68. // ==/UserScript==
  69.  
  70. Array.isArray = new Proxy(Array.isArray, {
  71. apply(obj, context, args) {
  72. const material = args[0];
  73. if (material?.map?.image && material.map.image.width === 64 && material.map.image.height === 64) {
  74. for (let materialKey in material) {
  75. if (material[materialKey] === 3) {
  76. material[materialKey] = 1;
  77. break;
  78. }
  79. }
  80. }
  81. return Reflect.apply(obj, context, args);
  82. }
  83. })