goigois1 Posted May 5, 2020 Report Posted May 5, 2020 Hello friends , i'm looking for a script that when u start the script the account will automatically join into a specific group like asf do. Didn't find anything like that. thx Quote
Perport Posted May 11, 2020 Report Posted May 11, 2020 const steamCommunity = require('steamcommunity'); let community = new steamCommunity({}); community.login({ "accountName": "name", "password": "password", },()=>{ community.getSteamGroup("reddit",(err,group) => { if(err)console.log("Couldn't get the group"); else group.join(); }); }); this should do it Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.