How to use keystroke, the auto starter?
Anyone know how to set up the autostarter? Do I need to download any files except the keystroke.txt? Cheers :)

So I wanna start up my bots automaticly and restart them every 1.5 hour, Any clues on how to make this? I'm really bad at understanding how to program and script things, I just want a userfriendly program or guide on how to do it :)
Make a .bat file in the pokemon folder where the bot is. Call it restartscript.bat or something. Then put in the following stuffs.
:loop START "pogobot" start.bat &^ timeout /t 5400 &^ taskkill /fi "WINDOWTITLE eq pogobot - start.bat_" /f &^ taskkill /fi "WINDOWTITLE eq pogobot - start.bat_" /f goto loop
make sure your start up .bat file is called start.bat.
Open the restartscript.bat first and it'll do the rest.
Do I need to edit anything of that you wrote @Killertom63 or can I just copy paste?
As long as your start.bat file is called "start.bat" you're fine.
@Killertom63 Sorry for being so bad at this. So I opened a notepad file and renamed it to restartscript.bat and pasted :loop START "pogobot" start.bat &^ timeout /t 5400 &^ taskkill /fi "WINDOWTITLE eq pogobot - start.bat" /f &^ taskkill /fi "WINDOWTITLE eq pogobot - start.bat" /f goto loop
after that I saved it as a bat file.
Now what is this start up bat file you are talking about? Thanks for ur help
In your directory you should have start.bat and restartscript.bat.
Just run the restartscript, that will run the start.bat and force close it every 1 hour and 30mins. Then it'll run it again.
I did the restart script, but how do I create the start.bat script? I am so confused, should I rename something in my PokemonGoBot-0.5.1 folder ( the bot folder ) to start.bat?
@Killertom63 when I open the restartscript it only opens an empty cmd and loops it every 1.5 hour. I need the empty cmd file to run java -jar PokemonGoBot-0.5.1.jar --server.port=8092
Can u add so after it will automaticly type "java -jar PokemonGoBot-0.5.1.jar --server.port=8092" too after it starts start.bat
Is there a pause between kill and restart ? I would like to use something like this but I dont wanna get a soft ban either. If you start back from starting point quick it would probably soft ban u correct?
First of all thanks for this amazing bot. I think it's one of the better bots for mac osx. Is there a possibility to make the 'loop' in a new update?
I tried to do this in mac and I have created this executable "start" which basically automates the "java -jar Poke....0.5.2.jar --server.port=8090"

The loop script "restartscript" created by @Killertom63 is for Windows, can someone help me convert it to unix?
I have created the executable "restartscript" with the codes from @Killertom63 but obviously it won't work.

Thanks guys!
@zoegalaxy are you using a MAC, cus if i am not wrong this is for windows
@swtrpeter if you put timeout /t 5400 &^ after the 2nd kill command, it will tell it to wait before doing the loop. make sure to change the sec to something better than 1 1/2 hours otherwise you it will wait 1 1/2 hours before restarting.