Alex "mcmonkey" Goodwin
Alex "mcmonkey" Goodwin
Oh, after reading Discord chat history, I see what you wanted (an NPC of type DROPPED_ITEM with custom item data), and have renamed the issue accordingly.
Generally we use Denizen - http://wiki.citizensnpcs.co/Denizen - for more advanced NPC talking. What you're saying could still be added though...
There are several config options in `plugins/Citizens/config.yml` that might help with pathfinding performance, notably: ```yml npc: pathfinding: new-finder: iterations-per-tick: 5000 maximum-new-pathfinder-iterations: 10000 ``` tweaking those iteration counts to be lower...
Solid 👍
Non-replies (based on original post above): @aPunch @liec0dez @Lolmewn @XxCoolGamesxX @RitzDever (I don't think this user ever actually contributed anything here though - only 2 PRs that were closed, no...
While this might be possible to add to Citizens at some point, I'm going to point out that you can currently do this via a simple Denizen script, as is...
Might make more sense to have something like an `/npc traits` to see the full trait list with details? The info in `/npc` is very quick+terse basic info... a traits...
You're a Java dev right? There's literally a Bukkit API for this you can call and use for freely - https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/Player.html#hidePlayer(org.bukkit.entity.Player) And if you're not able or willing to use...
That's either A: something broken in Paper/spigot internals, or B: something wrong in the copy of player head metadata on items ------ Quick issue detail grab: ``` [Citizens] An exception...
This miiiight be possible to implement via mucking with `ChunkMap.TrackedEntity#range`? (The entity-tracker-range)