Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/plague-doc/dnd-gold-splitter
Discord bot for splitting gold between party members in DnD.
https://github.com/plague-doc/dnd-gold-splitter
discord-bot dnd python
Last synced: 1 day ago
JSON representation
Discord bot for splitting gold between party members in DnD.
- Host: GitHub
- URL: https://github.com/plague-doc/dnd-gold-splitter
- Owner: Plague-Doc
- License: mit
- Created: 2024-03-10T07:18:15.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-12-29T15:02:23.000Z (about 1 month ago)
- Last Synced: 2024-12-29T16:18:07.067Z (about 1 month ago)
- Topics: discord-bot, dnd, python
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DnD Gold Splitter
This is a Discord bot made to specifically split found coins equally between any number of players in a DnD game.
After being added to a server, it takes in text from any channel specifically starting with the `!split` command, then followed by parameters separated by a space.## Available commands
* `!split ping` - Returns "Pong!" as a simple latency test.
* `!split help` - Returns a quick summary on formatting of commands and accepted coin types.
* `!split [number of people] [coin amount][coin type] ...` - The main command used to split coins.## Examples
* `!split 4 25gp 96sp 21cp` - Splits 25 gold, 96 silver and 21 copper between 4 people.
* `!split 5 2gp 3cp` - There doesn't need to be all 3 types present at once for it to work.
* `!split 2 8sp 16sp` - You can even have the same type multiple times!## Extra Info
* Accepted coin types are: `gp (Gold Points)` `sp (Silver Points)` `cp (Copper Points)`.
* The conversion rate between coin types is 100, as in `100 Copper = 1 Silver`, and `100 Silver = 1 Gold`.
* The bot automatically converts them before giving the total per person.