Jump to content
McKay Development

AshIgorash

Member
  • Posts

    13
  • Joined

  • Last visited

AshIgorash's Achievements

  1. You can use csgofloat opensource. https://github.com/csfloat/inspect/tree/master
  2. I am developing a backend for my own small project. I am facing a problem, when choosing a bot for making a trade I need to return one with less than 30 active trades total and less than 5 active trades with a specific user. Its ok that for each trade to ask info from steam about current trades of bot or should I keep this data stored in memory? . Its also an option to look in db but I think it will overload it.
  3. How do I convert accountID to steam ID64? SteamID { universe: 1, type: 1, instance: 1, accountid: 279829166 } 279829166 -> 76561198240094894 Resolved
  4. I made a small functionality for sending offers using my bots, but the number of active offers with one person is limited to 5 and 30 in total active offers. How do I keep this number and get the most free bot to make next offer.
  5. What is difference between this two in TradeOfferManager constructor? cancelTime is cancelling all active offerst sent by us and pendingCancelTime cancels non confirmed trades with pending status?
  6. How do I get time when items from my inventory will be tradable? If I am fetching this link: "https://steamcommunity.com/inventory/id64/2?l=english&count=75", if this is my inventory I can see this field "owner_descriptions":[{"type":"html","value":" "},{"type":"html","value":"Tradable After Oct 19, 2023 (7:00:00) GMT","color":"ff4040"}] with 'tradable after' value but getInventoryContents() method from node-steam-tradeoffer-manager does not return this property. Is there a way to get the time?
  7. I am trying to get chache_experation of item but I am getting undefined every time. How do I know when tradeban of item ends?
  8. I know that is my question isn't about this this forum but maybe I can get some help, so, today I was scammed. Someome joined my account and sold a lot of items for 1€ and after that bought a 0.03 € item for 100€. I have steam guard installed only on my phone, but I have an api key that I used on many sites. I have installed in my browser extensions like market.csgo p2p, csgo trader and sih. Mb my password was leaked because it was not strong enaugh and I used it in many sites but how did someone loggin in my account without steam guard. At time my money was stolen my computer was turned off. I have no idea how this is possible. I have to mention that he extracted some items from my storage containers and sold it.
  9. I found out the problem, I cant even inspect any items in game, idk why. I tried on multiple accounts and nothing.
  10. Yes, it goes online and nothing happens, if I try to request profile info for example, I get all information but only InspectItem doesnt work.
  11. Yes, I launch it, parameters are valid, also I tried to put whole insept link at owner but I dont get anything. const SteamUser = require('steam-user'); const GlobalOffensive = require('globaloffensive'); const SteamTotp = require('steam-totp'); const userMarar = require('./config.json'); const { time } = require('console'); let user = new SteamUser(); let csgo = new GlobalOffensive(user); let logOnOptions = { "accountName": "name", "password": "pass", "twoFactorCode": SteamTotp.generateAuthCode(userMarar["shared_secret"]) }; user.logOn(logOnOptions); user.on('loggedOn', function() { console.log("Logged into Steam"); user.setPersona(SteamUser.EPersonaState.Online); user.gamesPlayed([730]); }); csgo.on('connectedToGC', () => { console.log('Connected to CS:GO Game Coordinator'); csgo.inspectItem("76561202255233023","30999439917","2612242276566628011",function(item) { if (err) { console.log(err); return; } console.log(item) }); });
  12. Is there any method by which I can find the paint_wear of all the items in someone's inventory. I tried this code using globaloffensive but it doesn't print anything: csgo.on('connectedToGC', () => { console.log('Connected to CS:GO Game Coordinator'); csgo.inspectItem("76561202255233023","30848107082","12134527536543334116",function(item) { if (err) { console.log(err); return; } console.log(item)
×
×
  • Create New...