Jump to content
McKay Development

Zreex

Member
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Zreex

  1. Steam introduced an update some time ago that exposes both float and seed values. Could you advise how to access these values using this module, without creating an external request to the Steam Web API? #getAssetsProperties = async (contextId) => { try { const { data } = await axios.get( `${SteamWrapper.#apiOrigin}/IEconService/GetInventoryItemsWithDescriptions/v1`, { params: { 'access_token': this.#accessToken, 'steamid': String(this.#userClient.steamID), 'appid': 730, 'contextid': contextId, 'get_asset_properties': true, }, }, ); const raw = data?.response?.asset_properties; const assetProperties = Array.isArray(raw) ? raw : []; return [assetProperties, null]; } catch (error) { return [null, error]; } }
  2. I'm trying to find out if there is any reliable way to see who initiated a trade rollback. The GetTradeHistory API endpoint does not provide any field identifying whether party performed the revert action. Is there any endpoint, internal flag, or alternative method available to accurately determine which party reverted a trade?
  3. The sentOfferChanged event does not emit when an offer is rolled back. Please confirm if this is already known, or if this can be addressed in an update. Thanks.
×
×
  • Create New...