IdlePixel All the Gems!

Opens all gem goblin bags with right click

  1. // ==UserScript==
  2. // @name IdlePixel All the Gems!
  3. // @namespace lbtechnology.info
  4. // @version 1.0.2
  5. // @description Opens all gem goblin bags with right click
  6. // @author Lux-Ferre
  7. // @license MIT
  8. // @match *://idle-pixel.com/login/play*
  9. // @grant none
  10. // @require https://gf.qytechs.cn/scripts/441206-idlepixel/code/IdlePixel+.js?anticache=20220905
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. class GemBagPlugin extends IdlePixelPlusPlugin {
  17. constructor() {
  18. super("gembagplugin", {
  19. about: {
  20. name: `${GM_info.script.name} (ver: ${GM_info.script.version})`,
  21. version: GM_info.script.version,
  22. author: GM_info.script.author,
  23. description: GM_info.script.description
  24. },
  25. })
  26. }
  27.  
  28. onLogin(){
  29. this.vars = {
  30. tracking_bags: false,
  31. total_bags: 0,
  32. bags_opened: 0,
  33. gems_acquired: {}
  34. }
  35. $(`itembox[data-item="gem_bag"]`).attr("oncontextmenu", "event.preventDefault(); IdlePixelPlus.plugins.gembagplugin.openAll()")
  36. }
  37. onMessageReceived(data){
  38. if(!this.vars){return}
  39. if(this.vars.tracking_bags && data.startsWith("OPEN_LOOT_DIALOGUE")){
  40. const values = data.split("=")[1]
  41. const values_array = values.split("~")
  42. const items = this.parseItemData(values_array)
  43. this.vars.gems_acquired = this.addToLoot(this.vars.gems_acquired, items)
  44. this.vars.bags_opened++;
  45. if (this.vars.bags_opened>=this.vars.total_bags){
  46. this.vars.tracking_bags = false
  47. this.createLootPopup()
  48. }
  49. }
  50. }
  51. openAll(){
  52. this.vars = {
  53. tracking_bags: true,
  54. total_bags: 0,
  55. bags_opened: 0,
  56. gems_acquired: {}
  57. }
  58.  
  59. this.vars.total_bags = window[`var_gem_bag`]
  60. for (let i = 0; i < this.vars.total_bags; i++) {
  61. websocket.send(`OPEN_GEM_BAG`);
  62. }
  63. }
  64. addToLoot(totalLoot, newLoot){
  65. for (let [itemName, value] of Object.entries(newLoot)) {
  66. if (totalLoot.hasOwnProperty(itemName)){
  67. totalLoot[itemName].number = totalLoot[itemName].number + value.number
  68. } else {
  69. totalLoot[itemName] = value
  70. }
  71. }
  72. return totalLoot
  73. }
  74. parseItemData(values_array){
  75. const items = {}
  76.  
  77. for(let i = 2; i < values_array.length; i+=0){
  78. const image = values_array[i];
  79. i++;
  80. let [number, ...label] = values_array[i].split(" ");
  81. number = parseInt(number)
  82. label = label.join(" ")
  83. i++;
  84. const background = values_array[i];
  85. i++;
  86. items[image] = {
  87. number: number,
  88. label: label,
  89. background: background
  90. }
  91. }
  92.  
  93. return items
  94. }
  95. createLootPopup(){
  96. const images = [];
  97. const labels = [];
  98. const background = [];
  99. for (let [itemName, value] of Object.entries(this.vars.gems_acquired)){
  100. images.push(itemName);
  101. const newLabel = `${value.number} ${value.label}`
  102. labels.push(newLabel);
  103. background.push(value.background);
  104. }
  105.  
  106. this.open_loot_dialogue(images, labels, background);
  107. }
  108. open_loot_dialogue(loot_images_array, loot_labels_array, loot_background_color_array){
  109. const loot_body = document.getElementById("modal-loot-body");
  110. let html = "";
  111. for(let i = 0; i < loot_images_array.length; i++)
  112. {
  113. let image = loot_images_array[i];
  114. let label = loot_labels_array[i];
  115. let background_color = loot_background_color_array[i];
  116. if(!isNaN(label))
  117. label = "+" + format_number(label);
  118. if(label.endsWith("(NEW)"))
  119. {
  120. label = label.substring(0, label.length-5);
  121. label += " <img class='blink' src='https://idlepixel.s3.us-east-2.amazonaws.com/images/new.png' />"
  122. }
  123. if(label.endsWith("(UNIQUE)"))
  124. {
  125. label = label.substring(0, label.length-8);
  126. label += " <img class='blink' src='https://idlepixel.s3.us-east-2.amazonaws.com/images/unique.png' />"
  127. }
  128. html += "<div class='loot' style='background-color:"+background_color+"'>";
  129. html += "<img src='https://idlepixel.s3.us-east-2.amazonaws.com/"+image+"' class='w50 me-3' />";
  130. html += label;
  131. html += "</div>";
  132. }
  133. loot_body.innerHTML = html;
  134. if($('#modal-loot:visible').length == 0){
  135. Modals.toggle("modal-loot");
  136. }
  137. }
  138. }
  139.  
  140. const plugin = new GemBagPlugin();
  141. IdlePixelPlus.registerPlugin(plugin);
  142.  
  143. })();

QingJ © 2025

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