
S
Publisher
shuflduf
Godiscord
Tools
API Networking Bot Integration Command Messaging GDScript Multiplayer
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!
This plugin has been mirrored from the Godot Asset Library.
The plugin author is in no way affiliated with Gadget.
If you are the author of this plugin and would like this mirror removed, please contact support@gadgetgodot.com.
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!")