Question discord bot event setup question?

wafe12345

Buccaneer
hello is it possible to set up a bot in discord to show events and invasions on discord. i want to know if possible.
 
When you come to a GitHub repository, the first thing you should always do is check the 'README.md' if there is one. It usually includes a description of the repo and what to do with it.

https://github.com/TheLegendofPiratesOnline/discord-bot/blob/stable/README.md

Keep in mind, this bot runs on your machine unless you can get dedicated hosting for it. Some people prefer to use an AWS (free) server, Raspberry Pi, or Arduino so they don't have to host off their daily driver. The AWS server will probably be good enough for your purposes.
 
Last edited:
ok this is what i did.

cd \Users\eric\Desktop\discord-bot-stable"

i idk where to run this command

python3 -m pip install -r requirements.txt
 
When you come to a GitHub repository, the first thing you should always do is check the 'README.md' if there is one. It usually includes a description of the repo and what to do with it.

https://github.com/TheLegendofPiratesOnline/discord-bot/blob/stable/README.md

Keep in mind, this bot runs on your machine unless you can get dedicated hosting for it. Some people prefer to use an AWS (free) server, Raspberry Pi, or Arduino so they don't have to host off their daily driver. The AWS server will probably be good enough for your purposes.
ok this is what i did.

cd \Users\eric\Desktop\discord-bot-stable"

i idk where to run this command

python3 -m pip install -r requirements.txt
 
You don't have to ping me twice, and you wouldn't be wondering what to do if you had read the document.

You have to install Python first.

Open Command Prompt, and enter both of those commands in order.

The CD command changes the directory from which command prompt is executing commands. The second command downloads dependencies for the bot.

Lastly, you run:
Code:
python3 -m bot.core.BotStart
and configure the bot as needed.

The readme had all of this information already in front of you. I strongly recommend developing a habit of reading them.
 
dude i am reading them i am following the instruction as i go along.
the first thing i downloaded was python.
then did CD \Users\eric\Desktop\discord-bot-stable\bot"
its says to change directory. now its saying python3' is not recognized as an internal or external command,
 
Last edited:
Back
Top