It logs out everytime the client receives a game message that contains "You do not have enough".
It does not watch for players saying that, only if it's a game message.
if (chatbox.isVisible()) {
List<String> messages = chatbox.getMessages(Chatbox.MessageType.GAME);
for (String message : messages) {
if (message.contains("You do not have enough")) {
stop();
}
}
}