Powerline.io mods

Change your stats(kills,and score) (use keys 1, 2, 3, and 4), once refreshed scores no longer apply/show.

当前为 2020-10-07 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Powerline.io mods
  3. // @namespace http://tampermonkey.net/
  4. // @version 6.0
  5. // @description Change your stats(kills,and score) (use keys 1, 2, 3, and 4), once refreshed scores no longer apply/show.
  6. // @author shed_modz_
  7. // @match powerline.io
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11.  
  12. //stat=top
  13. //stat-time
  14.  
  15. //press 1 to use the mods
  16. //|===================================================================================|
  17. //| Updates (VERSION 7.0 being made) |
  18. //| -made mod |
  19. //| -updated mod |
  20. //| -patch update |
  21. //| -mega mod update includes, new hot keys(read desc), |
  22. //| -patch hot KEYS |
  23. //| -patch hot KEYS |
  24. //| -new hot KEYS |
  25. //====================================================================================|
  26.  
  27. ////////////////////////////////////////////////////
  28. ///////Hot keys are 1, 2, and 3 ///////////////////
  29. //////////////////////////////////////////////////
  30.  
  31. window.addEventListener("keydown", mod, false);
  32. //score mods
  33. //kd mods
  34.  
  35. function mod (i){
  36.  
  37. if (i.keyCode == "49") {
  38. var a = window.prompt("How much score do you want?");
  39. document.getElementById("stat-length").innerHTML = a;
  40. }
  41. if (i.keyCode == "50") {
  42. var b = window.prompt("How many kills do you want?");
  43. document.getElementById("stat-ks").innerHTML = b;
  44. }
  45. if (i.keyCode == "51") {
  46. var c = window.prompt("What do you wnat to set your best score to?");
  47. document.getElementById("stat-blength").innerHTML = c;
  48. }
  49. if (i.keyCode == "52") {
  50. var d = window.prompt("What do you want you best kills to be?");
  51. document.getElementById("stat-bks").innerHTML = d;
  52. }
  53. }
  54. document.getElementById("topGuiConnecting").innerHTML = "Finding non scripted server(this may take 2 minutes)";
  55. document.getElementById("firstRightBox").innerHTML = "Made by shed_Modz";
  56. document.getElementsByClassName("basic-text2").innerHTML = "Please you this just as a troll. Go in a game and die. Then before you spawn press 1,2,3, or four. Then enter the value and be amazed.";
  57. document.getElementById("mainDialog").innerHTML.src = "arrow.png";