Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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}
```