Started by
LukeTheCreator200
on
Topic category: Help with Minecraft modding (Java Edition)
How could I create a Skill Tree in MCreator, and related elements.
If anyone knows, please tell me in a detailed but not too complicated.
Topic category: Help with Minecraft modding (Java Edition)
How could I create a Skill Tree in MCreator, and related elements.
If anyone knows, please tell me in a detailed but not too complicated.
Here’s a simplified and clearer version of your explanation for creating a skill tree in MCreator. It focuses on making it straightforward and easy to follow:
How to Make a Skill Tree in MCreator
Let’s create a basic skill tree with two branches: Strength and Resistance. Players will use their experience levels to unlock skills. For simplicity, each branch will have 4 skill levels: I, II, III, IV
Step 1: Create the GUI for the Skill Tree
Step 2: Set Up Procedures for Skill Unlocking
Yeppi !! Procedure Time :)
1. Create Boolean Variables for Skills
Skill_Strength_I
,Skill_Resistance_I
, etc.)2. Handle Skill Unlock Logic
You don't have enough EXP!
3. Add Effects for Unlocked Skills
Add Potion Effect
block in procedures to handle thisStep 3: Display Unlocked/Locked Icons
Optional: Using Skill Points Instead of EXP
If you want to use skill points:
Tell me if you have any other question :)
Thank you, this is very helpful. I appreciate it.
And this can be used for many, right? If I have many different skill trees? :]
How do I show and hide the icons?
First question : Yes
Second question :
You will have this when adding the skill icon to gui change always to your condition
I tried that, it didn't show anything.
Create a Procedure that has
if Skill_Resistance_I = true
return true
return false
then attach it to that
I got it working. Thanks, ;]
np, if you need anything else just ask :)