Recent content by yangood

  • After careful consideration and due to limited usage, we’ve made the decision to discontinue the PaperMC forums. Moving forward, we recommend using Hangar for plugin uploads, and for all other community discussions and support, please join us on Discord.
  1. Y

    Question I want to customize a Creeper

    I tried to change CREEPER("creeper", Creeper.class, 50) to my own version CREEPER("creeper", CustomCreeper.class, 50) by using reflection on org.bukkit.entity.EntityType, but it didn't work.
  2. Y

    Question I want to customize a Creeper

    I hope to customize the explosion effect of Creepers, but I wonder if my implementation method is too clumsy. Is there any way to customize a Creeper and replace the original Creeper spawn? Sorry, my English is not very good! import java.util.Collection; import...