WarBot/README.md

27 lines
769 B
Markdown
Raw Permalink Normal View History

2018-06-11 09:33:52 -04:00
# 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.
2018-06-16 12:25:49 -04:00
All static data came from https://github.com/WFCD/warframe-worldstate-data
2018-06-11 12:55:49 -04:00
## Requirements
2018-06-11 09:33:52 -04:00
Python 3.6+
2019-11-05 08:08:04 -05:00
Python packages: `twisted pyOpenSSL service_identity requests`
2018-06-11 09:33:52 -04:00
## 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
```