Discord for my server

08/11/2020 06:14 minaadel1596#1
Hii Dears
i see many server make bots for there discord to show on it Quests and online player so i need help to make a bot like that one please if any one can help
url=https://ibb.co/bvYVZxh][Only registered and activated users can see links. Click Here To Register...][/url]
[Only registered and activated users can see links. Click Here To Register...]

[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
09/17/2020 14:39 Zerdz#2
bump
09/18/2020 02:30 Latyos#3
Step 1: Google "Discord framework {insert language}" (Would be C# for most of you)
Step 2: End up at this repo: [Only registered and activated users can see links. Click Here To Register...]
Step 3: Install it in your project, preferably via NuGet
Step 4: Go to samples; [Only registered and activated users can see links. Click Here To Register...]
Step 5: Use "commands-framework" example for commands, such as /online
Step 6: Use webhook example for posting event announcements.
Step 7: ???
Step 8: Profit

Alternatively, if you don't want commands, you can just send HTTP requests to webhook.
02/06/2021 05:28 Energetic(H)#4
Contact Me Discord
Hatem#1000
02/09/2021 21:25 ParadiseConquer#5
I coded this system. I can add all the commands you want to your discord. /online /players /ips /expmob etc etc. Want to start an event while you're out ? Just login your discord account on your phone and type the following command. /classpk
You can control your entire server remotely from discord. Contact me to buy.
02/10/2021 17:02 turk55#6
Quote:
Originally Posted by Latyos View Post
Step 1: Google "Discord framework {insert language}" (Would be C# for most of you)
Step 2: End up at this repo: [Only registered and activated users can see links. Click Here To Register...]
Step 3: Install it in your project, preferably via NuGet
Step 4: Go to samples; [Only registered and activated users can see links. Click Here To Register...]
Step 5: Use "commands-framework" example for commands, such as /online
Step 6: Use webhook example for posting event announcements.
Step 7: ???
Step 8: Profit

Alternatively, if you don't want commands, you can just send HTTP requests to webhook.
Why webhooks? Create a socket connection from your gameserver to your discord bot and you can have real time data that is bidirectional.

[Only registered and activated users can see links. Click Here To Register...]

Me -> Discord -> Discord bot -> Discord -> Discord bot -> Game Server -> Discord bot -> Discord
02/11/2021 04:55 Latyos#7
Quote:
Originally Posted by turk55 View Post
Why webhooks? Create a socket connection from your gameserver to your discord bot and you can have real time data that is bidirectional.

[Only registered and activated users can see links. Click Here To Register...]

Me -> Discord -> Discord bot -> Discord -> Discord bot -> Game Server -> Discord bot -> Discord
That's also possible as you said but don't you think it would be too much for a guy that asks how he can implement Discord functionality in his server? Either way if you host the bot inside of your server project on a seperate thread, both accomplishes same goal, you can have bidirectional functionality as well as real time data shown by webhooks too. Of course, you need to give up on your bot while your server is not online/turned on.