27 lines
742 B
Markdown
27 lines
742 B
Markdown
# WarBot
|
|
Because I can't name projects to save my life.
|
|
WarBot (working title) is an IRC bot which joins channel and periodically checks Warframe's public API for new alerts and announces them into the channel. More features coming soon.
|
|
|
|
All static data came from https://github.com/WFCD/warframe-worldstate-data
|
|
|
|
## Requirements
|
|
Python 3.6+
|
|
Python packages: `twisted requests`
|
|
|
|
## Config
|
|
`server` - Server address.
|
|
`port` - Server port. SSL probably won't work.
|
|
`nickname` - The bot's nickname.
|
|
`username` - The user ident.
|
|
`channel` - The channel to join and spam alerts to.
|
|
|
|
### Example config.cfg
|
|
```
|
|
[default]
|
|
server = irc.steelbea.me
|
|
port = 6667
|
|
nickname = Cephalon
|
|
ident = Cephalon
|
|
channel = #warframe
|
|
```
|