When I was doing CM CSGO through GlobalOffensive, I tried using proxies, both HTTP and SOCKS5, but without exception, all of them gave a 'connection - NotAllowed' error.
const SteamUser = require('steam-user');
const GlobalOffensive = require('globaloffensive');
const fs = require('fs');
const path = require('path');
const SteamTotp = require('steam-totp');
const proxy = "socks5://xxxxxx:
[email protected]:12321";
const client = new SteamUser({
socksProxy: proxy,
protocol: SteamUser.EConnectionProtocol.WebSocket
});
const csgo = new GlobalOffensive(client);
client.on('debug', (msg) => {
console.log('[steam-user]', msg);
});
1: The proxy is normal and usable, and it supports Steam;
2: The proxy supports HTTP and SOCKS;
When I'm at the proxy and don't set anything, using the local Clash works fine; I’ve looked through the entire forum and the documentation, but couldn’t find a solution, so I had no choice but to come here for help. I hope to get some assistance from everyone to help me solve this issue. Really, thank you so much.