Bot help

Posts 14 of 4 · Page 1 of 1
Bot help
im trying to make a bot for the Reinforcements however im having a lot of difficulty reliably getting my character to navigate the last map without getting stuck here or pushed there.
My question is, has anyone else had difficulty with this and how did they solve it, is there something im not seeing that would make it easier without having a 15 mile long code telling my character to go left and right then forward, over and over to try to get over bumps in the terrain...

sorry if i explained myself badly im sleepy and not 100% focused, and for reference i tried the 1000 height thing just for the hell of it with no luck haha

i also cant really provide an example code i kinda rage deleted it until i am less fed up and ready to try again lol
One thing for sure is that botting isnt 100% accurate in AutoIT. things are allways going to mess up eventually.

but keeping it simple makes things workout most of the time.

Like:
Send ({"w down"});// moves forward for 3 seconds
Sleep 3000
Send({"w up"});//stops moving forward
Send({"a down"});//moves left for 3 seconds
Sleep 3000
Send({"a up"});//stops moving left
or you can go diagonally by doin this :

Code:
 Send ("{w down}");// moves diagonally forward and left  for 3 seconds
Send("{a down}")
Sleep 3000
Send("{w up}");//stops moving forward and left at the same time
Send("{a up}")
be sure to put the "" and {} on the right side of one another or shit wont happen atal

Quote Originally Posted by Corntoast View Post
One thing for sure is that botting isnt 100% accurate in AutoIT. things are allways going to mess up eventually.
you can always use a skill that you bind that used invincible frames and spam it wile you move or one that just kills shit as you move and you wont veer off course . you can make AutoIT work properly every time if you arent making the mistakes when making it. its just your intentions and the games natural latency that is not fitting into your script. but some people like there scripts to be like them. flawed. it gives it character or something blah blahblah

hi,
skyler
Quote Originally Posted by lawyer666 View Post
or you can go diagonally by doin this :

Code:
 Send ("{w down}");// moves diagonally forward and left  for 3 seconds
Send("{a down}")
Sleep 3000
Send("{w up}");//stops moving forward and left at the same time
Send("{a up}")
be sure to put the "" and {} on the right side of one another or shit wont happen atal
Brackets are only necessary with system input keys, if you want something to input as text, then don't include the bracketing.
Just figured I'd input that too :P
Posts 14 of 4 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?