Custom status support. Easy to install and customize as long as you have basic knowledge about using and working with terminal/Windows cmd.
git clone https://github.com/QuanTrieuPCYT/discordalwayson
Here i only list some ways to install python on some popular OSes. If your OS is not included, go figure it out by yourself.
Windows please head to python.org.
macOS also python.org.
Debian distros please do:
sudo apt install python3
You can use notepad or any text editor that you like. Replace your Discord token with "YOUR TOKEN", your preferred activity type and its content.
Activity types available:
# Setting `Playing ` status
await bot.change_presence(activity=discord.Game(name="Minecraft"))
# Setting `Streaming ` status
await bot.change_presence(activity=discord.Streaming(name="My Stream", url=stream_url))
# Setting `Listening ` status
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.listening, name="a song"))
# Setting `Watching ` status
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.watching, name="henta- ah wait youtube"))
pip3 install discord.py
python main.py
Add the followings right on top of client.run(os.getenv("YOUR TOKEN"), bot=False)
keep_alive.keep_alive()
And you can head to keep_alive.py to edit your Replit site's content (edit your_site_content
)
@ItzTheLT for the code!