2025-10-29 22:23:34 +11:00
|
|
|
extends RefCounted
|
|
|
|
|
|
|
|
|
|
#func on_ready(main, bot: DiscordBot) -> void:
|
|
|
|
|
# pass
|
|
|
|
|
#
|
|
|
|
|
#func on_autocomplete(main, bot: DiscordBot, interaction: DiscordInteraction, options: Array) -> void:
|
|
|
|
|
# pass
|
|
|
|
|
|
|
|
|
|
func execute(main, bot: DiscordBot, interaction: DiscordInteraction, options: Array) -> void:
|
|
|
|
|
print("hiya!")
|
|
|
|
|
interaction.reply(
|
|
|
|
|
{
|
2025-11-02 14:55:36 +11:00
|
|
|
"content" : "meow meow!"
|
2025-10-29 22:23:34 +11:00
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
pass
|
|
|
|
|
|
2025-11-02 14:55:36 +11:00
|
|
|
var data = ApplicationCommand.new().set_name("meow_test").set_description("meow meow meow!")
|