Vanilla Posted June 4, 2017 Report Posted June 4, 2017 Hello there, I managed to make my bot edit their "Real Name' using editProfile node-steamcommunity, and I found a problem Everytime I'm using "community.editProfile", it always removing one of my bot Profile Showcase.The original is "Items Up For Trade" and Custom Info Box, but after calling editProfile, "Items Up For Trade" always gone and only leaving Custom Info Box. Is this a bug or am I missing something? Because I can't find anything in wiki about Profile Showcase.Thanks Not sure if it's help, but here's part of code community.editProfile({ "realName": "Bot Version: " +version, "background" : 4149974111, }, function(err) { if (err) { var log = (currentdate() + " - Failed to update RealName"); fs.appendFile("log.txt", log+ "\n", {flag: 'a'}, function(err) {}); console.log(log); } else { var log = (currentdate() + " - RealName updated: "+version); fs.appendFile("log.txt", log+ "\n", {flag: 'a'}, function(err) {}); console.log(log); } }); Quote
Dr. McKay Posted June 5, 2017 Report Posted June 5, 2017 Currently, profile showcases aren't really supported. Quote
Vanilla Posted June 5, 2017 Author Report Posted June 5, 2017 Currently, profile showcases aren't really supported. Alright, thanks Vanilla 1 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.