Posted May 17, 20178 yr Hi everyone, I have a dragon mod using BarracudaATA's dragon mounts source code and the dragon has different breeds and each breed Has it's own class and I want my dragon with different breeds drop different items, Do I need a custom Drop Item? or something.
May 17, 20178 yr Use loot tables. You can override EntityLiving::getLootTable and return an appropriate loot table. Or you can drop your items in any methods that fire on entity's death, like EntityLivingBase::dropLoot EntityLivingBase::dropFewItems or even EntityLivingBase::onDeath if you really need to do it there of all places for some mysterious reason
May 17, 20178 yr Author Just now, V0idWa1k3r said: Use loot tables. You can override EntityLiving::getLootTable and return an appropriate loot table. Or you can drop your items in any methods that fire on entity's death, like EntityLivingBase::dropLoot EntityLivingBase::dropFewItems or even EntityLivingBase::onDeath if you really need to do it there of all places for some mysterious reason Oh it's you again Sir! I also want it shearable i don't want it to be used by ordianary shears i mean diamond shears for shearing the tough scales of the dragon.
May 17, 20178 yr Then in your diamond shears item you can override the Item::itemInteractionForEntity method, check that the entity you are interacting is your dragon and drop your desired items.See ItemShears to see how it is done there in more details. My timezone seems to be slightly different from most of other forum members thus I am the one answering you right now
May 17, 20178 yr Author Just now, V0idWa1k3r said: Then in your diamond shears item you can override the Item::itemInteractionForEntity method, check that the entity you are interacting is your dragon and drop your desired items.See ItemShears to see how it is done there in more details. My timezone seems to be slightly different from most of other forum members thus I am the one answering you right now Just like in the sheep class?
May 17, 20178 yr If you make your dragon extend IShearable then it will be shearable by normal shears as well. Although you can simply check if the shears are your desired diamond shears in your dragon's isShearable method and only then return true thus allowing the entity to be sheared by only your diamond shears. It is up to you which way do you want to go, really. Both ways will work. Either make checks if the entity is the dragon in your Item implementation or check if the shears are your diamond shears in your Entity implementation.
May 17, 20178 yr Author Just now, V0idWa1k3r said: If you make your dragon extend IShearable then it will be shearable by normal shears as well. Although you can simply check if the shears are your desired diamond shears in your dragon's isShearable method and only then return true thus allowing the entity to be sheared by only your diamond shears. It is up to you which way do you want to go, really. Both ways will work. Either make checks if the entity is the dragon in your Item implementation or check if the shears are your diamond shears in your Entity implementation. Oh I mean the loot tables, just like the one's in the sheep, you know multiple methods.
May 17, 20178 yr Author Just now, V0idWa1k3r said: Ah, yes, like that, sure. also what is DyeDamage in EnumDyeColor?
May 17, 20178 yr I believe it is the metadata for dye items. While blocks casually moved from metadata to blockstates(although metadata is obviously still there) items still use raw numbers for their differentiations. This particular field is used in recipes, cocoa beans drops, model registering, colors for collars/sheep/etc
May 17, 20178 yr Author I will post the source codes, this is the main Entity Class, It's called EntityTameableDragon https://pastebin.com/nMZRYnBE. this is the DragonBreedClass, https://pastebin.com/NYRZus6D an example of dragon breed the original mod based it's breeds on elements like water fire but I based mine with gemstones https://pastebin.com/jUwkX7KP another example of a breed https://pastebin.com/XtgrUwqg the class that enumerates each breed EnumDragonbreed https://pastebin.com/Lqk6jKKS what I want is that each breed has different drops, I am really struggling for this mod is not originally mine. He just gave us the source code as if he was giving gold for free.
May 17, 20178 yr Well, if the method is being called at all(and it should be, looks fine to me, but you still should debug it) you should check your loottables. Are they registered properly? Are they pointing to correct JSON files? Are those files correct?
May 17, 20178 yr Author Just now, V0idWa1k3r said: Well, if the method is being called at all(and it should be, looks fine to me, but you still should debug it) you should check your loottables. Are they registered properly? Are they pointing to correct JSON files? Are those files correct? well yes they are, but the problem is when I make the dragon drop the same item it works but when I make them drop different items per breed it will disappear in the world as if it was never there.
May 17, 20178 yr Well, based on the code you have posted I see a problem: if (this.getSheared()) { } else { switch (this.getBreedType()) So your switch statement will only get evaluated if the getSheared() method returns false. If it returns true the getLootTable() returns null and no items are dropped. And a few lines below: private boolean getSheared() { return true; } So based on the code you have posted the dragons will actually never drop anything.
May 17, 20178 yr Author Just now, V0idWa1k3r said: Well, based on the code you have posted I see a problem: if (this.getSheared()) { } else { switch (this.getBreedType()) So your switch statement will only get evaluated if the getSheared() method returns false. If it returns true the getLootTable() returns null and no items are dropped. And a few lines below: private boolean getSheared() { return true; } So based on the code you have posted the dragons will actually never drop anything. Thanks a lot man, i'll try that out if i can run my program tho cause I updated my java to 131 thinking eclipse is smart that it knew that I updated java, how can I access preferences by the way.
May 17, 20178 yr Preferences of what? Eclipse? Window->Preferences Java? There should be a Java Control Panel executable on your PC, just search it (or don't, it is located in the bin folder in your jre installation directory and is named javacpl)
May 17, 20178 yr Author Just now, V0idWa1k3r said: Well, based on the code you have posted I see a problem: if (this.getSheared()) { } else { switch (this.getBreedType()) So your switch statement will only get evaluated if the getSheared() method returns false. If it returns true the getLootTable() returns null and no items are dropped. And a few lines below: private boolean getSheared() { return true; } So based on the code you have posted the dragons will actually never drop anything. what if I removed the getSheared() method will it still be evaluated?
May 17, 20178 yr Author Just now, V0idWa1k3r said: If you also remove the condition it should. Debug it to see if it does. Nothing happened, I'm in the middle of the night still figuring it out. Say what country do you live in? Edited May 17, 20178 yr by TheRPGAdventurer forgot something
May 17, 20178 yr Well, post your new code and elaborate on what you've already tried and what are the debugging results.
May 21, 20178 yr Author On 5/18/2017 at 9:59 AM, V0idWa1k3r said: Well, post your new code and elaborate on what you've already tried and what are the debugging results. Hello Sir, Are you still there? I fixed the dragons dropping items now but I'm not done with the shearing. does the wool blocks have their own class per color or have just one class but is rendered with different colors?
May 21, 20178 yr Author Just now, V0idWa1k3r said: One class, one Item instance, different metadata/blockstates The only problem of onSheared is that because I have multiple different Items with their own classes and are treated as ingots, and the onsheared method have this ret.add(new ItemStack(Item.getItemFromBlock(Blocks.WOOL), 1, this.getFleeceColor().getMetadata())); I can change getFlleceColor to getBreedType But the ItemStack is pretty difficult.
May 22, 20178 yr Author Just now, Jay Avery said: What exactly is the problem then? The wool has One class, one Item instance, different metadata/blockstates; My dragonscales has multiple classes, it says Blocks.WOOL and i have multiple items i want my dragon do drop when sheared,
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.