Starcore is a community built around modding space engineers, usually for PVP scenarios.
In StarCore, teams build their own ships and battle for the spot of champion in a StarCore Tournament. They normally take place on Saturdays and are streamed live by one of several streamers over on Twitch (See #content-announcements in the StarCore Discord for more information). It's time to join the arena!
- (extremely recommended) github Desktop, GitExtentions, or something similar
- knowing the layout of SE mod files
- enough space to download the entire git repo (~5gb)?
Forkthis repository to a folder on your computer. Name it something like SCModRepository-Yourname. This is where your edits can be made, and is apparently how actual projects do it.
Make a branchfor the changes you want to do onyour local repository. (i.e. SCModRepository-Yourname/BuffMyFavoriteGunPlease) Use your local repository'sMainbranch to keep in sync with starcore'sMainbranch, it makes edits much easier. You just click the button on github to sync it.
- To test your changes ingame, Copy the mod you want to edit to your
%Appdata%/SpaceEngineers/Modsfolder.
- Make your edits and throw it back in the repository folder. you can use the
.bat fileincluded in the repository to link your local Space Engineers mods with the ones in the repository.
- Submit a pull request so that the branch can be merged into the SCModRepository/Main one.
- You can merge your PR yourself if you're confident, or ask for review. Once merged, the development version of the mod will automatically be updated.
Note - the Main branch is for the ModDev world, and Stable is for the primary combat and build worlds. Stable pushes are done in bulk after Test Tournaments.
The repository contains a .github folder, Space Engineers mod folders, and a .gitignore file.
- contains the instructions to the bot what to do after a "push", currently set to upload to the steam workshop after SCUniversalUpload detects a change in a folder with a
modinfo_BRANCHNAME.sbmifile.
- contains all the data that would load normally as an SE mod
- tells git what to exclude during a push (like .sln files in visual studio)
