wich is the best scripting langage to build a bot?

megadan90

Newbie
Joined
Mar 31, 2016
Messages
21
Reaction score
3
Hello guys,

I am looking to learn to build bots, I already have some knowledge in coding.
does anyone have some suggestions?

What I would like to achieve is to run multiple instances of the same software (possibly w/o gui) while obfuscating/spoofing the hosting system.

I did some researches and it seems that C# is the way to go

What would you recommend for me? Any other advice? You can also DM me. Thank you!
 
Nodejs/ python can be good as well. Given that you can control them properly. All depends on your experience in a particular language. I am not good in c# so I won’t comment on that.
 
Nodejs/ python can be good as well. Given that you can control them properly. All depends on your experience in a particular language. I am not good in c# so I won’t comment on that.

I have some basic knowledge of py, where should I look for the spoofing hosting system part?
any resources on which is the best way to set up multithreading?
 
I have some basic knowledge of py, where should I look for the spoofing hosting system part?
any resources on which is the best way to set up multithreading?

Multi threading example
Code:
https://stackoverflow.com/questions/2846653/how-can-i-use-threading-in-python

As for "spoofing hosting system", I am not exactly sure what you mean. If you mean spoofing a normal looking browser session, you will have to dig into selenium and undetectable chromium. An example would be

Code:
https://stackoverflow.com/questions/33225947/can-a-website-detect-when-you-are-using-selenium-with-chromedriver/41220267

But the techniques might change time to time. You will have to keep yourself updated.
 
Choose whatever language you know best because otherwise you will need to learn the language while learning to bot which could slow you down and frustrate you.

I would prefer Java over C# because Java can run anywhere while C# can only run on windows. C# is very similar to Java. Microsoft used to have a framework called XNA that allowed you to create games using C#. I grew up knowing Java and was easily able to create a C# app.

All of this is moot if you don’t know either language. Python and PHP are retard friendly because they are higher level scripting languages and a good candidate to learn how to program and develop. Premature optimization is the root of all evil so don’t concern yourself with multithreading, scaling, or performance until you get something working first. If you’re worried about the end product before getting to the end you’ll never end.
 
Choose whatever language you know best because otherwise you will need to learn the language while learning to bot which could slow you down and frustrate you.
Exactly. There is no "best" language. All depends on what OP is comfortable with. Well said.
 
Maybe better ask yourself the question what you would like to do?
Also you could consider to use ready solutions instead of programming it all yourself... Especially if these solutions also have an api, then you can easily integrate it with your desired software...
I like using a parser... It has multithreading and an api... It has many prebuild parsers and you can create your custom ones with node.js!
 
many thanks guys for all the suggestions!
 
Python should be good and easier to learn. But honestly, just pick one and start. You will be stuck forever if you are trying to find the perfect one and you will never learn.
 
I highly recommend python, most softwares are built on that
 
NodeJS if you want to spend as little time as possible. Python if you want it to be stable
 
I dont think Python is the best language, but the reason I would recommend it is, becasue soooo many people use it , any problem you have ever had theres a answer on SO , more YT videos than you will ever need, .. so yeah start with Python for browser bots.
 
Python is very common, I would recommend that as that usually means easier to get support if required
 
Back
Top