An original RPG Maker XP game about pirates I think.
- Install git. Windows version located at https://git-scm.com/download/win
- Install Ruby. Windows installer located at https://rubyinstaller.org/downloads/
- Do this tutorial: https://try.github.io
- Any questions? PM Blaze and she'll try to help you.
- Open Git Bash
- type
git clone https://github.com/FallingStar-Games/lunatic_whatever.git
and hit enter. - Press Win+R
- type
%USERPROFILE%\lunatic_whatever\Lunatic_Nautilus
and hit enter - You should now have an explorer window open in the RPG Maker project directory
- Click on
Import.bat
and hit enter. This will build the game's files. - Open the project in RPG Maker XP, make any changes you want, and then save the project. Remember to close RPG Maker XP.
- Run
Export.bat
again to prepare your changes to be committed. - go back to Git Bash, type
cd lunatic_whatever/Lunatic_Nautilus
and hit enter. - Still in Git Bash, run the command
git commit -A
and then rungit commit -m "[MESSAGE]"
NOTE: remember to replace[MESSAGE]
with a description of what changes you've made. For example, if you changed MAP001, you would run the commandgit commit -m "changed MAP001"
- Then, simply run
git push origin master
and you're done!