Person named "Oi" from fubgun discord
here u go
"
This might be helpful for others, made this script to filter the jewels
search for the jewel with your price budget to limit amount of results as only 100 results will be shown, don't set minimum price to 1 div and expect cold damage..
press F12 to open the console in your browser and paste the script, press enter and wait until all items has been loaded and it'll filter the results
(async function() {
async function loadAllItems() {
while (true) {
const loadMoreButton = document.querySelector('.btn.load-more-btn');
if (!loadMoreButton) break;
loadMoreButton.click();
await new Promise(resolve => setTimeout(resolve, 1000));
}
}
await loadAllItems();
document.querySelectorAll('.row').forEach(r => {
r.innerText.toLowerCase().includes('cold damage') || (r.style.display = 'none'); // change the "includes" to w/e you want to filter
});
console.log('Filtering complete');
})();
|
Posted byBananaru#7519on Jan 1, 2025, 1:04:19 AM
|
+1
|
Posted bySindica#0929on Jan 1, 2025, 1:51:18 AM
|
+1
|
Posted byAneazXo#5917on Jan 3, 2025, 6:48:13 AM
|
Please add us more search options its literally impossible to search for this jewel
|
Posted bynenizelo#1127on Jan 3, 2025, 10:07:50 AM
|
+1
|
Posted byteflonsheep#2132on Jan 3, 2025, 11:46:25 AM
|
+
|
Posted by_Mo3ru_#0576on Jan 3, 2025, 4:10:03 PM
|
this topic is of utmost importance
|
Posted byWezdumb#7732on Jan 4, 2025, 11:46:55 AM
|
+
|
Posted byxiaob0nb0n#2459on Jan 4, 2025, 1:11:50 PM
|
+
|
Posted byanaKONDA#5398on Jan 5, 2025, 3:25:37 AM
|
+1
|
Posted byleison54#0199on Jan 5, 2025, 11:16:51 PM
|