Skip to content

Instantly share code, notes, and snippets.

View AnshAg2007's full-sized avatar
❤️
I Love Python

AnshAg2007

❤️
I Love Python
  • NotWorkingAnyWhereYet
  • India
View GitHub Profile
@AnshAg2007
AnshAg2007 / rps.cs
Created February 27, 2021 11:01
My first game in c#
using System;
namespace Game
{
class RockPaperScissor
{
public static void Main(string[] args)
{
var rand = new Random();
while (true)

Ansh Agarwal

Amateur Discord Bots Developer

Libraries I use:-

Discord.py(Python) Discord.js(JavaScript)

Top Bots:-

KatanaBot :- Moderation Bot

@AnshAg2007
AnshAg2007 / bot.py
Created December 28, 2020 08:39
Basic Bot Setup With Cogs & Custom Prefix
"""The Creator of this code is AnshAg2007"""
"""This is a very basic setup of a discord.py bot with cogs and custom prefix
But to use it,you must know the basic cog structures too."""
import discord
import json
import os
from discord.ext import commands
"""At Above we have imported discord.py,os and json database,
we also imported commands from discord extension."""