Last active
December 27, 2015 12:59
-
-
Save alivesay/7329864 to your computer and use it in GitHub Desktop.
alpha source for emma
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
channel[*].USER_JOINED_EVENT(user) = { | |
IF user.nick == 'leofseige': | |
channel.send('Hello master!'); | |
} | |
message[*].MESSAGE_EVENT(user_or_channel) = { | |
IF message == 'ping': | |
user_or_channel.send('pong'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment