https://github.com/vaeb/eris
Discord bot with advanced argument parsing and parameter setup system.
https://github.com/vaeb/eris
Last synced: 8 days ago
JSON representation
Discord bot with advanced argument parsing and parameter setup system.
- Host: GitHub
- URL: https://github.com/vaeb/eris
- Owner: Vaeb
- License: mit
- Created: 2018-07-23T13:18:09.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T23:58:32.000Z (over 3 years ago)
- Last Synced: 2025-03-03T01:29:58.228Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 525 KB
- Stars: 3
- Watchers: 0
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Eris
Discord bot with an advanced argument parsing and parameter setup system.
# Example Usage
- .mute
- user:
- Types: [UserId, Username, UsernamePartial, Username#0000]
- time:
- Types: [Number, [Number, TimeFormatSmall]]
- Optional: true
- Overflows: [1]
- timeFormat:
- Types: [TimeFormat, TimeFormatSmall]
- Optional: true
- Requires: [Time]
- reason:
- Types: [Text]
- Optional: true
---
- .mute car lover3 99 minutes liking cars too much
- user: car lover3
- time: 99
- timeFormat: minutes
- reason: liking cars too much
- .mute car lov 12 days spamming car pictures
- user: car lov
- time: 12
- timeFormat: [resolved-default] minutes
- reason: spamming car pictures
- .mute car l 12d minutes will be treated as part of the reason and "days" used as the time format
- user: car l
- time: 12
- timeFormat: days
- reason: minutes will be treated as part of the reason and "days" used as the time format
- .mute 152888494165983233 17h
- user: 152888494165983233
- time: 17
- timeFormat: hours
- reason: [resolved-default] Reason not provided
- .mute 152888494165983233 99 will use default mute timeFormat
- user: 152888494165983233
- time: 99
- timeFormat: [resolved-default] minutes
- reason: will use default mute timeFormat
- .mute car lover3#0001 general offense, mute time can be auto generated
- user: car lover3#0001
- time: [resolved-default] 10
- timeFormat: [resolved-default] minutes
- reason: general offense, mute time can be auto generated
- .mute car
- user: car
- time: [resolved-default] 10
- timeFormat: [resolved-default] minutes
- reason: [resolved-default] Reason not provided