Skip to content

Instantly share code, notes, and snippets.

@alex7kom
Forked from seishun/givebadgeplz.js
Created September 26, 2013 17:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alex7kom/6718004 to your computer and use it in GitHub Desktop.
Save alex7kom/6718004 to your computer and use it in GitHub Desktop.
var fs = require('fs');
var Steam = require('steam');
var bot = new Steam.SteamClient();
bot.logOn({
accountName: 'username',
password: 'password',
shaSentryfile: fs.readFileSync('sentry')
});
bot.on('loggedOn', function() {
console.log('Logged in!');
bot.setPersonaState(Steam.EPersonaState.Online); // to display your bot's status as "Online"
bot.setPersonaName('Morgiana'); // to change its nickname
bot._send(Steam.EMsg.ClientCurrentUIMode | 0x80000000, Steam.Internal.CMsgClientUIMode.serialize({
uimode: 1
}));
bot._send(Steam.EMsg.ClientGamesPlayedWithDataBlob | 0x80000000, Steam.Internal.CMsgClientGamesPlayed.serialize({
gamesPlayed: [{
gameId: 570,
gameFlags: 5120
}]
}));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment