-
Posts
30 -
Joined
Contact Methods
-
Website URL
https://steamcommunity.com/profiles/76561198097242611
Profile Information
-
Gender
Not Telling
-
Location
DZ
Recent Profile Visitors
360 profile views
SENPAY98K's Achievements
-
Anyway to check profile section privacy ?
SENPAY98K replied to SENPAY98K's topic in node-steamcommunity
sovled using steam api -
SENPAY98K started following Anyway to check profile section privacy ?
-
I'm looking to fetch steam comment section of profile before posting a comment ? Is there anyway? or any hint would help. Thanks
-
SENPAY98K reacted to a post in a topic: GetPlayerBan
-
Rating a status not detected by steam ?
SENPAY98K replied to SENPAY98K's topic in node-steamcommunity
Maybe the `/actions/LogFriendActivityUpvote` request !! I already tried sending it with its options alongside with rate up status but always failed !! Can you help checking it ? @Dr. McKaydo you think anything missing in options ? Also do you think it's similar to my previous thread `View a Broadcast` that steam badge did not detect it ? var optionLogRateActivity = { form: { sessionID: sessionID }, headers: { Host: 'steamcommunity.com', Origin: 'https://steamcommunity.com', Referer: 'https://steamcommunity.com/profiles/'+RatePostSteamID64+'/home/' }, json: true }; var postURL0 = 'https://steamcommunity.com/actions/LogFriendActivityUpvote'; community.httpRequestPost(postURL0, optionLogRateActivity, function (err, res, data) { if (err) { console.log(' [%s] actions/LogFriendActivityUpvote: FAIL'.red, logOnOptions.accountName); } if (!err) { console.log(' [%s] actions/LogFriendActivityUpvote: DONE'.green, logOnOptions.accountName); } }, "steamcommunity" ); -
SENPAY98K changed their profile photo
-
Hi, im trying to achieve the task of Rate up content in your Activity Feed My code works fine and it really rate up the status, but in the steam badge it does not detect that. @Dr. McKay what you think is wrong ? // Rate up the status var optionRateActivityPost = { form: { sessionid: sessionID, vote: 1, count: 6, feature2: -1, newestfirstpagination: true }, headers: { Host: 'steamcommunity.com', Origin: 'https://steamcommunity.com', Referer: 'https://steamcommunity.com/profiles/'+RatePostSteamID64+'/home/' }, json: true }; var postURL08 = 'https://steamcommunity.com/comment/UserStatusPublished/voteup/'+RatePostSteamID64+'/1639600415/'; community.httpRequestPost(postURL08, optionRateActivityPost, function (err, res, data) { if (err) { console.log(' [%s] TASK08: Rate Activity Post: FAIL'.red, logOnOptions.accountName); } if (!err) { console.log(' [%s] TASK08: Rate Activity Post: DONE'.green, logOnOptions.accountName); } }, "steamcommunity" );
-
I tried it, i get no error but seems not really working.. seems to be impossible to trigger with just Post/Get requests.
-
There is a task for sending a steam emoticon to a friend.
-
https://steamcommunity.com/?subsection=broadcasts Trying to view a steam brodcast but could make it, i don't know why! console.log(' [%s] Successfully Logged On.', logOnOptions.accountName); var optionViewBroadcast = { headers: { Host: 'steamcommunity.com', Referer: 'https://steamcommunity.com/?subsection=broadcasts'}, json: true }; var postURL02 = 'https://steamcommunity.com/broadcast/watch/'config.CasterID64+'/'; community.httpRequestPost(postURL02, optionViewBroadcast, function (err, res, data) { if (err) { console.log(' TASK02: View Broadcast: FAIL '); } if (!err) { console.log(' TASK02: View Broadcast: DONE '); } }); Any idea ?
-
Okay i was trying to do all the all Steam Community tasks (Badge/2) into one script Thanks for the reply ♥
-
Is it possible to use steamcommunity to send a message ? Like using Steam Chat inside steamcommunity to send a message. const logOnOptions = { accountName: item.split(":")[0], password: item.split(":")[1], twoFactorCode: SteamTotp.generateAuthCode(item.split(":")[2]) }; community.login({ "accountName": logOnOptions.accountName, "password": logOnOptions.password, "twoFactorCode": logOnOptions.twoFactorCode }, function (err, sessionID, cookies) { if (err) { console.log('Error in loggOn'); } if (!err) { console.log(' [%s] Successfully Logged On (SteamID: %s)', logOnOptions.accountName, community.steamID.getSteamID64()); community.chatMessage('76561198097242611', ':steamhappy:', function (err, res, data) { if (err) { console.log(' [%s] TASK11: xxxxxx FAIL'.red, logOnOptions.accountName); } if (!err) { console.log(' [%s] TASK11: yyyyyy DONE'.green, logOnOptions.accountName); } }); In the output say you can't send message, not logged in !
-
SENPAY98K reacted to a post in a topic: Contantly Getting This Error !
-
Okay thanks for replying
-
There is no stack trace, it just shows like this.
-
SENPAY98K reacted to a post in a topic: Trading and Escrow -- Mobile Trade Confirmations
-
SENPAY98K reacted to a post in a topic: Identifying Steam Items
-
Iam running some scripts using steamcommunity module, as it is working find till these recent days.. Iam getting the same error on different scripts, which i never saw before. Any idea about it ? Screenshot:
-
Getting SteamID64 For The LoggedIn Account (steamcommunity)?
SENPAY98K replied to SENPAY98K's topic in node-steamcommunity
Its okay all good -
SENPAY98K reacted to a post in a topic: Getting SteamID64 For The LoggedIn Account (steamcommunity)?
-
Getting SteamID64 For The LoggedIn Account (steamcommunity)?
SENPAY98K replied to SENPAY98K's topic in node-steamcommunity
Great, works exactly as expected I guess other CSteamUser function works with community as well since its contained inside steamcommunity module, am i wrong? -
SENPAY98K reacted to a post in a topic: Getting SteamID64 For The LoggedIn Account (steamcommunity)?
-
Hi, is there a possiblity to get steamId64 [76561198097242611] for the current loggedIn account with (steamcommunity) ? Searched on the github for that and found that its used on CSteamUser, and other parts of the library together with `steamid` module. Im using async in the script to loop many accounts for some actions, and cant there is no way to put id for each account. Is there anything to replace '????' with current loggedIn account such as with sessionID or cookies... Edit: CSteamUser works with steamcommunity module √