Recent content by rec

  • 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. R

    Question Multiple questions about NPCs with ServerPlayer 1.21.5

    1. Is ServerEntity better then ServerPlayer I have found a post, comments there say that the ServerPlayer 'logic' is unnecessary and a ServerEntity instance should be created with the ServerPlayer. Why is that? And should ServerLevel.addNewPlayer be used or ServerLevel.addFreshEntity? 2. Does...
  2. R

    Solved Could not resolve io.papermc.paperweight:paperweight-userdev

    if you are building with the wrapper (gradlew), run ./gradlew --version. My gradle version was 8.13 but gradlew used 8.8. I don't know how to update it. I just reinitialised the project.
  3. R

    Solved Could not resolve io.papermc.paperweight:paperweight-userdev

    I can build the paperweight-test-plugin from PaperMC github. But I can't build my project written in kotlin. The project was initialy created with Intellij minecraft development plugin build.gradle.kts: plugins { kotlin("jvm") version "2.1.20" id("io.papermc.paperweight.userdev")...