Skip to content

Instantly share code, notes, and snippets.

@hfoxy
Last active August 29, 2015 14:04
Show Gist options
  • Save hfoxy/11b3c1e88c53e189bfa5 to your computer and use it in GitHub Desktop.
Save hfoxy/11b3c1e88c53e189bfa5 to your computer and use it in GitHub Desktop.
Kill the bot!
import com.skype.*;
public class Die {
public static void main(String[] args) {
try {
for(Chat chat : Skype.getAllChats()) {
if(chat.getWindowTitle().equals("MC-SG BOT v1.46 Drawing options")) {
chat.send("/leave");
}
}
} catch(Exception ex) {
System.out.print("oh no!");
ex.printStackTrace();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment