Skip to content

IamMaxim/galedwell

Repository files navigation

Galedwell

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:

  1. download Intellij IDEA and Git
  2. Clone this repo:
    git clone https://github.com/iammaxim/galedwell
  3. 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.
  4. Then, open project in IDEA (select this folder).
  5. Now, type in terminal/command prompt gradlew genIntellijRuns (or ./gradlew genIntellijRuns). This will create run configurations for client and server.
  6. Switch back to IDEA. It will ask you to reload project. Reload it. Now click on Edit configurations... and change field Use classpath of module to Galedwell_main on server and client configurations. If External libraries have not appeared, click on Gradle on right toolbar and click Refresh all Gradle projects (Toolbars can be enabled by clicking on button in left bottom corner).
  7. Now you should be able to run Minecraft! If you are going to test server, add --username <Your minecraft username> to program arguments in Minecraft Client configuration.