Jump to content
McKay Development

feroff

Member
  • Posts

    1
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

feroff's Achievements

  1. Hello. I want to make a script that keeps track of the balance on the account and the number of items in the inventory. If the balance has changed, I want to know how many items I currently have in my inventory. balance tracking works. Tracking items in the inventory no client.on('loggedOn', function() { client.gamesPlayed([730]); }); client.on('wallet', function(hasWallet, currency, balance) { csgo.on('connectedToGC', () => { let items = csgo.inventory.length - 2; console.log(items); }); console.log(username + ' | ' + SteamUser.formatCurrency(balance, currency) + ' | ' + new Date().toLocaleString()); let money = SteamUser.formatCurrency(balance, currency); }); I haven't done programming before, maybe the answer to my question is very easy
×
×
  • Create New...