Jump to content
McKay Development

'editProfile' and Profile Showcase


Vanilla

Recommended Posts

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);
	}
});

 

Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...