From 1bf5226578764ae427f99e77581f9f0e1005a5fa Mon Sep 17 00:00:00 2001 From: czjstmax Date: Sat, 14 Feb 2026 21:07:04 +0100 Subject: betterification of `::help` Signed-off-by: czjstmax --- ambient.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ambient.py b/ambient.py index 4e9ceae..8bdd96c 100644 --- a/ambient.py +++ b/ambient.py @@ -8,7 +8,7 @@ import random TOKEN = "" PLAYLIST_URL = "https://www.youtube.com/playlist?list=PLuI-iSzcTZFUfVlc9OoZL5LbubQ_T_st9" -volume = 0.33 +volume = 0.16 intents = discord.Intents.default() intents.message_content = True @@ -126,13 +126,15 @@ async def volume_cmd(ctx, vol: str): @bot.command(aliases=['?', 'h']) async def help(ctx): await ctx.send( - "\nambient.py --- with ♥ by czjstmax\n" + "------------------------------\n" + "ambient.py --- with ♥ by czjstmax\n" "> server: discord.gg/6mbgsYveCn\n" "> github: github.com/jstmaxlol/ambient\n\n" "### >> available commands <<\n" "`::start` / `::join` / `::hi` / `::gm` - join a vc and use this command to eep ;)\n" "`::stop` / `::quit` / `::bye` / `::gn` - exits from the current vc and salutes\n" - "`::help` / `::?` / `::h` - shows this help/usage message~!" + "`::help` / `::?` / `::h` - shows this help/usage message~!\n" + "------------------------------" ) bot.run(TOKEN) -- cgit v1.3.1