- Joined
- Jan 28, 2017
- Messages
- 492
- Thread Author
- #1
Is it possible if the client is down after an update, to block it from running bots? This way we can prevent people from posting bad reviews/comments when it's not the authors fault.
Alternatively, can the developers get a flag somewhere to check on it? So we can build in support for it in our bots?
e.g.
Alternatively, can the developers get a flag somewhere to check on it? So we can build in support for it in our bots?
e.g.
Code:
public void onstart(Args ...)
{
if(!Environment.isGameTypeAvailable(Environment.getGameType()){
getLogger().println(Error, "Cient is currently down.");
/* log out & stop bot */
}
}