Skip to content

Instantly share code, notes, and snippets.

@itsmefox
Last active May 20, 2022 08:35
Show Gist options
  • Save itsmefox/4efe05b9fae1b9b46a3a8d2f0822bb15 to your computer and use it in GitHub Desktop.
Save itsmefox/4efe05b9fae1b9b46a3a8d2f0822bb15 to your computer and use it in GitHub Desktop.
Creating a Discord Bot with Kotlin - BasicBotApplication - 1
class BasicBotApplication {
companion object {
@JvmStatic
fun main(args: Array<String>) {
val token = ""
//Create a new JDA instance
val jda = JDABuilder.createDefault(token).build()
//Set the activity to "I'm Ready"
jda.presence.activity = Activity.playing("I'm Ready")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment