Galedwell is RPG mod that remakes all aspects of Minecraft. It's inspired by Elder Scrolls game series.
What is done:
- Weight-based inventory
- Attributes
- Skills
- Own GUI system
- Weapons (will be added more in future)
- Armor (will be added more in future)
- Clothes (will be added more in future)
- Block destroying speed is based on attributes and skills
- Damage is based on attributes and skills
What is planned:
- NPCs
- Quests
- Factions
- Advanced crafting
- Advanced magic system (with spell creation and effects)
###How to help To start editing code:
- download Intellij IDEA and Git
- Clone this repo:
git clone https://github.com/iammaxim/galedwell
- Then go to newly created folder and type this in terminal/command prompt:
gradlew setupDecompWorkspace
(or, if you are on Linux/Mac,./gradlew setupDecompWorkspace
). This will download Forge and all needed libraries. - Then, open project in IDEA (select this folder).
- Now, type in terminal/command prompt
gradlew genIntellijRuns
(or./gradlew genIntellijRuns
). This will create run configurations for client and server. - Switch back to IDEA. It will ask you to reload project. Reload it. Now click on
Edit configurations...
and change fieldUse classpath of module
toGaledwell_main
on server and client configurations. If External libraries have not appeared, click onGradle
on right toolbar and clickRefresh all Gradle projects
(Toolbars can be enabled by clicking on button in left bottom corner). - Now you should be able to run Minecraft! If you are going to test server, add
--username <Your minecraft username>
to program arguments inMinecraft Client
configuration.