This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Performs a search | |
* | |
* This class is used to perform search functions in a MySQL database | |
* | |
* @version 1.2 | |
* @author John Morris <[email protected]> | |
* @author Kirill Krasin <[email protected]> | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs'); | |
var Steam = require('steam'); | |
var bot = new Steam.SteamClient(); | |
bot.logOn({ | |
accountName: 'username', //Username | |
password: 'password', //Password | |
authCode: 'code', // Steam Guard | |
shaSentryfile: fs.readFileSync('sentry') | |
}); |