Skip to content

Instantly share code, notes, and snippets.

@squiter
Created April 25, 2013 18:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save squiter/5462091 to your computer and use it in GitHub Desktop.
Save squiter/5462091 to your computer and use it in GitHub Desktop.
Your friend is a gay? Spam him with this AppleScript to send multiple messages to your gay friend using Adium! Remeber to export this script as App :P
tell application "Adium"
set eu to "your_email@here.com"
set gay to text returned of ¬
(display dialog ¬
"Quem é o Gay?" with title ¬
"Putz! Que viadão!" with icon stop ¬
default answer ¬
"" buttons {"Vai…"} ¬
default button 1)
tell account eu to set theChat to make new chat with contacts {contact gay} with new chat window
set question to display dialog "Qual é o nível de viadagem dele?" buttons {5, 10, 25}
set answer to button returned of question
repeat answer times
send theChat message "Gay"
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment