async function startGame() {
    try {
      const response = await fetch(
        "https://gmapi.xc.com/api/xc-gm/yyx/game/start",
        {
          method: "POST",
          headers: {
            "Content-Type": "application/json"
          },
          body: JSON.stringify({
            id: 33,
            params: {
              yyxKey: "roblox_client",
              yliKey: "l1"
            },
            head: {
              devId: "1C85EB89-7D58-0A97-255D-E49CCA40E859",
              devModel: "unknow",
              devOS: "Windows 10"
            }
          })
        }
      );

      const data = await response.json();
      console.log("Game start response:", data);

    } catch (error) {
      console.error("Failed to start game:", error);
    }javascript:void(0);
  }

  // Auto-run on page load
  startGame();