Guest Janic Posted April 1, 2020 Report Posted April 1, 2020 Hey, I have read the docs and was wondering if there is any method to change the users profile description. (If not is there any workaround to do so?) Thanks in advance Quote
Dr. McKay Posted April 1, 2020 Report Posted April 1, 2020 You can use node-steamcommunity for that: https://github.com/DoctorMcKay/node-steamcommunity/wiki/SteamCommunity#editprofilesettings-callback vrtgn 1 Quote
vrtgn Posted April 2, 2020 Report Posted April 2, 2020 (edited) Here's an example: function updateDescription(description) { community.editProfile({ summary: description }, (err) => { if (err) { console.log("Oops. Something went wrong when changing the description"); } else { console.log("Description changed to " + description); } }); } updateDescription("Hi"); // changes description to Hi Edited April 21, 2020 by vrtgn 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.