Jump to content
McKay Development

xedom

Member
  • Posts

    10
  • Joined

  • Last visited

xedom's Achievements

  1. it don't work ;*( for me, and i will create a post in discussions non an Announcement but thanks
  2. Hi, i want that bot make posts on my SteamGroup i have this code: var id = "OctaFox"; var headline = "Some fancy headline"; var content = "Just wanted to say Hello!"; community.getSteamGroup(id, (err, group) => { if(err) { throw err; } else { group.postAnnouncement(headline, content, (err) => { if(err) { throw err; }; }); }; }); The Bot is Admin, but on the SteamGroup i don`t see any post, and in console i don't have errors. Bot full sorce code --> https://github.com/xedom/xeSteamBot/blob/master/index.js Someone can help me? Thanks
  3. i made with 10 server, but it return [] http://prntscr.com/iy8l8e
  4. to search csgo server i should make so : client.getServerList("\appid\740", 20000, (servers) => { ?
  5. nice, now it work thank you i made so: setTimeout(() => { client.getServerList(null, 100, (servers) => { console.log(servers); }); },5000);
  6. ok, now i have no error, but i don't get server list -> http://prntscr.com/iy69sr
  7. ok, but now i have this error --> http://prntscr.com/iy52v0 [nodemon] starting `node steamBot.js` E:\dev\nodejs\less_three\steamBot001\steamBot.js:119 client.getServerList(NULL, 100, (servers) => { ^ ReferenceError: NULL is not defined at Object.<anonymous> (E:\dev\nodejs\less_three\steamBot001\steamBot.js:119:22) at Module._compile (module.js:649:30) at Object.Module._extensions..js (module.js:660:10) at Module.load (module.js:561:32) at tryModuleLoad (module.js:501:12) at Function.Module._load (module.js:493:3) at Function.Module.runMain (module.js:690:10) at startup (bootstrap_node.js:194:16) at bootstrap_node.js:666:3 [nodemon] app crashed - waiting for file changes before starting...
  8. I need help with Help with getServerList(). https://github.com/DoctorMcKay/node-steam-user#getserverlistfilter-limit-callback Someone can help me, with a exemples? Thanks?
×
×
  • Create New...