4
« Last post by UmaR on March 15, 2025, 05:19:27 PM »
Note: Make sure that your bot is created and added to the relevant discord server. You can go through online how to do that. Here, you will find only how you can connect to the bot from the VCMP server and perform relevant actions.
You will need to include the 3 files given below as attachments.
Connecting to the discord Bot
Use the below to connect to the discord bot
Discord.Connect(IP, Port, Password);
Example is:
Discord.Connect(“213.239.220.17”, 7001, “testpassword”);
Sending Message to the discord server
To send messages to the discord, use
Discord.SendMessage(“channel-id”, “message”);
Sending Embeds to the discord server
Embed is customizable. It can have a lot of things
local embed = EmbedBuilder()
.setTitle("Success")
.setDescription("Connected to the server.")
.setColor("#00CC00")
.addField("Field1", "Value1", true)
.addField("Field2", "Value2", false)
.setFooter("Footer text");
Discord.SendEmbed("channel-id", embed);
Receiving Messages from the discord server
There is a function in CDiscord.nut named onMessageReceive. It has one parameter named msg. It is triggered as soon as a message arrives from discord. The msg is an object and it can have the following syntax:
{
id: "Message ID",
user: {
id: "ID of the User",
isBot: "A boolean value if the message is of a bot",
username: "The username of the author",
globalName: "A nickname if the user has one",
roles: [
{
id: "Role ID",
name: "Role name",
color: "Role color",
}
],
},
content: "The message sent by the user",
channelId: "The channel where the message is sent",
time: "Time of the message",
}
So if you basically want to just send the received discord message to the server, you need to do:
function onMessageReceive(msg)
{
Message(msg.user.globalName + ": " + msg.content);
}