mrxbell Posted February 6, 2017 Report Posted February 6, 2017 I run web with multi bot system. Now i need algorithm for auto select bot when send or receive trade when user deposit and withdraw . Any suggestions are welcome ? Thanks ! Quote
UKF Posted February 8, 2017 Report Posted February 8, 2017 Well, there are different ways on doing that. You can do that by:Using a proxy system and a list of proxy servers to override steam's inventory request limits.Having a random bot responsible for the deposits if you are fetching your information from the database (username/password/shared_secret/identity_secret and misc. data) and loading user's inventory.Running multiple bots by creating instances on start, making a communication between them (using socket.io which is highly recommended over database checking (of course it's important to log everything)).Lookup for the available item to withdraw from bot (fetch assetid -> check botid containing the item) -> transfer to main bot. It's basically an easy concept, just a lot of coding and fail-safes, and the last but not least, be careful when getting item prices or any other data, make sure to always null check the items or prices. Best regardsUKF mrxbell 1 Quote
mrxbell Posted February 10, 2017 Author Report Posted February 10, 2017 Well, there are different ways on doing that. You can do that by:Using a proxy system and a list of proxy servers to override steam's inventory request limits.Having a random bot responsible for the deposits if you are fetching your information from the database (username/password/shared_secret/identity_secret and misc. data) and loading user's inventory.Running multiple bots by creating instances on start, making a communication between them (using socket.io which is highly recommended over database checking (of course it's important to log everything)).Lookup for the available item to withdraw from bot (fetch assetid -> check botid containing the item) -> transfer to main bot. It's basically an easy concept, just a lot of coding and fail-safes, and the last but not least, be careful when getting item prices or any other data, make sure to always null check the items or prices. Best regardsUKFThanks ! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.