Skill set for bot design

  • Thread starter Thread starter Deleted member 938565
  • Start date Start date
D

Deleted member 938565

Guest
Hey So can anyone explain to me the languages and any more specific skills that are best suited to bot design, like eg. video uploader, twitter bot etc...
I have some experience with programming for the web but little with anything outside of that and the closest thing I know I think could be suitable is python, although I wouldn't know where to start with that and assume it'd take some wider scoped study of it.
Would be really interested to hear about the languages and skills in general used by any bot makers here.
Thanks!:D
 
You can make a bots using almost any of the popular languages.
most popular for desktop - C# based bots i guess.

for server languages - php easier, but in common - any. java, js, whatever.

You case base your bot on simple HTTP requests / on some API
 
first you should clearly define your goals. specific tasks in mind like account creation, uploading ,reposting, posting original content, do everything ?
your goal is to sell the software or operate it yourself(user friendly controller or txt config files)? if you plan to use yourself what is your strategy? long term, short term, selling likes,views to clients, spamming?
how many accounts the bot should handle? 10,1000,10000?
if 10000, what is your political views :D? and what structure your bot will have? this could affect choice of the language.
start by researching and testing the service you want to bot.
and don't try to make universal platform for everything. ;)
 
Yup, any language can work.

But it really depends on what your bot needs to do. Simple stuff can be made even in .bat scripts :)

All languages are quite simmiliar IMO, ifs, loops, methods... I personally can make anything in Java.
 
You need to know HTTP in and out, and understand what CSRF is, how cookies and sessions work, proxies, etc. Whatever language you want to implement all of that in is up to you. You'll also want to figure out how you can squeeze every last bit of performance out of your bot. You're going to need it if you're using slow connections and proxies. I suggest an async approach rather than multithreaded.
 
Back
Top