Sleazy Fork is available in English.

ShellShockers Aimbot [Fixed]

Hey. This is in the making so, idk like don't expect it to work. Make sure you have tampermonkey so that way this works. I fixed this aimbot to make the stuff more cancerus. heres how to use it: Aim at the closest player by pressing Shift, turn it off with left control.

  1. "use strict";
  2.  
  3. // ==UserScript==
  4. // @name ShellShockers Aimbot [Fixed]
  5. // @description Hey. This is in the making so, idk like don't expect it to work. Make sure you have tampermonkey so that way this works. I fixed this aimbot to make the stuff more cancerus. heres how to use it: Aim at the closest player by pressing Shift, turn it off with left control.
  6. // @match https://shellshock.io/
  7. // @match http://www.shellshock.io
  8. // @version 1.5555556
  9. //
  10. // @namespace https://greasyfork.org/en/users/220570-meowffle-cat
  11. // ==/UserScript==
  12.  
  13. var active = true;
  14. var interval = void 0;
  15. var c=1
  16. var gameInput
  17. var player
  18. var target
  19. var gameObjects
  20. var targetChanged
  21.  
  22. function activate(event) {
  23. event.preventDefault();
  24. if (event.keyCode === 16 ) {
  25. c.removeEventListener("mousemove", gameInput, false);
  26. active = true;
  27. interval = setInterval(aimClosestPlayer, 10);
  28. }
  29. }
  30.  
  31. function deactivate(event) {
  32. event.preventDefault();
  33. if (event.keyCode === 17) {
  34. active = false;
  35. clearInterval(interval);
  36. c.addEventListener("mousemove", gameInput, false);
  37. }
  38. }
  39.  
  40. c.addEventListener("keydown", activate, false);
  41. c.addEventListener("keyup", deactivate, false);
  42.  
  43. function getOtherPlayers(gameObjects, myTeam) {
  44. return gameObjects.filter(function (o) {
  45. return o.type === 'player' && o.dead === false && o.name !== player.name && o.team !== myTeam;
  46. });
  47. }
  48.  
  49. function getMyPlayer(gameObjects) {
  50. return gameObjects.filter(function (o) {
  51. return o.name === player.name;
  52. })[0];
  53. }