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 Bewertungen
Reviews can be left only by registered users. All reviews are moderated by Top.gg moderators. Please make sure to check our guidelines before posting.
5 Sterne
0
4 Sterne
0
3 Sterne
0
2 Sterne
0
1 Stern
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 ...