Soru Bu hangi yazılım dili

cukucanboy

Öğrenci
Katılım
9 Ağustos 2023
Mesajlar
1
Reaksiyon puanı
0
Puanları
1
Yaş
24
Merhaba bunun hangi yazılım dili olduğunu bilen var mı ?

const TARGETS = ['SERENITY', 'PROGRESS', 'TEETH', 'SIGNAL', 'SMART', 'ADVANCE', 'TOKEN', 'SPACE', 'FOCUS', 'STACK', 'KICK', ];

(async () => {
while (true) {
const offset = (Math.random() + 1.2);
await new Promise(r => setTimeout(r, 100));
try {
const caseNames = (([...document.querySelectorAll('p.max-w-full.px-1.overflow-hidden')]).splice(0, 3)).map(e => e.textContent);
const casePrices = (([...document.querySelectorAll('div.flex.items-center.justify-center.rounded-tl-lg')]).splice(0, 3)).map(e => e.textContent);
if (casePrices[caseNames.indexOf(caseNames.find(name => TARGETS.includes(name)))] === 'FREE' && caseNames.some(str => TARGETS.includes(str))) {
const btns = [...document.querySelectorAll('a.button.mr-5')];
const btn = btns[caseNames.indexOf(caseNames.find(name => TARGETS.includes(name)))];
btn.click();
while (true) {
const offset = (Math.random() + 1.2);
await new Promise(r => setTimeout(r, (100 * offset)));
try {
const joinBtn = document.querySelector('button.h-12.button-green-dimmed');
if (joinBtn) {
joinBtn.click();
break;
}
} catch {null;}
}
}
} catch {null;}
}
})();
 

ZozoTheKid

Öğrenci
Katılım
6 Ağustos 2023
Mesajlar
7
Reaksiyon puanı
5
Puanları
3
Çok büyük ihtimalle C# ama c dillerinden hepsi olabilir ama .Net C# kütüphanelere bakılırsa HTML site projesi ASP .Net aspx de olabilir.
 
Üst