Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/valen-h/ravenfall-bot
A bot for a Twitch game called Ravenfall.
https://github.com/valen-h/ravenfall-bot
auto automation bot ravenfall script twitch
Last synced: 16 days ago
JSON representation
A bot for a Twitch game called Ravenfall.
- Host: GitHub
- URL: https://github.com/valen-h/ravenfall-bot
- Owner: Valen-H
- License: apache-2.0
- Created: 2021-09-18T13:28:05.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T21:50:47.000Z (about 2 years ago)
- Last Synced: 2024-11-06T10:12:30.557Z (2 months ago)
- Topics: auto, automation, bot, ravenfall, script, twitch
- Language: HTML
- Homepage: https://valen-h.github.io/RavenFall-Bot/ravenbot.html
- Size: 145 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RavenFall-Bot
A bot for a Twitch game called Ravenfall.
Run without download from here:## Settings
* **D** - Dungeons Enabled.
* **D(x)** - Enable Dungeons and respond to `x` (RegExp) sent by anyone (including non-bots).
* **R** - Raids Enabled.
* **R(x)** - Enable Raids and respond to `x` (RegExp) sent by anyone (including non-bots).
* **J** - AutoJoin Enabled.
* **J(x)** - Enable AutoJoin and join as `x` [`x` must by _alphanumeric_ and **not capitalized!**].## Notes
### AutoFilling
> `a,,,` becomes `a,a,a,a`.
> `a,,b,` becomes `a,a,b,b,b,b` when provided 6 channels.
> `a` becomes `a,a,a` for 3 channels etc...### Misc
> * The use of D(!dungeon), R(!r) allow the player to enter dungeons/raids only after other people have entered instead of going solo.
> * If you change any settings you need to re-submit.## RegExp Examples
```
a|b = a or b
. = any character
.{3} = 3 characters
a{3,7} = 3 up to 7 repetitions of character 'a'
.* = .{,} = any repetitions 0-Inf
.+ = .{1,} = 1-Inf
.? = .{0,1}
```