Monday, May 24, 2010

What programming language do i need to learn to create an auto-tasker?

I am planning on creating a program that goes online and does stuff automatically like say, it goes to a site like www.kingsofchaos.com (a text based mmorpg) and it automatically logs me in, and buys weapons and stuff automatically.





What programming language do i need to know to create such a thing?

What programming language do i need to learn to create an auto-tasker?
uhh, i hope you really like this game :)





well, if it's like most of the web based games i saw - you do stuff by basically submitting form parameters (which you of course find on html source in form tags). so, ie to login you would do http post (or get) www.whatever.com/login.php? user=xxx%26amp;pass=xxx





you have to figure out what the parameters are by digging through html. most likely your program would have to do so also - ie if you go to shop.php your program has to parse the html to find what is for sale, and then submit (or not) to ie pay.php with parameters of whatever you want to buy.





if you can select it (and see it) - it's somewhere in the html you got. you just have to code your program so it drops html and leaves you with parameters (which when submitted do something in the game).





now if the game uses AJAX then you'll have much more fun - you'll have to parse javascript to get your parameters.





it's basically really simple - but awfully time consuming. and if the game author changes something, you will have to, too.





absolutely anything that can use http and parse text will do.
Reply:You have to create a windows service. You can do it in any programming language like VB, VC++, C#, VB.Net
Reply:Create a batch file and save it as XXX.bat. The batch can contain all of the command you want to complete your tasks.


No comments:

Post a Comment