├── LICENSE ├── Profile-base.png ├── ai.json ├── alias_role.json ├── anti.json ├── autoresponse.json ├── autorole.json ├── blacklist.json ├── cogs ├── __init__.py ├── commands │ ├── Afk.py │ ├── AutoPfp.py │ ├── Own.py │ ├── __pycache__ │ │ ├── AutoPfp.cpython-310.pyc │ │ ├── AutoPfp.cpython-311.pyc │ │ ├── AutoPfp.cpython-38.pyc │ │ ├── Own.cpython-310.pyc │ │ ├── Own.cpython-311.pyc │ │ ├── Own.cpython-38.pyc │ │ ├── ai.cpython-38.pyc │ │ ├── anti.cpython-310.pyc │ │ ├── anti.cpython-311.pyc │ │ ├── anti.cpython-38.pyc │ │ ├── extra.cpython-310.pyc │ │ ├── extra.cpython-311.pyc │ │ ├── extra.cpython-38.pyc │ │ ├── general.cpython-310.pyc │ │ ├── general.cpython-311.pyc │ │ ├── general.cpython-38.pyc │ │ ├── giveaway.cpython-310.pyc │ │ ├── giveaway.cpython-311.pyc │ │ ├── giveaway.cpython-38.pyc │ │ ├── help.cpython-310.pyc │ │ ├── help.cpython-311.pyc │ │ ├── help.cpython-38.pyc │ │ ├── ignore.cpython-310.pyc │ │ ├── ignore.cpython-311.pyc │ │ ├── ignore.cpython-38.pyc │ │ ├── logging.cpython-311.pyc │ │ ├── moderation.cpython-310.pyc │ │ ├── moderation.cpython-311.pyc │ │ ├── moderation.cpython-38.pyc │ │ ├── music.cpython-310.pyc │ │ ├── music.cpython-311.pyc │ │ ├── music.cpython-38.pyc │ │ ├── nsfw.cpython-310.pyc │ │ ├── nsfw.cpython-311.pyc │ │ ├── nsfw.cpython-38.pyc │ │ ├── owner.cpython-310.pyc │ │ ├── owner.cpython-311.pyc │ │ ├── owner.cpython-38.pyc │ │ ├── premium.cpython-310.pyc │ │ ├── premium.cpython-311.pyc │ │ ├── premium.cpython-38.pyc │ │ ├── raidmode.cpython-310.pyc │ │ ├── raidmode.cpython-311.pyc │ │ ├── raidmode.cpython-38.pyc │ │ ├── role.cpython-310.pyc │ │ ├── role.cpython-311.pyc │ │ ├── role.cpython-38.pyc │ │ ├── selfrole.cpython-310.pyc │ │ ├── selfrole.cpython-311.pyc │ │ ├── selfrole.cpython-38.pyc │ │ ├── vcrole.cpython-310.pyc │ │ ├── vcrole.cpython-311.pyc │ │ ├── vcrole.cpython-38.pyc │ │ ├── vcroles.cpython-310.pyc │ │ ├── vcroles.cpython-311.pyc │ │ ├── vcroles.cpython-38.pyc │ │ ├── welcome.cpython-310.pyc │ │ ├── welcome.cpython-311.pyc │ │ └── welcome.cpython-38.pyc │ ├── ai.py │ ├── anti.py │ ├── extra.py │ ├── general.py │ ├── giveaway.py │ ├── help.py │ ├── ignore.py │ ├── logging.py │ ├── moderation.py │ ├── music.py │ ├── nsfw.py │ ├── owner.py │ ├── premium.py │ ├── raidmode.py │ ├── role.py │ ├── selfrole.py │ ├── vcrole.py │ ├── vcroles.py │ └── welcome.py ├── dropdown │ ├── Moderation.py │ ├── anti1.py │ ├── extra.py │ ├── general.py │ ├── hacker.py │ ├── loggingdrop.py │ ├── music.py │ ├── nsfw.py │ ├── raidmode.py │ ├── voice.py │ └── welcomer.py └── events │ ├── Errors.py │ ├── antiban.py │ ├── antibot.py │ ├── antichannel.py │ ├── antiemojid.py │ ├── antiemojiu.py │ ├── antiemostick.py │ ├── antiguild.py │ ├── antikick.py │ ├── antiping.py │ ├── antiprune.py │ ├── antirole.py │ ├── antiwebhook.py │ ├── auto.py │ ├── autoblacklist.py │ ├── automodevent.py │ ├── autorole.py │ ├── greet2.py │ ├── member_update.py │ ├── on_guild.py │ └── voiceupdate.py ├── config.json ├── core ├── Astroz.py ├── Cog.py ├── Context.py └── __init__.py ├── events.json ├── extra.json ├── gender.json ├── giveaways.json ├── greet.json ├── guild-bl.json ├── ignore.json ├── info.json ├── lund.json ├── main.py ├── media.json ├── pfp.json ├── premium.json ├── proxies.txt ├── status.json ├── utils ├── Tools.py ├── __init__.py ├── config.py ├── help.py ├── paginator.py └── paginators.py └── vcrole.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/LICENSE -------------------------------------------------------------------------------- /Profile-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/Profile-base.png -------------------------------------------------------------------------------- /ai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/ai.json -------------------------------------------------------------------------------- /alias_role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/alias_role.json -------------------------------------------------------------------------------- /anti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/anti.json -------------------------------------------------------------------------------- /autoresponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/autoresponse.json -------------------------------------------------------------------------------- /autorole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/autorole.json -------------------------------------------------------------------------------- /blacklist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/blacklist.json -------------------------------------------------------------------------------- /cogs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/__init__.py -------------------------------------------------------------------------------- /cogs/commands/Afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/Afk.py -------------------------------------------------------------------------------- /cogs/commands/AutoPfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/AutoPfp.py -------------------------------------------------------------------------------- /cogs/commands/Own.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/Own.py -------------------------------------------------------------------------------- /cogs/commands/__pycache__/AutoPfp.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/AutoPfp.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/AutoPfp.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/AutoPfp.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/AutoPfp.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/AutoPfp.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/Own.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/Own.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/Own.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/Own.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/Own.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/Own.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/ai.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/ai.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/anti.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/anti.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/anti.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/anti.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/anti.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/anti.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/extra.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/extra.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/extra.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/extra.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/extra.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/extra.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/general.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/general.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/general.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/general.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/general.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/general.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/giveaway.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/giveaway.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/giveaway.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/giveaway.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/giveaway.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/giveaway.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/help.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/help.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/help.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/help.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/help.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/help.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/ignore.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/ignore.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/ignore.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/ignore.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/ignore.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/ignore.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/logging.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/logging.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/moderation.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/moderation.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/moderation.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/moderation.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/moderation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/moderation.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/music.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/music.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/music.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/music.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/music.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/music.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/nsfw.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/nsfw.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/nsfw.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/nsfw.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/nsfw.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/nsfw.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/owner.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/owner.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/owner.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/owner.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/owner.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/owner.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/premium.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/premium.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/premium.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/premium.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/premium.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/premium.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/raidmode.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/raidmode.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/raidmode.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/raidmode.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/raidmode.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/raidmode.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/role.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/role.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/role.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/role.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/role.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/role.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/selfrole.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/selfrole.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/selfrole.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/selfrole.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/selfrole.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/selfrole.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/vcrole.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/vcrole.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/vcrole.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/vcrole.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/vcrole.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/vcrole.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/vcroles.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/vcroles.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/vcroles.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/vcroles.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/vcroles.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/vcroles.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/welcome.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/welcome.cpython-310.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/welcome.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/welcome.cpython-311.pyc -------------------------------------------------------------------------------- /cogs/commands/__pycache__/welcome.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/__pycache__/welcome.cpython-38.pyc -------------------------------------------------------------------------------- /cogs/commands/ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/ai.py -------------------------------------------------------------------------------- /cogs/commands/anti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/anti.py -------------------------------------------------------------------------------- /cogs/commands/extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/extra.py -------------------------------------------------------------------------------- /cogs/commands/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/general.py -------------------------------------------------------------------------------- /cogs/commands/giveaway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/giveaway.py -------------------------------------------------------------------------------- /cogs/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/help.py -------------------------------------------------------------------------------- /cogs/commands/ignore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/ignore.py -------------------------------------------------------------------------------- /cogs/commands/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/logging.py -------------------------------------------------------------------------------- /cogs/commands/moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/moderation.py -------------------------------------------------------------------------------- /cogs/commands/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/music.py -------------------------------------------------------------------------------- /cogs/commands/nsfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/nsfw.py -------------------------------------------------------------------------------- /cogs/commands/owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/owner.py -------------------------------------------------------------------------------- /cogs/commands/premium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/premium.py -------------------------------------------------------------------------------- /cogs/commands/raidmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/raidmode.py -------------------------------------------------------------------------------- /cogs/commands/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/role.py -------------------------------------------------------------------------------- /cogs/commands/selfrole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/selfrole.py -------------------------------------------------------------------------------- /cogs/commands/vcrole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/vcrole.py -------------------------------------------------------------------------------- /cogs/commands/vcroles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/vcroles.py -------------------------------------------------------------------------------- /cogs/commands/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/commands/welcome.py -------------------------------------------------------------------------------- /cogs/dropdown/Moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/dropdown/Moderation.py -------------------------------------------------------------------------------- /cogs/dropdown/anti1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/dropdown/anti1.py -------------------------------------------------------------------------------- /cogs/dropdown/extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/dropdown/extra.py -------------------------------------------------------------------------------- /cogs/dropdown/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/dropdown/general.py -------------------------------------------------------------------------------- /cogs/dropdown/hacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/dropdown/hacker.py -------------------------------------------------------------------------------- /cogs/dropdown/loggingdrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/dropdown/loggingdrop.py -------------------------------------------------------------------------------- /cogs/dropdown/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/dropdown/music.py -------------------------------------------------------------------------------- /cogs/dropdown/nsfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/dropdown/nsfw.py -------------------------------------------------------------------------------- /cogs/dropdown/raidmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/dropdown/raidmode.py -------------------------------------------------------------------------------- /cogs/dropdown/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/dropdown/voice.py -------------------------------------------------------------------------------- /cogs/dropdown/welcomer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/dropdown/welcomer.py -------------------------------------------------------------------------------- /cogs/events/Errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/Errors.py -------------------------------------------------------------------------------- /cogs/events/antiban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/antiban.py -------------------------------------------------------------------------------- /cogs/events/antibot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/antibot.py -------------------------------------------------------------------------------- /cogs/events/antichannel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/antichannel.py -------------------------------------------------------------------------------- /cogs/events/antiemojid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/antiemojid.py -------------------------------------------------------------------------------- /cogs/events/antiemojiu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/antiemojiu.py -------------------------------------------------------------------------------- /cogs/events/antiemostick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/antiemostick.py -------------------------------------------------------------------------------- /cogs/events/antiguild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/antiguild.py -------------------------------------------------------------------------------- /cogs/events/antikick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/antikick.py -------------------------------------------------------------------------------- /cogs/events/antiping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/antiping.py -------------------------------------------------------------------------------- /cogs/events/antiprune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/antiprune.py -------------------------------------------------------------------------------- /cogs/events/antirole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/antirole.py -------------------------------------------------------------------------------- /cogs/events/antiwebhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/antiwebhook.py -------------------------------------------------------------------------------- /cogs/events/auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/auto.py -------------------------------------------------------------------------------- /cogs/events/autoblacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/autoblacklist.py -------------------------------------------------------------------------------- /cogs/events/automodevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/automodevent.py -------------------------------------------------------------------------------- /cogs/events/autorole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/autorole.py -------------------------------------------------------------------------------- /cogs/events/greet2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/greet2.py -------------------------------------------------------------------------------- /cogs/events/member_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/member_update.py -------------------------------------------------------------------------------- /cogs/events/on_guild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/on_guild.py -------------------------------------------------------------------------------- /cogs/events/voiceupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/cogs/events/voiceupdate.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/config.json -------------------------------------------------------------------------------- /core/Astroz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/core/Astroz.py -------------------------------------------------------------------------------- /core/Cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/core/Cog.py -------------------------------------------------------------------------------- /core/Context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/core/Context.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/core/__init__.py -------------------------------------------------------------------------------- /events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/events.json -------------------------------------------------------------------------------- /extra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/extra.json -------------------------------------------------------------------------------- /gender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/gender.json -------------------------------------------------------------------------------- /giveaways.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/giveaways.json -------------------------------------------------------------------------------- /greet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/greet.json -------------------------------------------------------------------------------- /guild-bl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/guild-bl.json -------------------------------------------------------------------------------- /ignore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/ignore.json -------------------------------------------------------------------------------- /info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/info.json -------------------------------------------------------------------------------- /lund.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/lund.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/main.py -------------------------------------------------------------------------------- /media.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/media.json -------------------------------------------------------------------------------- /pfp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/pfp.json -------------------------------------------------------------------------------- /premium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/premium.json -------------------------------------------------------------------------------- /proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/proxies.txt -------------------------------------------------------------------------------- /status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/status.json -------------------------------------------------------------------------------- /utils/Tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/utils/Tools.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/utils/help.py -------------------------------------------------------------------------------- /utils/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/utils/paginator.py -------------------------------------------------------------------------------- /utils/paginators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/utils/paginators.py -------------------------------------------------------------------------------- /vcrole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItzYourHacker/Kryptonv2/HEAD/vcrole.json --------------------------------------------------------------------------------