Entwickle für GameVox mit deinem vorhandenen Discord-Code.
Dein bestehender discord.js-, discord.py-, JDA- oder Eris-Bot läuft auf GameVox, sobald du eine Konfigurationszeile änderst. Kein SDK-Wechsel. Keine Protokollanpassungen. Richte Gateway und REST auf uns aus und leg los.
discord.js
const client = new Client({
intents: [/* ... */],
rest: { api: 'https://bot-api.gamevox.com/api' },
ws: { gatewayURL: 'wss://gateway.gamevox.com' },
});
client.login(YOUR_BOT_TOKEN); discord.py
import discord
discord.http.Route.BASE = (
'https://bot-api.gamevox.com/api/v10'
)
discord.gateway.DiscordWebSocket.DEFAULT_GATEWAY = (
'wss://gateway.gamevox.com/?v=10&encoding=json'
)
intents = discord.Intents.default()
client = discord.Client(intents=intents)
client.run(YOUR_BOT_TOKEN) Deine Anwendungen
Wird geladen…