Talisman Bot By Lilyz 13 May 2026
Note: exact names vary. Replace prefix as configured.
Moderation
Utility
Custom Commands & Automod
Economy / Gacha / Talisman mechanics (if included)
Social / Engagement
Configuration (admin)
import discord
from discord.ext import commands
import logging
# Initialize logger
logging.basicConfig(level=logging.INFO)
# Initialize bot
intents = discord.Intents.default()
intents.typing = False
intents.presences = False
bot = commands.Bot(command_prefix='!', intents=intents)
# Event to indicate the bot is ready
@bot.event
async def on_ready():
print(f'bot.user.name has connected to Discord!')
# Event to handle new member joins
@bot.event
async def on_member_join(member):
# Send greeting message
channel = member.guild.system_channel
if channel:
await channel.send(f'Welcome member.mention to member.guild.name!')
# Assign default role
default_role = discord.utils.get(member.guild.roles, name='Default Role')
if default_role:
await member.add_roles(default_role)
# Command to display bot information
@bot.command(name='info')
async def info(ctx):
await ctx.send(f'Hello ctx.author.mention, I am bot.user.name!')
# Command to display bot latency
@bot.command(name='ping')
async def ping(ctx):
latency = bot.latency * 1000
await ctx.send(f'Pong! latency:.2fms')
# Command to display help message
@bot.command(name='help')
async def help(ctx):
await ctx.send('Available commands: !ping, !info')
# Run the bot
bot.run('YOUR_BOT_TOKEN')
Without more specific details, here are some general steps you could take to find more information:
Most bots allow you to assign roles via reactions. Talisman takes this further with conditional role triggers. For example:
While many bots support custom commands, Talisman’s engine allows dynamic variables such as user.mention, server.memberCount, and even random.number:1-100. You can create commands that feel like native Discord features. Example:
!roll d20 could output: “Lilyz 13 rolled a 17 — Critical success!” talisman bot by lilyz 13
Before diving into the bot itself, it’s crucial to understand the mind behind the code. Lilyz 13 is a pseudonymous developer active in several niche Discord development communities. Known for a minimalist but powerful coding style, Lilyz 13 gained initial recognition by contributing to open-source moderation tools. However, Talisman represents their magnum opus—a bot built from the ground up to solve specific pain points that mainstream bots (like MEE6 or Dyno) often overlook.
The name "Talisman" is intentional. In folklore, a talisman is an object believed to possess magical properties, offering protection and good fortune to its bearer. Lilyz 13 envisioned their bot as a digital talisman for servers: a protective, enhancing presence that works quietly in the background while delivering critical functions.
| Aspect | Status | Notes |
|--------|--------|-------|
| Discord ToS (gambling) | 🟡 Caution | If /luck uses real virtual currency with “pay to roll,” may violate Discord’s gambling policy. Should use only earnable in-game coins. |
| Data Collection | 🟢 Low | Unlikely to collect personal data beyond Discord User ID. |
| Code Security | 🟡 Moderate | Custom code may have injection risks if eval() or unsafe JSON parsing is used. |
| Uptime & Support | 🔴 Potential issue | Individual developers often have inconsistent hosting. | Note: exact names vary