Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser




Quick Information

Use the Discord Bot API directly within Godot! Useful for integrating your Godot game with a server, for example.Big thanks to @lyghtkruz on GitHub for keeping the project alive!
Godiscord
Make a Discord bot directly in the Godot Game Engine!
Examples
Ping-Pong
extends Node
@onready var discord_bot: DiscordBot = $DiscordBot
func _ready() -> void:
discord_bot.token = OS.get_environment("DISCORD_BOT_TOKEN")
func _on_discord_bot_message_recieved(message: DiscordMessage) -> void:
if message.content == "!ping":
message.reply("Pong!")
Custom command with options
Button to send message
Use the Discord Bot API directly within Godot! Useful for integrating your Godot game with a server, for example.
Big thanks to @lyghtkruz on GitHub for keeping the project alive!
Reviews
Quick Information

Use the Discord Bot API directly within Godot! Useful for integrating your Godot game with a server, for example.Big thanks to @lyghtkruz on GitHub for keeping the project alive!