Greasy Fork is available in English.

Starve.io Map

try to take over the world!

  1. // ==UserScript==
  2. // @name Starve.io Map
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.0.5
  5. // @description try to take over the world!
  6. // @author Helpy
  7. // @match *://starve.io/*
  8. // @grant none
  9. // @include http://stackoverflow.com/*
  10. // @require https://code.jquery.com/jquery-3.4.1.min.js
  11.  
  12.  
  13. // ==/UserScript==
  14.  
  15. var version = ("=-Starve.io-=");
  16.  
  17.  
  18.  
  19. function pretty_time_string(num) {
  20. return ( num < 10 ? "0" : "" ) + num;
  21. }
  22.  
  23.  
  24. jQuery(document).ready(function(){
  25. document.title = ('' + " " + version);
  26. jQuery("a[href='https://iogames.space']").hide();
  27.  
  28. jQuery('#nickname_input').css({"color": "","font-size":"24","background-color":""});
  29. jQuery('#chat_input').css({"color": "","font-size":"20","background-color":""});
  30. jQuery('#game_canvas').css("image-rendering","initial");
  31. jQuery('#trevda').css("visibility","hidden");
  32. jQuery("#loading").css({"background-color": "","color":""});
  33. jQuery("body").on("contextmenu",function(e){
  34. return false;
  35. });
  36.  
  37. jQuery("body").append ('<img draggable="false" id="myNewImage" border="0" src="https://cdn.discordapp.com/attachments/691584212288929854/692082785493712926/mapv2.png">')
  38. jQuery("body").append ('<p id="hrs"></p>')
  39. jQuery('body').append('<p id="ratata"></p>');
  40. jQuery('body').append('<p id="author"><a target="_blank" href=""></a></p>');
  41.  
  42. jQuery("#author").animate({right: '55px'}).css({
  43. cursor: "url(http://starve.io/img/cursor1.png), pointer",
  44. boxSizing: "border-box",
  45. borderRadius: "8px",
  46. backgroundColor: "#9b2a2d",
  47. boxShadow: "0px 5px #5f2a2d",
  48. paddingLeft: "10px",
  49. paddingRight: "10px",
  50. webkitTouchCallout: "none",
  51. webkitUserSelect: "none",
  52. khtmlUserSelect: "none",
  53. mozUserSelect: "none",
  54. msUserSelect: "none",
  55. userSelect: "none",
  56. position: "absolute",
  57. color:"#FFFFFF",
  58. fontFamily:"Baloo Paaji",
  59. position: "absolute",
  60. right:"55px",
  61. bottom:"30px",
  62.  
  63. });
  64.  
  65. jQuery("#myNewImage").animate({right: '10px'}).css({
  66. cursor: "url(http://starve.io/img/cursor0.png), default",
  67. opacity: "90%",
  68. imageRendering: "initial",
  69. webkitTouchCallout: "none",
  70. webkitUserSelect: "none",
  71. khtmlUserSelect: "none",
  72. mozUserSelect: "none",
  73. msUserSelect: "none",
  74. userSelect: "none",
  75. position: "absolute",
  76. right:"10px",
  77. bottom:"130px",
  78. width: "180px",
  79. height: "180px",
  80. });
  81.  
  82. jQuery("#ratata").animate({right: '43px'}).css({
  83. cursor: "url(http://starve.io/img/cursor0.png), default",
  84. boxSizing: "border-box",
  85. borderRadius: "8px",
  86. backgroundColor: "#9e4e12",
  87. boxShadow: "0px 5px #593109",
  88. paddingLeft: "10px",
  89. paddingRight: "10px",
  90. webkitTouchCallout: "none",
  91. webkitUserSelect: "none",
  92. khtmlUserSelect: "none",
  93. mozUserSelect: "none",
  94. msUserSelect: "none",
  95. userSelect: "none",
  96. position: "absolute",
  97. color:"#FFFFFF",
  98. fontFamily:"Arial Black",
  99. position: "absolute",
  100. right:"45px",
  101. bottom:"80px",
  102.  
  103. });
  104. });