| Date uploaded | 2 years ago |
| Version | 1.0.0 |
| Download link | MoSadie-SlipInfo-1.0.0.zip |
| Downloads | 178 |
| Dependency string | MoSadie-SlipInfo-1.0.0 |
This mod requires the following mods to function
BepInEx-BepInExPack
BepInEx pack for Mono Unity games. Preconfigured and ready to use.
Preferred version: 5.4.2100README
SlipInfo
Local API mod for Slipstream: Rogue Space. Hosts a local HTTP server you can query for information about the current game state.
Requirements
(Quick) Setup Video
(video soon!)
Installation
- Launch Slipstream at least once.
- Download and setup r2modman from here (Click "Manual Download" and run the setup exe)
- Select "Slipstream: Rogue Space" from the list of games in r2modman and create a profile.
- In the "Online" tab look for SlipInfo and click it. Then click "Download"
- Launch Slipstream using the "Start modded" button to generate the config file.
- (Optional) Modify the config file using the "Config editor" tab. (see the config file for more details)
Configuration Options
port
The port the API will listen on. Default is 8001.
prefix
The prefix for the API. Default is /slipinfo. (Ex http://localhost:8001/slipinfo/getCrew)
If you run into any issues getting this set up, please reach out! Best way is via Discord or GitHub Issues!
API Endpoints
GET /version
Gets the version information for the mod. Useful for testing without having to join a ship or sign in, since this works from the title screen.
Example Response
{ "version": "1.0.0.0" }
GET /getCrew
Returns a list of all crew members on the ship.
Example Response
{
"crewList":[
{
"name":"MoSadie",
"archetype":"hamster",
"skin":"HamsterWildWest",
"level":15,
"xp":87661,
"currentHealth":40.0,
"maxHealth":40.0,
"currentShields":0.0,
"maxShields":40.0,
"isCaptain":true,
"isLocalPlayer":true
},
...
]
}
GET /getCrewByUsername
Returns a crew member by their username.
Query Parameters
username(string): The username of the crew member.
Example Response
{
"crewmate":{
"name":"MoSadie",
"archetype":"hamster",
"skin":"HamsterWildWest",
"level":15,
"xp":87661,
"currentHealth":40.0,
"maxHealth":40.0,
"currentShields":0.0,
"maxShields":40.0,
"isCaptain":false,
"isLocalPlayer":true
}
}
GET /getSelf
Returns information about the player character. Same information as /getCrewByUsername, but automatically selects the player character.
Example Response
{
"crewmate":{
"name":"MoSadie",
"archetype":"turtle",
"skin":"TurtleWildWest",
"level":3,
"xp":1678,
"currentHealth":50.0,
"maxHealth":50.0,
"currentShields":0.0,
"maxShields":80.0,
"isCaptain":false,
"isLocalPlayer":true
}
}
GET /getShipInfo
Returns information about the ship including type, name, ship health, and fuel tanks.
Example Response
{
"maxHealth":11800.0,
"minHealth":1888.0,
"currentHealth":10180.333,
"maxFuel":16,
"currentFuel":6,
"currentSalvage":0, //Note this may not be accurate if you are not the captain.
"currentGems":72
}
GET /getEnemyShipInfo
Returns information about the enemy ship, if there is one.
Example Response
{
"enemyShip":{
"maxHealth":10868.0,
"minHealth":0.0,
"currentHealth":3053.50952,
"name":"FUEL SPEEDER",
"invaders":"None",
"intel":"Automated fuel supply ship. Lightly armed but built for extreme speed.",
"threatLevel":5,
"cargoLevel":5,
"speedLevel":10
}
}
GET /getRunInfo
Returns information about the current run including the current sector and region.
Example Response
Crew:
{
"region":null,
"regionDescription":null,
"sector":null,
"runId":0
}
Captain:
{
"region":"PLUTO",
"regionDescription":"Bleak, barren, and very cold. Two sectors, low threat; a good place to train new crew.",
"sector":"PLUTO OUTSKIRTS",
"runId":0
}
Between Runs:
{
"region":"Space",
"regionDescription":"The vast expanse of space. Perfect place to plan the next adventure!",
"sector":"The Void",
"runId":-1
}
CHANGELOG
v1.0.7
Added Ship Tech information to /getShipInfo, including both active and in-active tech, descriptions, and levels.
v1.0.6
Updated to MoCore v2.0.1, should only be internal changes.
v1.0.5
Attempted to fix an issue where after some time the server would stop responding.
v1.0.4
Updated to support the v1.90.0 Release of the game.
And also some internal changes to allow the ability to manage the compatible versions without making a new release every time.
v1.0.3
Updated to support the 1.80.0 Hotfix 1 version of the game, released on August 18th, 2024.
v1.0.2
Added game version detection. Will automatically disable ourselves if the game version changes.
v1.0.1
Fixed an issue when attempting to make requests from another website using JS. Added the correct header for it.
In fun news, making great progress on some OBS overlays using this mod, more to share soon on those.
v1.0.0
Initial Release!
After some community testing I'm happy to announce the initial release of SlipInfo!
The only known issues so far are that some fields may not be populated correctly when you are crew (not captain) on a ship. Some fields I am aware of:
- 'currentSalvage' from
/getShipInfois always 0 /getRunInfowill contain null for all properties exceptrunId