Welcome to GameCord

Plugin-based Discord integration and analytics for C++ game servers. Install pre-built plugins or create your own — no Discord bot coding required.

What is GameCord?

GameCord is a plugin system and cloud platform that generates C++ code for your game server to provide:

Real-time Analytics

Track kills, drops, shop transactions, dungeon completions, player stats — visualized in beautiful dashboards with charts and filters.

Discord Integration

Send rich embeds to Discord channels automatically. Configure messages visually with placeholders — no Discord.js or webhook setup required.

Plugin System

Browse ready-to-use plugins for analytics, notifications, commands and more. Or build your own with our plugin builder.

Multi-Server Support

Manage multiple game instances from one dashboard. Perfect for networks with multiple servers or testing environments.

How it Works (3 Simple Steps)

1

Create an Instance & Install Plugins

Create an instance in your dashboard, then browse the plugin shop. Install plugins for the features you want (notifications, analytics, Discord commands). Each plugin has a configuration page where you:

Set the Discord channel ID where messages should be sent
Choose simple text or rich embed format
Customize with placeholders like {playerName}, {itemName}, etc.
2

Download Generated C++ Headers

After configuring your plugins, download the package containing all C++ headers. GameCord generates the code automatically based on your configuration.

// Example: SystemNotification plugin header
#include <Packets/SystemNotification.h>
// Create and send a notification (values in constructor)
auto notif = std::make_shared<packet::SystemNotification>(
"Event Started!", // title
"New event is now live!", // description
0x00ff00 // color (green)
);
network::ClientManager::sendData(notif);
The header includes all the fields you need — just fill them and send!
3

Messages Appear in Discord Automatically

When your server calls `sendPacket()`, GameCord handles everything: WebSocket connection, message formatting with your placeholders, and delivery to Discord via bot. Your configured embed appears in Discord instantly.

✅ No Discord bot setup required — GameCord connects via socket and posts as a Discord bot

Why Choose GameCord?

Save 100+ Hours

No need to build analytics dashboards, Discord bots, or databases from scratch. GameCord provides everything out-of-the-box.

Minimal Performance Impact

Asynchronous WebSocket communication and efficient packet batching. Designed for high-performance game servers with minimal overhead.

Secure & Reliable

SSL/TLS encryption, automatic reconnection, data retention policies, and GDPR compliance built-in.

Platform Compatibility

Works with C++ Game Servers

GameCord currently generates C++ headers for integration into your game server. More languages are in development.

C++ (Available Now)
Java (Coming Soon)
C# (Coming Soon)

Pricing

Start with a Free 3-Day Trial

Full access to all features. No credit card required. Cancel anytime.

Plans start at 9.99€/month after trial.
Start Free Trial →

Next Steps