applications.yml

applications.yml Configuration File & information about it.

Configuration file used to manage & setup applications.

File Content

# ________________________________________________
#
#       CHAMPION ULTRA APPLICATIONS FILE
#
# Here you can customize applications
#
# ________________________________________________

# Application Name
- name: "Staff Team Application"
  # Placeholder for Select Menu
  placeholder: "Apply for the Staff Team."
  # Comment that's shown in applications list
  comment: "Here you can apply for Staff Team."
  # Unique ID of application.
  # All lowercase, without spaces & symbols except for '_'
  id: "staff_team"
  # Whether applications are open for new submissions
  status: true
  # Select Menu Emoji 
  emoji: "👨🏻‍💻"
  # Roles which to mention when application is received
  roles: []
  # Channel into which to send applications
  # Need separate_applications: true
  channel: ""
  # ID of Channel into which to send accepted applications
  # Need separate_decision: true
  channel_accepted: ""
  # ID of Channel into which to send denied applications
  # Need separate_decision: true
  channel_denied: ""
  # Applications Limits
  limits:
    # Number of Applications User can send
    user: 1
  # Button Configuration
  button:
    text: "Start Questions"
    text_cancel: "Cancel Application"
    # Color for Start Button
    # Can be Primary (Blue one), Secondary (Gray), Success (Green) and Danger (Red)
    color: "Primary"
    start_emoji: "⭐"
    stop_emoji: "❎"
  # Requirements for the Application
  # 0 = no requirement, [] = no requirement (roles/permissions)
  requirements:
    level: 0
    money: 0
    roles: []
  # Embed in Ticket Channel
  embed:
    # Title of Embed for Application
    # Available Placeholders: <application>
    title: "Application - <application>"
    # Description of Embed for this Application
    # Available Placeholders: <user>, <application>, <level_req>, <money_req>, <roles_req>, <perms_req>
    description: "Hello <user>, you've started application for <application>. Please use the button to start questionnaire."
    # Image in the Top Right Corner, leave empty to disable
    thumbnail: ""
    # Image above footer, leave empty to disable
    image: ""
    # Embed Color, can be Name (Red, Green etc.) or HEX (#f1f1f1, #dddddd etc.)
    color: "Yellow"
  # List of Questions for Application
  questionsList:
    # Name for question, used for title, max. 45 characters long
    - name: "First Question"
      # Question to ask, max. 100 characters long
      question: "This is First Question."
    - name: "Second Question"
      question: "This is Second Question."
    - name: "Third Question"
      question: "This is Third Question."

Last updated

Was this helpful?