discord.py pass game code example
Example 1: how to add multiple arguments in discord commands rewrite
@bot.command()
async def args(ctx, arg1, arg2):
await bot.say('You sent {} and {}'.format(arg1, arg2))
Example 2: discord.py how get user input
playerChoice = await bot.wait_for('message', check=check(context.author), timeout=30)