A bot that does the math for you
This bot does math for you, It could be usefull if you are in a discord channel with your friend and are doing school. Companys could use this bot without have to take the calulator out. This bot has many math features like add, subtract and more. This bot features are also improving everyday.
--------Commands---------- /add {number} {number}
/subtract {number} {number}
/mutiply {number} {number}
/sqrt {number}
1
2 avaliações
As avaliações só podem ser feitar por usuários registrados. Todos os comentários são revisados pelos moderadores do Top.gg. Por favor, esteja ciente das nossas regras antes de postar algo.
5 estrelas
0
4 estrelas
0
3 estrelas
0
2 estrelas
0
1 estrela
2
BRUH THIS FEW COMMANDS?????? I can legit code this in python. code: from discord.ext import commands client = commands.Bot(command_prefix="/") @client.command() async def add(ctx, num1, num2): await ctx.send(f"Here is what you get when you add {num1}, {num2} together: {int(num1) + int(num2)}") @client.command() async def subtract(ctx, num1, num2): await ctx.send(f"Here ...