Hey,
is there any possibility to repeat the requestLiveGameForUser method? If I call the method the first time it works, but the second, third... time it does not. Here is the important code:
csgoUser.on('connectedToGC', async () => {
searchedids = []
for (let steamid of steamids) {
if (!searchedids.some((searched) => searched === steamid.getSteamID64())) {
csgoUser.requestLiveGameForUser(steamid.getSteamID64());
await sleep(10000)
}
}
});
csgoUser.on('matchList', async (response) => {
console.log(response);
steamClient.logOff();
});
Any clue why it does not work?
Thank you for this awesome lib!