Jump to content

1.10.2 How do I make my entity drop multiple items,


TheRPGAdventurer

Recommended Posts

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

  • Like 1
Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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 :)

  • Like 1
Link to comment
Share on other sites

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?

Link to comment
Share on other sites

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.

  • Like 1
Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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?

Link to comment
Share on other sites

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?

Link to comment
Share on other sites

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.

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.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Slot depo 5k merupakan situs slot depo 5k yang menyediakan slot minimal deposit 5rb atau 5k via dana yang super gacor, dimana para pemain hanya butuh modal depo sebesar 5k untuk bisa bermain di link slot gacor thailand terbaru tahun 2024 yang gampang menang ini.   DAFTAR & LOGIN AKUN PRO SLOT DEPO 5K ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
    • Slot deposit 3000 adalah situs slot deposit 3000 via dana yang super gacor dimana para pemain dijamin garansi wd hari ini juga hanya dengan modal receh berupa deposit sebesar 3000 baik via dana, ovo, gopay maupun linkaja untuk para pemain pengguna e-wallet di seluruh Indonesia.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT 3000 ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
    • OLXTOTO: Menikmati Sensasi Bermain Togel dan Slot dengan Aman dan Mengasyikkan Dunia perjudian daring terus berkembang dengan cepat, dan salah satu situs yang telah menonjol dalam pasar adalah OLXTOTO. Sebagai platform resmi untuk permainan togel dan slot, OLXTOTO telah memenangkan kepercayaan banyak pemain dengan menyediakan pengalaman bermain yang aman, adil, dan mengasyikkan. DAFTAR OLXTOTO DISINI <a href="https://imgbb.com/"><img src="https://i.ibb.co/GnjSVpx/daftar1-480x480.webp" alt="daftar1-480x480" border="0" /></a> Keamanan Sebagai Prioritas Utama Salah satu aspek utama yang membuat OLXTOTO begitu menonjol adalah komitmennya terhadap keamanan pemain. Dengan menggunakan teknologi enkripsi terkini, situs ini memastikan bahwa semua informasi pribadi dan keuangan para pemain tetap aman dan terlindungi dari akses yang tidak sah. Beragam Permainan yang Menarik Di OLXTOTO, pemain dapat menemukan beragam permainan yang menarik untuk dinikmati. Mulai dari permainan klasik seperti togel hingga slot modern dengan fitur-fitur inovatif, ada sesuatu untuk setiap selera dan preferensi. Grafik yang memukau dan efek suara yang mengagumkan menambah keseruan setiap putaran. Peluang Menang yang Tinggi Salah satu hal yang paling menarik bagi para pemain adalah peluang menang yang tinggi yang ditawarkan oleh OLXTOTO. Dengan pembayaran yang adil dan peluang yang setara bagi semua pemain, setiap taruhan memberikan kesempatan nyata untuk memenangkan hadiah besar. Layanan Pelanggan yang Responsif Tim layanan pelanggan OLXTOTO siap membantu para pemain dengan setiap pertanyaan atau masalah yang mereka hadapi. Dengan layanan yang ramah dan responsif, pemain dapat yakin bahwa mereka akan mendapatkan bantuan yang mereka butuhkan dengan cepat dan efisien. Kesimpulan OLXTOTO telah membuktikan dirinya sebagai salah satu situs terbaik untuk penggemar togel dan slot online. Dengan fokus pada keamanan, beragam permainan yang menarik, peluang menang yang tinggi, dan layanan pelanggan yang luar biasa, tidak mengherankan bahwa situs ini telah menjadi pilihan utama bagi banyak pemain. Jadi, jika Anda mencari pengalaman bermain yang aman, adil, dan mengasyikkan, jangan ragu untuk bergabung dengan OLXTOTO hari ini dan rasakan sensasi kemenangan!
    • Slot deposit dana adalah situs slot deposit dana yang juga menerima dari e-wallet lain seperti deposit via dana, ovo, gopay & linkaja terlengkap saat ini, sehingga para pemain yang tidak memiliki rekening bank lokal bisa tetap bermain slot dan terbantu dengan adanya fitur tersebut.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT DANA ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
    • Slot deposit dana adalah situs slot deposit dana minimal 5000 yang dijamin garansi super gacor dan gampang menang, dimana para pemain yang tidak memiliki rekening bank lokal tetap dalam bermain slot dengan melakukan deposit dana serta e-wallet lainnya seperti ovo, gopay maupun linkaja lengkap. Agar para pecinta slot di seluruh Indonesia tetap dapat menikmati permainan tanpa halangan apapun khususnya metode deposit, dimana ketersediaan cara deposit saat ini yang lebih beragam tentunya sangat membantu para pecinta slot.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT DANA ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
  • Topics

×
×
  • Create New...

Important Information

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