Custom Missions for OpenRA
Find a file
2024-02-27 19:43:27 +01:00
cnc/release-20180923 adjusted for newest playtest, removed all missions that are in official release by now 2022-12-26 22:57:03 +01:00
ra/playtest-20221224 changed all rules.yaml to match new standards, remove obsolete sections 2022-12-26 23:36:03 +01:00
.gitignore changed all rules.yaml to match new standards, remove obsolete sections 2022-12-26 23:36:03 +01:00
LICENSE.md Create LICENSE.md 2024-02-27 19:43:27 +01:00
README.txt adjusted for newest playtest, removed all missions that are in official release by now 2022-12-26 22:57:03 +01:00

This is just a working repository of my personal OpenRA maps. Feel free to clone/play/whatever.

lazy reminder of git commands because I am a n00b:

git clone https://github.com/BooooB159/OpenRA-Maps.git <directoryName>

git status                                  // show all new/changed files

git add --all                               //
git add <file>                              // add changes to be committed
git add <directory>                         // 

git checkout -- <file>                      // undo adding file            

git commit -m "This is a commit message"    // "save" added changes locally

git push                                    // add all saved changes to online repo