Recent content by lollolcheese123

  1. L

    Question How to spawn NPCs?

    Yeah, I know the trick. Here's the code: package lollolcheese123.cybrspace.cmds.adminCmds; import de.oliver.fancynpcs.api.FancyNpcsPlugin; import de.oliver.fancynpcs.api.Npc; import de.oliver.fancynpcs.api.NpcData; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor...
  2. L

    Question How to spawn NPCs?

    So, I'm trying to use FancyNpcs, but I get an error that FancyNpcsPlugin.getNpcAdapter() can't be used in a static context, when the context isn't static at all
  3. L

    Question How to spawn NPCs?

    Don't mind me, just bumping this
  4. L

    Question How to spawn NPCs?

    Just still standing, underlying AI is a bit much for now.
  5. L

    Question How to spawn NPCs?

    How do I spawn a fake player (aka NPC) like the ones you have in Hypixel? I am fine with using NMS, CraftBukkit and ProtocolLib. I've tried a buncha stuff already, but nothing seems to work. I'd also like to be able to set a custom skin, not just a skin a player is using.
  6. L

    Solved Importing NMS in a Maven project using IntelliJ Idea

    It's slightly annoying, it goes in the wrong direction
  7. L

    Solved Importing NMS in a Maven project using IntelliJ Idea

    So I found this code which uses classes like EntityPlayer, where can I find something that will tell me the equivalents?
  8. L

    Solved Importing NMS in a Maven project using IntelliJ Idea

    I used it, but IntelliJ Idea can't find classes like EntityPlayer
  9. L

    Question How i Fix Frezzing Pistons (standard java quasi connectivity)?

    1. Doesn't seem to be a Paper issue. 2. Just giving the piston a block update (when it's unpowered) will make it realize that it should be retracted.
  10. L

    Solved Importing NMS in a Maven project using IntelliJ Idea

    As the title states, I want to import net.minecraft.server into my plugin, which uses Maven to build. I use the IntelliJ Idea IDE by JetBrains, and I just can't figure out how to do so. I've tried to use BuildTools, but that only gave me CraftBukkit. I've tried to use PaperWeight-UserDev...
  11. L

    Question 1.19.4 Problem with ProtocolLib block break animations and Bukkit.getScheduler()

    This is basically two questions in one, so I'll split this post up into two parts. I am trying to make a block breaking system that is almost identical to the one that Hypixel Skyblock uses, however with my current code I run into two problems. Code: package lollolcheese123.zenofgens.blocks...