xedom Posted March 30, 2018 Report Posted March 30, 2018 (edited) Hi,i want that bot make posts on my SteamGroup i have this code: var id = "OctaFox"; var headline = "Some fancy headline"; var content = "Just wanted to say Hello!"; community.getSteamGroup(id, (err, group) => { if(err) { throw err; } else { group.postAnnouncement(headline, content, (err) => { if(err) { throw err; }; }); }; }); The Bot is Admin, but on the SteamGroup i don`t see any post, and in console i don't have errors. Bot full sorce code --> https://github.com/xedom/xeSteamBot/blob/master/index.jsSomeone can help me?Thanks Edited March 30, 2018 by xedom Quote
1Life1Chance Posted March 31, 2018 Report Posted March 31, 2018 (edited) I'm using this method, you can use this community.postGroupAnnouncement("GROUPID", headline, content, function (err) { if (err) { throw err; } }); Edited March 31, 2018 by 1Life1Chance Quote
xedom Posted March 31, 2018 Author Report Posted March 31, 2018 (edited) it don't work ;*( for me, and i will create a post in discussions non an Announcement but thanks Edited March 31, 2018 by xedom 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.