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.js Someone can help me? Thanks