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.

Screenshot 2024-12-10 084015

Game Binding

After you setup your mod, you can move to your next step - bind the game you like.

  1. Go to https://rpggo.ai, to pick up a game/character you want to try in Stardew Valley.

2-1

  1. 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"

2-2

  1. 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, 2-3

2-4

And click the Copy button to get your api key. For this example, the API key is

Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.e30.zfzrQCYS28EoKu9tAG1UuvjivPZYJ2m4pgtUvx9GGCk

  1. Config your mod. Go to your mod location, and open the "stardewvalley-ai-mod" folder. 2-5

2-6

2-7

You will see a rpggo_config.json file. That is the config you need to modify 2-8

  1. 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. 2-9

You are done with the game binding. The next step is to bind characters.