fill out readme, fix wrong name
This commit is contained in:
parent
ba39a4138a
commit
ced987f479
2 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
||||||
# rct-guest
|
# rct-guest
|
||||||
|
|
||||||
rct-guest looks too intense for me!
|
> rct-guest looks too intense for me!
|
||||||
|
|
||||||
|
rct-guest is a Fediverse bot that posts a random string in the style of thoughts from Roller Coaster Tycoon. All of the thoughts that appear in the first and second games appear. Thoughts such as "I'm not going on _____ while it's raining!" will be filled in with a ride name and a number, such as Swinging Ship 2.
|
||||||
|
|
||||||
|
Before using this bot, you'll need to create an account on an instance (I recommend [botsin.space](https://botsin.space)) and run `login.py` to log in.
|
||||||
|
|
||||||
The information in `data.json` was obtained from [the RCT wiki](https://rct.fandom.com/wiki/RollerCoaster_Tycoon_Wiki). `data.json` is available under a [CC-BY-SA](https://creativecommons.org/licenses/by-sa/4.0/) license. The information was compiled from multiple pages and reorganised into the JSON format.
|
The information in `data.json` was obtained from [the RCT wiki](https://rct.fandom.com/wiki/RollerCoaster_Tycoon_Wiki). `data.json` is available under a [CC-BY-SA](https://creativecommons.org/licenses/by-sa/4.0/) license. The information was compiled from multiple pages and reorganised into the JSON format.
|
||||||
|
|
2
post.py
2
post.py
|
@ -19,7 +19,7 @@ import json, random
|
||||||
try:
|
try:
|
||||||
cfg = json.load(open('config.json', 'r'))
|
cfg = json.load(open('config.json', 'r'))
|
||||||
except:
|
except:
|
||||||
print("Couldn't load config.json. Make sure you run main.py first!\n-----")
|
print("Couldn't load config.json. Make sure you run login.py first!\n-----")
|
||||||
raise
|
raise
|
||||||
meta = json.load(open('meta.json', 'r'))
|
meta = json.load(open('meta.json', 'r'))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue