# Select one of multiple files This Allows you to pick between multiple files (3 or more files) using similar logic to [Toggle Files](./ToggleFiles.md) But this requires multiple `.rpo` files to achieve the desired goal. You will need the `PackID` and `EntryName` from your `/assets/respackopts/conf.json` that you created earlier if you have not, see [Main Config](./MainConfig.md) on how to do so.
You will need to navigate to the file you would like to toggle inside your resource, and create a `.rpo` file for it in the same folder(directory).
### Examples: `texture.png` would be `texture.png.rpo`
`some_recipe.json` would be `some_recipe.json.rpo`
### `.rpo` explaination : You need a `.rpo` file per texture (except for the last one in your list) if you have 3 files to select beteen then you will need 2 `.rpo` files, If you have 4 files to select between then you will need 3 `.rpo` files and so on etc..... ### Layout: This is your first `.rpo` with your first file ```json { "condition": ":", "fallback": "path/to/second.json/.png" } ``` *** This is your second `.rpo` with your second file ```json { "condition": ":", "fallback": "path/to/thirdfile.json/.png" } ``` ### Example: ```json { "condition": "examplePack:option_one", "fallback": "path/to/secondfile.json" } ``` ```json { "condition": "examplePack:option_two", "fallback": "path/to/thirdfile.json" } ```