User Tools

Site Tools


tutorial:shield

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
tutorial:shield [2022/09/04 21:43] – fixed mistakes, added dependencies, added discalimer cringestar_boitutorial:shield [2022/09/05 19:22] – fixed version cringestar_boi
Line 1: Line 1:
-__**THIS PAGE SHOULD WORK FOR 1.17-1.18. THE 1.14-1.16 SECTIONS HAVE NOT BEEN TESTED IN A LONG TIME, SO THEY MAY NOT WORK. AT THIS TIME, THERE IS NOT WAY TO DO THIS IN 1.19**__+__**THIS PAGE SHOULD WORK FOR 1.17-1.19. THE 1.14-1.16 SECTIONS HAVE NOT BEEN TESTED IN A LONG TIME, SO THEY MAY NOT WORK.**__
  
-====== Making a Custom Shield in Minecraft [1.18-1.14] ======+====== Making a Custom Shield in Minecraft [1.19-1.14] ======
  
 Congrats! You just learned how to create your custom sword in the last tutorial! Now imagine you want to shield yourself from that sword if your friend got it. If you made it too op, a regular shield won't do. So we will see how to make a custom shield.\\  Congrats! You just learned how to create your custom sword in the last tutorial! Now imagine you want to shield yourself from that sword if your friend got it. If you made it too op, a regular shield won't do. So we will see how to make a custom shield.\\ 
Line 15: Line 15:
 **gradle.properties**\\  **gradle.properties**\\ 
 <code java> <code java>
-fabric_shield_lib_version=1.5.3-1.18+fabric_shield_lib_version=1.6.0-1.19
 </code>\\  </code>\\ 
 **build.gradle** (under dependencies)\\  **build.gradle** (under dependencies)\\ 
Line 21: Line 21:
 modImplementation "com.github.CrimsonDawn45:Fabric-Shield-Lib:v${project.fabric_shield_lib_version}" modImplementation "com.github.CrimsonDawn45:Fabric-Shield-Lib:v${project.fabric_shield_lib_version}"
 </code>\\  </code>\\ 
-At the time of writing, latest project.fabric_shield_lib_version should be 1.5.3-1.18. This page will be updated whenever a new update comes out.\\ \\ +At the time of writing, latest project.fabric_shield_lib_version should be 1.6.0-1.19. This page will be updated whenever a new update comes out.\\ \\ 
 **build.gradle** (under repositories, the one above dependencies)\\  **build.gradle** (under repositories, the one above dependencies)\\ 
 <code java> <code java>
Line 27: Line 27:
 </code>\\  </code>\\ 
  
-If you are doing this in Minecraft version 1.17 or higher or using FabricShieldLib version 1.5.0 or higher, add these things as well:+__//**If you are doing this in Minecraft version 1.17 or higher or using FabricShieldLib version 1.5.0 or higher, add these things as well:**//__
  
 **gradle.properties**\\  **gradle.properties**\\ 
 <code java> <code java>
  fabric_asm_version=2.3  fabric_asm_version=2.3
- cloth_version=6.2.57 + cloth_version=8.1.77 
- mod_menu_version=3.0.1 + mod_menu_version=4.0.6 
- crowdlin_version=1.4+1.18+ crowdlin_version=1.4+1.19
 </code>\\  </code>\\ 
  
Line 119: Line 119:
 ===== Adding banner support to your shield (1.17+) ===== ===== Adding banner support to your shield (1.17+) =====
  
-If you are using 1.17 instead of 1.18, please change the fabric_shield_lib_version in **gradle.properties** to:+If you are using 1.17/1.18 instead of 1.19, please change versions in **gradle.properties** to:
 <code java> <code java>
-fabric_shield_lib_version=1.5.0-1.17+ fabric_shield_lib_version=1.5.3-1.18 
 + fabric_asm_version=2.3 
 + cloth_version=6.2.57 
 + mod_menu_version=3.0.1 
 + crowdlin_version=1.4+1.18
 </code> </code>
 +or
 +<code java>
 + fabric_shield_lib_version=1.5.3-1.17
 + fabric_asm_version=2.3
 + cloth_version=5.3.63
 + mod_menu_version=2.0.15
 + crowdlin_version=1.3+1.17
 +</code>
 +
  
 This is where mixins get involved. This is where mixins get involved.
tutorial/shield.txt · Last modified: 2024/01/14 18:05 by cringestar_boi