https://github.com/skyborgff/rlbot-repos
distribution system for RLBot
https://github.com/skyborgff/rlbot-repos
Last synced: 5 months ago
JSON representation
distribution system for RLBot
- Host: GitHub
- URL: https://github.com/skyborgff/rlbot-repos
- Owner: skyborgff
- Created: 2019-07-29T18:53:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-29T18:53:46.000Z (almost 7 years ago)
- Last Synced: 2025-05-15T15:13:03.875Z (about 1 year ago)
- Size: 44.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RLBot repo
repo files, syntax, examples and instruction for interacting with or developing (for) the hub of rlbot
## Syntax
```json
{
"note": "Note when enabling the repo",
"repos":[
{
"name": "name of botfolder",
"url": "link to the branch or repo (if bot is in master)"
},
{...}
]
}
```
## repo example
```json
{
"note": "",
"repos":[
{
"name": "dataParse",
"url": "https://github.com/ard1998/RLbotPythonDataParser"
}
]
}
```
## botpackage.json syntax
```json
{
"name": "name of botfolder",
"description": "bot description",
"version": "version name, if not equal to the installed version the hub shows an update is available",
"testedFrameworkVersion": "framework verion the bot is tested with",
"botLanguage": "programing language the bot is written in",
"gamemodes": [
{
"name": "gamemode name"
}
{...}
],
"categories": [
{
"name": "Category name"
},
{...}
]
}
```
## botpackage.json example
```json
{
"name": "dataParse",
"description": "dev example with parsed structure",
"version": "1.0",
"testedFrameworkVersion": "1.20",
"botLanguage": "python",
"gamemodes": [
{
"name": "1v1"
},
{
"name": "2v2"
},
{
"name": "3v3"
},
{
"name": "4v4"
},
{
"name": "snowday"
}
],
"categories": [
{
"name": "Example"
},
{
"name": "Simple"
}
]
}
```