

The general idea for this mod is to add some basic game manipulation stuff for hosts to use if needed. For example, if you purchase items, leave the game, and reload your save your money will be gone, but the items will never arrive. With a mod like this, you can run a command to refund your lost money.
I did this so it hopefully won't be used as just a host cheat. It also allows things like syncing weather changes to apply properly.
I designed this to be very basic for debugging and stuff. If you want or need more advanced functionality other mods would suit you better like Imperium. There's also some basic API functionality for other commands to register their own simple commands if they want.
The basic structure goes as follows:
/(cmd name) (parameter) (parameter)
Type a command into the in-game chat. By default, only the host can run commands, but this can be changed in the mod's configs. Also, command parameters aren't case sensitive so don't worry!
You can also add flags to the end of a command by adding "|" followed by the flags you want. One example of a flag is the "hide" keyword which stops the command from sending a chat message upon completion.
/pay 700 | hide
This command would add 700 credits to the terminal and not announce it to chat.
Lastly, you can run multiple commands in a single message. It just works!
/stamina | hide /god
This command would give you infinite stamina and invulnerability. It would also hide the stamina message but still display the invulnerability message to chat for all players to see.
Use Cases:
/help
/help [page]
/help [cmd] Shows info about specified command.
/help [cmd] [page]
/help [cmd] (flags) Shows valid flags for command.
/help [cmd] (flags) [page]
Use Cases:
/clear
Use Cases:
/list
/list [page]
Use Cases:
/pay Gives 100 credits.
/pay [value] Can be negative.
Note: Only works between games not in the middle of games as of now.
Use Cases:
/weather (clear | dusty | foggy | rainy | stormy | eclipsed) Sets moon weather to whatever you want.
Use Cases:
/heal Fully heals self.
/heal [target] Fully heals target.
/heal [target] [value]
Use Cases:
/god Toggles self invulnerability.
/god [target] toggles target invulnerability.
Use Cases:
/stamina Toggles self infinite sprint.
/stamina [target] toggles target infinite sprint.
Use Cases:
/charge Charges the item you are holding.
/charge [target] Charges the item the target is holding.
Note: Increasing this beyond 3 days can break the game in many ways.
Use Cases:
/extend Extends quota 1 day.
/extend [days]
Use Cases:
/items
/list [page]
Tags:
store Filters to only show buyable items.
scrap Filters to only show scrap items.
Use Cases:
/item [item] Spawns item at your feet.
/item [target] [item]
Note: as of right now teleporting in/out of the facility will not change the skybox and may cause some minor problems. If you run into issues try teleporting to main using /tp main and going in and out of the facility. This should usually resolve those problems.
Use Cases:
/tp [destinationPlayer]
/tp (ship | main | exit{#}) 'Ship' teleports player to the autopilot ship, main teleports player to the main entrance.
/tp [targetPlayer] [destinationPlayer]
/tp [targetPlayer] (ship | main | exit{#})
/tp [x] [y] [z] You can use '~' to signify a relative position similar to a minecraft command.
/tp [targetPlayer] [x] [y] [z]
Tags:
animate Teleports after playing the ship teleport animation.
Use Cases:
/terminal [code]
Use Cases:
/prefabs
/prefabs [page]
Use Cases:
/prefabs [name] - Spawns object above the player.
/prefabs [name] [x] [y] [z] - Spawns object at position.
When WeatherRegistry is detected a new command is registered called: /weatherregistry
/weatherregistry lists the ids of all weathers registered through WeatherRegistry which can be used in /weather
Programming by JacobG5 (Me)