Cách Gửi Nhiều Câu Hỏi NGL Cùng Lúc


Sau khi lên bài viết bằng Python, mình nhận thấy có khá nhiều bạn không thạo dụng ngôn ngữ đó nên hôm nay mình sẽ lên bằng JS nha, mọi người có thể thao tác luôn ngay trên máy tính luôn nha.

Các Bước Gửi Câu Hỏi NGL

Bước 1: Nhập thông tin cần spam
Bước 2: Copy Code Gửi Câu Hỏi NGL
        var username = 'thhh54476';
var sl = 50; // Số lượng câu hỏi muốn gửi
var question = 'hellozai';
var url = "https://ngl.link/api/submit";

const cookies = document.cookie;
const mixpanelCookie = cookies.split('; ').find(row => row.includes('mixpanel'));

if (mixpanelCookie) {
  const decodedValue = decodeURIComponent(mixpanelCookie.split('=')[1]);
  try {
    const parsedValue = JSON.parse(decodedValue);
    const deviceId = parsedValue.$device_id;
    console.log('Device ID:', deviceId);

    const delay = (ms) => new Promise(resolve => setTimeout(resolve, ms));

    (async () => {
      for (let i = 0; i < sl; i++) {
        fetch(url, {
          method: "POST",
          headers: {
            'accept': '*/*',
            'content-type': 'application/x-www-form-urlencoded; charset=UTF-8',
            'origin': 'https://ngl.link',
            'referer': encodeURI(`https://ngl.link/${username}`), 
            'x-requested-with': 'XMLHttpRequest'
          },
          body: encodeURI(`username=${username}&question=${question}&deviceId=${deviceId}&gameSlug=&referrer=`) // Mã hóa body
        })
          .then(res => res.text())
          .then(data => console.log(`${i + 1} ${data}`))
          .catch(err => console.error(`Error at ${i + 1}:`, err));

        const randomDelay = Math.random() * 1500 + 500; // Random delay từ 500ms đến 2000ms
        console.log(`Waiting for ${randomDelay.toFixed(0)}ms before câu ${i+1}...`);
        await delay(randomDelay);
      }
    })();

  } catch (error) {
    console.error('Error parsing cookie value:', error);
  }
} else {
  console.log('Mixpanel cookie not found!');
}
        
      
Bước 3: Mở trang spam
Bạn hãy mở trang câu hỏi, sau đó bấn F12 (inspect)
Bước 4: Dán code
Chọn tab Console (Bảng điều khiển) và dán code zô, bấm Enter và tận hưởng

Ý Nghĩa Gửi Câu Hỏi NGL

Code giúp bạn gửi nhiều câu hỏi cho bạn bè cùng lúc thay vì phải thao tác lặp đi lặp lại những hành động bằng tay. Chúc các bạn trải nghiệm vui vẻ!!!