Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const blobData = {
- "blob:https://play.pixels.xyz/d05564ff-1dd3-458a-b66b-2633e2f94398" : "Ochrux Matrix",
- "blob:https://play.pixels.xyz/ccc9bf26-8027-4e1d-9f3e-f5724f9dc691" : "Gravelglass Matrix",
- "blob:https://play.pixels.xyz/4f51fd28-1282-4a26-9b10-a5252882615b" : "Clay Matrix",
- "blob:https://play.pixels.xyz/c603947a-d22f-47a4-b8bf-3ec36efb7560" : "Marbleite Matrix",
- "blob:https://play.pixels.xyz/335383b2-71b6-44f4-ad8c-62980adac859" : "Claricite Matrix",
- };
- const maxItems = 36; // Adjust this number as needed
- for (let indeg = 1; indeg <= maxItems; indeg++) {
- 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`);
- 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`);
- const blob = imgElement ? imgElement.src : null;
- const qty = qtyElement ? qtyElement.innerText : null;
- const blopToName = blobData[blob];
- console.log(blopToName);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement