Kirka.io Name and Level Changer

Menu and In game Lvl And Username/Level Changer

当前为 2023-08-20 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Kirka.io Name and Level Changer
  3. // @namespace https://discord.gg/4T6HGWTBd7
  4. // @version 3.0
  5. // @description Menu and In game Lvl And Username/Level Changer
  6. // @author Jaguar
  7. // @match https://kirka.io/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=kirka.io
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12. //----------------------------------------------
  13. // Discord: https://discord.gg/4T6HGWTBd7 //
  14. //----------------------------------------------
  15. var Username = "Custom_Username_Here";
  16. var ClanTag = "Custom_ClanTag_Here"
  17. var Level = "Custom_Level_Here";
  18.  
  19. function Update() {
  20. var lb = document.querySelector('.nickname.text-2.primary'); if (lb) lb.textContent = Username;
  21. var lb2 = document.querySelector('div[data-v-52b18b80].nickname.text-2.primary'); if (lb2) lb2.textContent = Username;
  22. document.querySelector('.nickname').textContent = Username;
  23. document.querySelector('.levels').textContent = Level;
  24. document.querySelector('.clan-tag').textContent = ClanTag;
  25. document.querySelector('.level-value').textContent = Level;
  26. }
  27. setInterval(Update, 100);