Skip to content

Instantly share code, notes, and snippets.

Page: operations

Section: roles

  • ⚠️ Operations Roles (operations)
    • Each role has special permissions that manage various aspects of your server. These permissions are changeable per role.

Page: league

Section: notifications

@vxWrath
vxWrath / settings.json
Created June 22, 2025 01:19
Settings for peerless
[
{
"name": "Customization",
"key": "customization",
"description": "Customize your league to your liking with settings like custom embeds, messages, emojis, etc.",
"settings": [
{
"name": "Embed Color",
"key": "embed_color",
"default_value": [],
import random
from typing import Optional, Dict, List, Tuple, Set
class Game:
def __init__(self, opponent: 'Team', is_conf: bool):
self.opponent = opponent
self.is_conf = is_conf
class Team:
def __init__(self, name: str, conference: Optional[str]=None):