Surviv Health Mod

Shows you the health number, that's all...

  1. // ==UserScript==
  2. // @name Surviv Health Mod
  3. // @namespace https://github.com/Michal2SAB
  4. // @version 1.0
  5. // @description Shows you the health number, that's all...
  6. // @author Michal2SAB
  7. // @match *://surviv.io/*
  8. // @match *://surviv2.io/*
  9. // @match *://2dbattleroyale.com/*
  10. // @match *://2dbattleroyale.org/*
  11. // @match *://piearesquared.info/*
  12. // @match *://thecircleisclosing.com/*
  13. // @match *://archimedesofsyracuse.info/*
  14. // @match *://secantsecant.com/*
  15. // @match *://parmainitiative.com/*
  16. // @match *://nevelskoygroup.com/*
  17. // @match *://kugahi.com/*
  18. // @match *://chandlertallowmd.com/*
  19. // @match *://ot38.club/*
  20. // @match *://kugaheavyindustry.com/*
  21. // @match *://drchandlertallow.com/*
  22. // @match *://rarepotato.com/*
  23. // @grant none
  24. // @require http://code.jquery.com/jquery-3.4.1.min.js
  25. // ==/UserScript==
  26.  
  27. (function() {
  28. 'use strict';
  29. var lastHP = 0
  30. var health = $("<span></span>")
  31. health.css({
  32. display: "block",
  33. position: "fixed",
  34. "z-index": "2",
  35. margin: "6px 0 0 0",
  36. right: "12px",
  37. color: "blue",
  38. "font-weight": "bold",
  39. "font-size": "large",
  40. })
  41. $("#ui-health-container").append(health)
  42.  
  43. setInterval(function(){
  44. var hp = Math.round(document.getElementById("ui-health-actual").style.width.slice(0,-1))
  45. if(lastHP !== hp){
  46. lastHP = hp
  47. health.html(Math.ceil(hp))
  48. }
  49. })
  50. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址