25 lines
647 B
Markdown
25 lines
647 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.
|
||
|
|
||
|
## Dependencies
|
||
|
Python 3.6+
|
||
|
`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
|
||
|
```
|