Advertisement
Guest User

Untitled

a guest
Oct 17th, 2016
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. var fs = require("fs"),
  2. Steam = require("steam"),
  3. SteamID = require("steamid"),
  4. IntervalInt = null,
  5. readlineSync = require("readline-sync"),
  6. Protos = require("./protos/protos.js"),
  7. CountCommends = 0,
  8. Long = require("long"),
  9. process = require("process"),
  10. steamID = readlineSync.question("SteamID64 which will be commended: ");
  11.  
  12. var ClientHello = 4006,
  13. ClientWelcome = 4004;
  14.  
  15. var accounts = [];
  16.  
  17. var arrayAccountsTxt = fs.readFileSync("accounts.txt").toString().split("\n");
  18. for (i in arrayAccountsTxt) {
  19. var accInfo = arrayAccountsTxt[i].toString().trim().split(":");
  20. var username = accInfo[0];
  21. var password = accInfo[1];
  22. accounts[i] = [];
  23. accounts[i].push({
  24. username: username,
  25. password: password
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement