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개
리뷰는 등록된 사용자만 남길 수 있습니다. 모든 리뷰는 Top.gg의 사이트 중재자가 관리합니다. 게시하기 전 저희의 지침을 반드시 확인해 주세요.
별점 5점
0
별점 4점
0
별점 3점
0
별점 2점
0
별점 1점
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 ...