Created
March 15, 2026 22:31
-
-
Save unseensenpai/9040412494684b71d599a6d167387c7b to your computer and use it in GitHub Desktop.
Path of Exile Timeless Jewel Trade By Seed Numbers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### 1. ADIM: Konsolu Aç | |
| PoE Trade sitesindeyken klavyeden F12 tuşuna bas ve "Console" sekmesine tıkla. | |
| ### 2. ADIM: Yapıştırma İznini Ver (İlk kez yapıyorsan) | |
| Konsolun en altına aşağıdaki metni elinle yaz ve Enter'a bas: | |
| allow pasting | |
| ### 3. ADIM: Seed idleri yerleştir ve arat | |
| Aşağıdaki kodun tamamını seed numaralarını doldurup konsola yapıştır ve Enter'a bas: | |
| const seeds = [10036, 10280, 10412, 10427]; | |
| // Timeless Jewel pseudo ID'leri | |
| const jewelTypes = [ | |
| "explicit.pseudo_timeless_jewel_rakiata", // Lethal Pride (Rakiata) | |
| "explicit.pseudo_timeless_jewel_kaom", // Lethal Pride (Kaom) | |
| "explicit.pseudo_timeless_jewel_kiloava", // Lethal Pride (Kiloava) | |
| "explicit.pseudo_timeless_jewel_akoya" // Lethal Pride (Akoya) | |
| ]; | |
| const allFilters = []; | |
| // Her seed için her jewel tipini ekliyoruz | |
| seeds.forEach(s => { | |
| jewelTypes.forEach(type => { | |
| allFilters.push({ | |
| "id": type, | |
| "value": { "min": s, "max": s }, | |
| "disabled": false | |
| }); | |
| }); | |
| }); | |
| const payload = { | |
| "query": { | |
| "status": { "option": "online" }, | |
| "stats": [{ | |
| "type": "count", | |
| "value": { "min": 1 }, | |
| "filters": allFilters | |
| }] | |
| }, | |
| "sort": { "price": "asc" } | |
| }; | |
| fetch("https://www.pathofexile.com/api/trade/search/Mirage", { | |
| method: "POST", | |
| headers: { "Content-Type": "application/json" }, | |
| body: JSON.stringify(payload) | |
| }) | |
| .then(res => res.json()) | |
| .then(data => { | |
| if(data.id) { | |
| window.location.href = `https://www.pathofexile.com/trade/search/Mirage/${data.id}`; | |
| } else { | |
| console.error("Bir hata oluştu:", data); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment