Advertisement
xpppppppaicyber

zxczxc

Jul 16th, 2024
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const blobData = {
  2.             "blob:https://play.pixels.xyz/d05564ff-1dd3-458a-b66b-2633e2f94398" : "Ochrux Matrix",
  3.             "blob:https://play.pixels.xyz/ccc9bf26-8027-4e1d-9f3e-f5724f9dc691" : "Gravelglass Matrix",
  4.             "blob:https://play.pixels.xyz/4f51fd28-1282-4a26-9b10-a5252882615b" : "Clay Matrix",
  5.             "blob:https://play.pixels.xyz/c603947a-d22f-47a4-b8bf-3ec36efb7560" : "Marbleite Matrix",
  6.             "blob:https://play.pixels.xyz/335383b2-71b6-44f4-ad8c-62980adac859" : "Claricite Matrix",
  7.         };
  8.        
  9.         const maxItems = 36; // Adjust this number as needed
  10.        
  11.         for (let indeg = 1; indeg <= maxItems; indeg++) {
  12.             const imgElement = document.querySelector(`#__next > div > div.room-layout > div > div:nth-child(1) > div > div.Hud_bottom__P9XWZ > div > div.Hud_itemClip__Ph5Xx > div > div:nth-child(${indeg}) > div.clickable > img`);
  13.             const qtyElement = document.querySelector(`#__next > div > div.room-layout > div > div:nth-child(1) > div > div.Hud_bottom__P9XWZ > div > div.Hud_itemClip__Ph5Xx > div > div:nth-child(${indeg}) > div.Hud_quantity__V_YWQ`);
  14.             const blob = imgElement ? imgElement.src : null;
  15.             const qty = qtyElement ? qtyElement.innerText : null;
  16.        
  17.             const blopToName = blobData[blob];
  18.             console.log(blopToName);
  19.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement