Idle-Pixel Teams Storage Manager

Library for parsing teams storage data.

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.gf.qytechs.cn/scripts/501360/1416703/Idle-Pixel%20Teams%20Storage%20Manager.js

  1. // ==UserScript==
  2. // @name Idle-Pixel Teams Storage Manager
  3. // @namespace luxferre.dev
  4. // @version 1.3.0
  5. // @description Library for parsing teams storage data.
  6. // @author Lux-Ferre
  7. // @license MIT
  8. // @match *://idle-pixel.com/login/play*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. if(window.TStore) {
  14. // already loaded
  15. return;
  16. }
  17.  
  18. class TeamStore extends IdlePixelPlusPlugin {
  19. constructor() {
  20. super("teamstore", {
  21. about: {
  22. name: GM_info.script.name,
  23. version: GM_info.script.version,
  24. author: GM_info.script.author,
  25. description: GM_info.script.description
  26. }
  27. })
  28. this.store = {}
  29. this.item_list = []
  30. this.category_map = {}
  31. this.categories = {
  32. "brewing": [],
  33. "mining": [],
  34. "crafting": [],
  35. "farming": [],
  36. "gathering": [],
  37. "woodcutting": [],
  38. "cooking": [],
  39. "fishing": [],
  40. "combat": [],
  41. "invention": [],
  42. "chests": [],
  43. "other": []
  44. }
  45. }
  46. onLogin(){
  47. if (window.var_team_name == null){
  48. delete IdlePixelPlus.plugins.teamstore
  49. return
  50. }
  51. this.spawn_observer()
  52. Modals.clicksAddItemTeamStorage()
  53. IdlePixelPlus.sendMessage("TEAM_REFRESH_STORAGE")
  54. }
  55. onMessageReceived(message) {
  56. if(TStore.item_list.length === 0 && message.startsWith("TEAMS_TRADABLES_MODAL")){
  57. TStore.item_list = message.split("=")[1].split("~")
  58. TStore.create_categories()
  59. }
  60. if(message.startsWith("TEAMS_STORAGE_DATA")){
  61. this.parse_and_update(message.split("=")[1])
  62. }
  63. }
  64. spawn_observer(){
  65. const targetNode = document.getElementById("modal-teamstorage-select-item")
  66.  
  67. const config = { attributes: true, childList: true, subtree: true }
  68. const callback = function(mutationsList, observer) {
  69. $("#modal-teamstorage-select-item").modal("hide")
  70. observer.disconnect()
  71. }
  72. const observer = new MutationObserver(callback);
  73. observer.observe(targetNode, config);
  74. }
  75. parse_and_update(storage_string){
  76. TStore.store = {}
  77. const data_array = storage_string.split("~")
  78. for (let i = 0; i<data_array.length - 1; i+=2) {
  79. TStore.store[data_array[i]] = data_array[i+1]
  80. }
  81. }
  82. create_categories(){
  83. const unsorted_items = new Set(this.item_list)
  84. const panel_list = ["brewing", "mining", "crafting", "farming", "gathering", "woodcutting", "cooking", "fishing", "combat", "invention"]
  85. panel_list.forEach(panel =>{
  86. $("itembox", $(`#panel-${panel}`)).each((index, obj)=>{
  87. const item_name = $(obj).data("item")
  88. if(unsorted_items.has(item_name)){
  89. TStore.category_map[item_name] = panel
  90. TStore.categories[panel].push(item_name)
  91. unsorted_items.delete(item_name)
  92. }
  93. })
  94. })
  95. unsorted_items.forEach(item_name=>{
  96. if(item_name.includes("gaurdian")){
  97. TStore.category_map[item_name] = "combat"
  98. TStore.categories.combat.push(item_name)
  99. unsorted_items.delete(item_name)
  100. } else if(["key", "orb", "chest"].some(type=>{
  101. if(item_name.includes(type)){
  102. TStore.category_map[item_name] = "chests";
  103. TStore.categories.chests.push(item_name);
  104. unsorted_items.delete(item_name)
  105. return true
  106. }
  107. })){} else {
  108. TStore.category_map[item_name] = "other"
  109. TStore.categories.other.push(item_name)
  110. }
  111. })
  112. }
  113. }
  114.  
  115. // Add to window and init
  116. window.TStore = new TeamStore()
  117. IdlePixelPlus.registerPlugin(TStore);
  118. })();

QingJ © 2025

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