So I have my code and everything looks fine but I can't find any tutorials on how to send messages on specific channel. I also thought it would be better to get help on here for embedds as well.
My current code:
Can anyone help?
My current code:
define new bot named "Soul Games":
token: "#####################################################"
intents: default intents
policy: all
auto reconnect: true
compression: none
on ready:
set {_report} to a new slash command named "Report" with description "Report a player on discord"
add new user option named "User" with description "Enter the user you woul like to report"
add new string option named "Reason" with description "Enter reason why you are reporting them"
update {_report} globally in event-bot
send "&aBot updated!" to console
on slash command:
if event-string is "report":
set {_user} to argument "User" as user
set {_reason} to argument "Reason" as user
Can anyone help?