How to bind a RPGGO Game - RPGGO-AI/stardewAIRPG GitHub Wiki
pre-condition
🛎️Attention: you need to install below mod first. Otherwise, you won't see the config menu.
Game Binding
After you setup your mod, you can move to your next step - bind the game you like.
- Go to https://rpggo.ai, to pick up a game/character you want to try in Stardew Valley.
- Get the game id. Open any game/character, and you can see the id from the url of your browser. For example, we choose <> as an example, the ID of the game is "GBUKIKCL2"
- Get your API Key. Login with your google or discord account, and click your avatar in the up right corner. Click the "Manage Your API Key" sub menu,
And click the Copy button to get your api key. For this example, the API key is
Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.e30.zfzrQCYS28EoKu9tAG1UuvjivPZYJ2m4pgtUvx9GGCk
- Config your mod. Go to your mod location, and open the "stardewvalley-ai-mod" folder.
You will see a rpggo_config.json file. That is the config you need to modify
- Rewrite this file with new settings. Fill in with the game id and api key you already have(see above example). Do not change other parts.
{
"gameId": "GBUKIKCL2",
"apiKey": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.e30.zfzrQCYS28EoKu9tAG1UuvjivPZYJ2m4pgtUvx9GGCk",
"stardewCharacters": [],
"gameCharacters": [],
"characterBinding": {}
}
And copy the above json to overwrite existing content, and save it.
You are done with the game binding. The next step is to bind characters.