Jump to content

Skill tree.


alexschopbarteld

Recommended Posts

Hello, i am Alex and i am trying to develop my own modpack, In the past the only thing i added were new blocks armor tools ect, now i am working on a bigger addon to my modpack.

 

I will explain the basic idea:

 

I made around 6 armor types and 6 sword types.

Now what i want is to add a few new Levels and display them with their values on the side.

When the player is level 1 in say the skill defence he can use the first armor type.

when he kills a mob 1 xp gets added to the skill.

when he kills 10 mobs he gets level 2.

20 mobs level 3.

35 mobs level 4 ect.

once a player has reached a certain level he can wear the next armor.

I would like to have the current level display on the sidebar.

 

I have a basic knowledge of java but i have no idea how to begin on this.

 

i would love to have some help.

 

you can also skype me: alex.schopbarteld

 

 

Link to comment
Share on other sites

You will need a Capability on player entities to store the XP.

You can use

LivingDeathEvent

to detect when the player kills a mob.

You can use

isValidArmor

in your

Item

class to allow or deny a player to equip a specific piece of armor.

 

I added the Capability, but i dont know how to test if it works ;(

I cant find anything on livingdeathevent and isvalid armor, do you have a example code?

Link to comment
Share on other sites

You will need a Capability on player entities to store the XP.

You can use

LivingDeathEvent

to detect when the player kills a mob.

You can use

isValidArmor

in your

Item

class to allow or deny a player to equip a specific piece of armor.

 

I added the Capability, but i dont know how to test if it works ;(

I cant find anything on livingdeathevent and isvalid armor, do you have a example code?

 

Simple event

Great tutorial (thanks cool alias): http://www.minecraftforum.net/forums/mapping-and-modding/mapping-and-modding-tutorials/1571567-forge-1-6-4-1-8-eventhandler-and

@SubscribeEvent
public void onLivingDeath(LivingDeathEvent event) {
     // Do exp handling
}

isValid(...) should be in item or ItemArmor

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

The method is actually called isValidArmor() in 1.10.2 and is contained in Item.

To be more specific this is the declaration

public boolean isValidArmor(ItemStack stack, EntityEquipmentSlot armorType, Entity entity)

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

Basicly everything i need works, the only thing i now need is how to get the players value of the capability and use it in a if and else statements.

An i need to set up an eventhandler for if a player kills a mob his score gets set to the mount of mobs he killed, current code:

 

public class ItemRunecraftArmour extends ItemArmor {

 

@Override

public boolean isValidArmor(ItemStack stack, int armorType, Entity entity) {

return false;

}

 

 

 

public ItemRunecraftArmour(ArmorMaterial material, int renderIndex, int armorType, String unlocalizedName) {

super(material, renderIndex, armorType);

this.setUnlocalizedName(unlocalizedName);

this.setCreativeTab(Runecraft.Runecraft_Equipment);

}

 

 

}

Link to comment
Share on other sites

Check if entity is an instance of EntityPlayer and from there look for methods that have the word capability in them.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Turning the Tables: My Journey to Reclaim Stolen Bitcoins with Expert Help. When my Bitcoin wallet was hacked and my entire cryptocurrency portfolio was stolen, I felt utterly devastated and hopeless. Having worked hard to build up my digital assets, the sudden loss was gut-wrenching. It felt like my financial future had been ripped away in an instant, leaving me overwhelmed by a sense of betrayal and despair. In my search for help, I discovered TECH CYBER FORCE Recovery, a renowned cybersecurity firm specializing in cryptocurrency recovery. I was met with professionalism and empathy from my first contact with them. The team demonstrated a steadfast commitment to helping me retrieve my stolen Bitcoins. They understood the emotional toll of my situation and approached my case with genuine concern. TECH CYBER FORCE Recovery swung into action immediately, leveraging its extensive expertise in blockchain forensics and hacker tracking techniques. Their process was meticulous. They analyzed my transaction history, followed the digital trail left by the hackers, and worked diligently to pinpoint the location of the stolen funds. I was impressed by their technical prowess; they employed advanced cryptographic methods and strategic negotiations with the perpetrators, all while keeping me informed about their progress. The recovery process was complex and fraught with challenges. However, the tenacity displayed by the team was truly awe-inspiring. They navigated cryptocurrency crime's murky and ever-evolving landscape with skill and determination. After a series of strategic moves, they managed to recover the majority of my Bitcoins successfully.  
    • I removed giacomos_hud, oculus, (dont know what you mean with iris), enhanced_boss_bars, epicfight and essential.  Server still doesnt want to boot. new logs after removing: https://pastebin.com/LuM2PFtN I dont quite understand the "server side" and "client side" difference..
    • There are client side only mods in your server files   Remove giacomos_hud, oculus, iris, enhanced_boss_bars and epicfight You can keep these mods in your client Maybe also remove essentials
    • Here is my Log with java 17: https://pastebin.com/RPdWSjwq
    • Been working on creating a server for this mod, but i keep getting this error over and over again.  I have tried updating/changing the Forge launcher, Removing/replacing the ops.json and whitelist.json folders, and removing certain mods. Crash report log: https://pastebin.com/Bu046cVq Debug.log https://pastebin.com/7hKm40ke Latest.log https://pastebin.com/nCRLUH3b any help would be great thanks!
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.