Jump to content
McKay Development

Z3ik3n

Member
  • Posts

    2
  • Joined

  • Last visited

Z3ik3n's Achievements

  1. Thank you. Would there be any problem if I use a fake/bot account to stay logged 24/7 with a server? So I can inspect skins any time.
  2. Hi. Is there any way to connect to GC with an anonymous account? I tried to set the client.gamesPlayed to 730, but it doesn't seems to work. It doesn't enter the 'csgo.on' method. My current code: app.get('/api/retrieveFloat', (req, res) => { const client = new SteamUser() const csgo = new GlobalOffensive(client) client.logOn() client.on('loggedOn', (details) => { console.log('Logged on: ' + client.steamID) client.setPersona(SteamUser.EPersonaState.Online) client.gamesPlayed(730, true) csgo.on('connectedToGC', () => { if (csgo.haveGCSession) { console.log('Connected') } else { console.log('Not connected') } }) }) })
×
×
  • Create New...