-
Posts
42 -
Joined
-
Last visited
Contact Methods
-
Website URL
https://steamcommunity.com/profiles/76561198097242611
Profile Information
-
Gender
Not Telling
-
Location
DZ
Recent Profile Visitors
520 profile views
SENPAY98K's Achievements
-
SENPAY98K started following Anyway to check profile section privacy ? , Old Endpoint Api for steam inventory parameters , stuck on adding their trade item and 3 others
-
Hello, I use for this api to fetch steam inventories: The result has: Is there any parameter to load next pages ?
-
stuck on adding their trade item
SENPAY98K replied to newbboy9969's topic in node-steam-tradeoffer-manager
Thanks for the notice, its done successfully now :) -
SENPAY98K reacted to a post in a topic: stuck on adding their trade item
-
stuck on adding their trade item
SENPAY98K replied to newbboy9969's topic in node-steam-tradeoffer-manager
the map only stocks ids [ { "appid": 753, "contextid": 6, "assetid": [ [ "22434481908", "22434481910", "22434481915", "22434481907", "22434481917" ], [ "22434481909", "22434481911", "22434481918", "22434481913", "22434481919" ], [ "22434481914", "22434481912", "22434481921", "22434481916", "22434481920" ] ] } ] -
The limit is applied to inventory fetching, atm set the count to under 2000 per 4 seconds
-
Checking card sets on incoming trade offer ?
SENPAY98K replied to SENPAY98K's topic in node-steam-tradeoffer-manager
bimp -
What is that ? peer to peer !
-
Checking card sets on incoming trade offer ?
SENPAY98K replied to SENPAY98K's topic in node-steam-tradeoffer-manager
@PonyExpress Does not work i guess, returns empty object and arrays const database = { "730": { "amount": 5}, "603750": { "amount": 5}, ... } const cards = OFFER.itemsToGive; await getSets(cards, (cardSets, extraCards, unknownCards) => { if (cardSets) console.log(cardSets); if (extraCards) console.log(extraCards); if (unknownCards) console.log(unknownCards); }) -
Checking card sets on incoming trade offer ?
SENPAY98K replied to SENPAY98K's topic in node-steam-tradeoffer-manager
I will try it, thank you -
Checking card sets on incoming trade offer ?
SENPAY98K replied to SENPAY98K's topic in node-steam-tradeoffer-manager
The language is not the problem here, I receive the offer, i check the offer details, then filter items for trading cards only, after that i have a database of {appid, number of cards in set} which i need to compare against it and retrun the amount of sets Im lacking the idea of how to process it! -
SENPAY98K changed their profile photo
-
Anyway to check profile section privacy ?
SENPAY98K replied to SENPAY98K's topic in node-steamcommunity
sovled using steam api -
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" );