barebones prototype
This commit is contained in:
parent
83f340ea01
commit
b53d33584c
60 changed files with 3743 additions and 1 deletions
18
application_cmds/test_appcmd.gd
Normal file
18
application_cmds/test_appcmd.gd
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
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(
|
||||
{
|
||||
"content" : "meow meow! hearing you loud and clear tabby!"
|
||||
}
|
||||
)
|
||||
pass
|
||||
|
||||
var data = ApplicationCommand.new().set_name("meow_test").set_description("meow_desc")
|
||||
Loading…
Add table
Add a link
Reference in a new issue