
Minecraft 服务端插件
NPC Plugin
Customizable NPCs via GUI and API
- 版本范围
- 1.17.1–26.2
- 下载量
- 3.4 万
插件介绍
NpcPlugin
Create, customize, and manage player-like NPCs with an in-game editor GUI, click actions, AI goals, and a built-in path system.
If you have any suggestions or encounter any issues, you can use the issue page or via Discord @Eisi05
⚠️ Warning Version 3.0.x-alpha now uses the .json format to store NPCs. Existing .npc files will be automatically migrated, and a backup will be created before the migration.
If you encounter any issues or have suggestions, please let me know.
Important: If you're upgrading from a version earlier than 2.1.0, you must first update to a version between 2.1.0 and 2.4.2 before installing 3.0.x-alpha.
🌍 Translations & Localization:
If you want to add a new language to the project, please reach out to me so I can set it up on Crowdin for you! Or you can send me a translated .zip file directly
If you want to make a tutorial video about it, feel free to do so
Supported Versions
Spigot: 1.20.6 - 26.2
Paper: 1.21 - 26.2
Overview
- In-game editor: create and configure NPCs directly on your server.
- Click Actions: build action chains for left/right/both clicks.
- Path system: create and reuse paths (including visualization + testing).
Getting Started
/npc create/npc edit- Right-click an NPC to open its editor.
Links
- Plugin docs: https://github.com/Eisi05/NpcPlugin-Spigot/wiki
- API / Developer docs:
Highlights
- In-game NPC editor
- Toggle edit-mode and configure NPCs directly by interacting with them.
- Edit common properties like name, skin, equipment, glow, visibility, tab-list, pose, and more.
- Click Actions (Left / Right / Both)
- Build action chains that run when players click an NPC.
- Built-in action types include:
Command(run commands with placeholders + variables)Server(send players to a BungeeCord server)Wait(wait by time or by command trigger)Animation(play an animation)Path(make the NPC walk along a saved path)SetVariable(set local/instance/global numeric variables)Condition(run a sub-chain if an expression is true)Loop(repeat a sub-chain; while-loop or for-loop)Npc(apply NPC options per-player or globally as an action)Stop(stop the chain)
- Path system
- Create paths using points, visualize them, test them with a temporary NPC, and reuse them in NPC actions.
- AI Goals
- Configure NPC behavior with built-in goals: Walk to Location, Walk Path, Follow Entity, Attack Entity, Look Around, Wait, and Wander.
- Set target predicates using expressions for dynamic entity selection.
- Expression Parser
- Use mathematical expressions with variables, functions, and boolean logic.
- Support for local, instance, and global variables.
- Execute commands within expressions and use their results.
- Localization + PlaceholderAPI
- Ships with language files (default
en_US). - PlaceholderAPI is supported (soft-depend): placeholders can be used in plugin messages where applicable.
- Ships with language files (default
Guides
Installation
- Download the jar and place it into your server’s
plugins/folder. - Start the server once.
- Configure (optional):
plugins/NpcPlugin/config.ymlplugins/NpcPlugin/lang/<language>/*.json
- Restart or run
/npc reload.
Quick Start
1) Create an NPC
/npc create
2) Enable edit-mode
/npc edit
While edit-mode is enabled:
- Interact with an NPC to open its editor GUI.
If the NPC is not editable, you’ll get a message like This NPC is not editable!.
3) Configure NPC options in the GUI
The GUI lets you change things like:
- Name
- Skin (player name / UUID / local
.png/ URL /.ymlfile / PlaceholderAPI) - “Use Player Skin” (per-player skin)
- Equipment slots
- Visibility / enabled state
- Tab list visibility
- Hide nametag
- Pose
- Skin parts
- Glowing + color
- Look-at-player radius / interval
- Scale
- Teleport to NPC / teleport NPC to you
- Delete NPC
- Goals
For detailed information on setting skins, see the Skins guide.
Click Actions (Left / Right / Both)
In the NPC GUI go to Click Action.
You can configure actions separately for:
- Left click
- Right click
- Both (combined)
You can create an action chain by adding multiple actions.
Action editing tips
- Remove an action: middle-click an existing action.
- Add actions quickly: shift-click an action type to append it.
- Reorder / insert: pick up an action type onto your cursor and click a slot.
Common action types
Command
Executes a command.
- Input can be with or without leading
/(the plugin stores it as/<command>). - Placeholders supported:
{player}/%player%/<player>{player_name}/%player_name%/<player_name>
- Supports variables/expressions via the plugin action system.
- There is optional syntax validation.
Example:
warp spawnserver hubmsg {player} Welcome!
Server (BungeeCord)
Sends the player to another BungeeCord server.
Example server name:
hub
Wait
Pauses the chain before continuing.
You can switch between two modes in the editor:
Time mode
- Left/Right click to adjust the time
- Shift+Left/Shift+Right for bigger steps
- Range is clamped (min
0.05s, max600s)
Command mode
Instead of waiting for time, the chain waits until an admin triggers it:
Waitstores a name (string)- The chain continues only after:
/npc wait <player> <name> [values...]
If [values...] are provided, they are exposed to the next actions as local variables:
<name>-0,<name>-1, ... (numeric values; invalid numbers become0.0)
This is useful to wait for external systems (minigames, scripted events, etc.).
Note (Path)
The Path action also uses the same wait mechanism internally: the chain continues when the NPC finishes walking.
Path
Makes the NPC walk along a saved path.
- You pick a path name (must exist; same world) + a speed (
0.01–1.0). - Optional flags:
- For all (everyone sees the NPC walking)
- Change real location (updates the NPC's real location while walking)
Animation
Plays an animation on the NPC for the clicking player.
- Left click: next animation
- Right click: previous animation
SetVariable
Sets a numeric variable.
- Type:
- Local (stored per-player)
- Instance (stored on the NPC)
- Global (stored server-wide; persisted in
global-variables.yml)
- Name must match
^[a-zA-Z_][a-zA-Z0-9_-]*$ - Value is an expression
If the value is missing, the action does nothing (admins get a warning).
Condition
Runs a sub-chain only if its expression is true.
- You edit the sub-chain like a normal action list
- The condition expression is edited via the "value" item
Loop
Repeats a sub-chain.
There are two loop types:
While-loop
- Repeats while the expression is
true
For-loop
- Repeats with an integer loop index
- Configurable values:
- Start (optional; default
0) - End (required)
- Step (optional; default
1)
- Start (optional; default
You can change the loop type by Shift-clicking the action.
Npc
Opens a special editor that lets you apply NPC options as an action.
This is mainly used to change how the NPC looks/behaves for:
- Only the clicking player (per-player override)
- Everyone (global)
Two flags exist:
- Change globally: applies the configured options to the NPC’s global options
- Reset to default: removes per-player overrides and resets to the NPC’s defaults
Stop
Stops the current chain immediately (and stops nested chains too).
Run-on-show
In the action editor you can enable Run on show.
If enabled, the chain triggers when the NPC is shown to a player (not only when clicked).
Path System Guide
Paths are shared and stored in:
plugins/NpcPlugin/paths.yml
Create a path from points
-
Add points at your current location:
/npc path point add
Or add at a specific index:
/npc path point add <index>
-
List points:
/npc path point list [page]
-
Visualize / toggle visualization of current points:
/npc path visualize points
-
Create the path:
/npc path create <name> [maxIterations] [allowDiagonalMovement]
After creation you can visualize it:
/npc path visualize <name>
Record a path by walking
-
Start recording:
/npc path record start
-
Walk the route.
-
Stop recording:
/npc path record stop
-
Create the path:
/npc path create <name>
Edit an existing path
/npc path edit <name>
This loads the saved path’s waypoints into the point list so you can remove/add points and re-create it.
List / delete / test paths
/npc path list [page]/npc path delete <name>/npc path test <name> [speed]
Goals Guide
Goals give NPCs autonomous behavior. Configure them via the NPC editor GUI.
Available Goals
- Walk to Location: NPC walks to a specific location using pathfinding
- Walk Path: NPC walks along a saved path
- Follow Entity: NPC follows a target entity by UUID
- Attack Entity: NPC attacks nearby matching entities
- Look Around: NPC looks around randomly (idle behavior)
- Wait: NPC waits for a specified duration
- Wander: NPC wanders randomly within a radius
Attack Entity Predicates
Target entities using expressions with variables:
$distance- Distance to NPC$entity.x,$entity.y,$entity.z- Entity position$entity.health- Entity health$npc.x,$npc.y,$npc.z- NPC position[if entity @s[type=zombie]]- Command-based entity type check
Example predicates:
$distance < 5- Only attack within 5 blocks$entity.health < 10- Attack low health entities$distance < 10 && $entity.health > 5- Combined conditions
For more details, see the full Goals documentation.
Expression Parser Guide
Use mathematical expressions in click actions, goal conditions, and variable calculations.
Supported Elements
Operators: +, -, *, /, ^ (power), &&, ||, !, ==, !=, <, >, <=, >=
Math Functions: sin(), cos(), tan(), sqrt(), log(), exp(), ceil(), floor(), round(), trunc(), abs()
Constants: PI, E
Variables
$varName- Auto-resolve (local → instance → global)$global.varName- Server-wide variable$instance.varName- NPC-specific variable$local.varName- Player-specific variable
Special Variables:
$self.rightClick/$self.leftClick- Click type (1 or 0)$self.sneaking,$self.flying,$self.op- Player state$loop.index- Loop iteration index
Command Execution
(/command)- Execute command inside expression/command- Standalone command execution
Examples:
2 + (/count players)- Use command result in calculation$global.score + 1- Increment variable($entity.health < 10) * 5- Conditional value
For the full syntax reference, see the Expression Parser documentation.
Commands
Core
/npc create/npc copy <uuid>/npc edit(toggle edit-mode)/npc list(opens NPC list GUI)/npc tp <uuid> [location] [rotation]/npc tphere <uuid>/npc reload/npc version/npc update(checks for a new plugin version)
Config
/npc config reload/npc config debug [true|false]/npc config avoid-command-check [true|false]/npc config look-at-update-interval [ticks]/npc config input-time [seconds]/npc config auto-update [true|false]/npc config placeholder-timer [ticks]/npc config check-valid-path [true|false]/npc config walking-viewer-distance [distance]/npc config precise-sleeping-hitbox [true|false]/npc config load-chunks-on-path [true|false]/npc config name-display/npc config list
Exceptions (startup load failures)
/npc exceptions [page]/npc exceptions show <name>/npc exceptions delete <name>
Paths
All path commands are under:
/npc path ...
Main subcommands:
point add [index] [location] [rotation]point remove [index|location]point list [page]point clearcreate [name] [maxIterations] [allowDiagonalMovement]delete <name>list [page]visualize [name]visualize pointsrecord start|stoptest <name> [speed]edit <name>
Variables
Manage server-wide global variables via commands:
/npc variable list- List all global variables/npc variable get <name>- Get a variable's value/npc variable set <name> <expression>- Set a variable (supports expressions)/npc variable delete <name>- Delete a variable
Variables can also be managed via the SetVariable click action and used in expressions throughout the plugin.
Configuration (config.yml)
look-at-update-interval:- Time in ticks between “look at player” updates.
avoid-command-check:- If
true, commands added to NPC actions will not be strictly validated.
- If
debug:- Enables extra debug logging.
input-time:- Conversation timeout in seconds (if
< 0, no timeout).
- Conversation timeout in seconds (if
auto-update:- Automatically updates NPCs after option changes.
placeholder-timer:- Time in ticks between placeholder refreshes.
check-path:- Checks if a path is valid (solid block beneath the path)
walking-viewer-distance:- Distance in blocks at which players can see NPCs walking
precise-sleeping-hitbox:- If true, uses precise hitbox detection for sleeping NPCs
load-chunks-on-path:- If true, loads chunks on the path of the NPCs
Troubleshooting
- “This plugin does not support Paper servers!”
- You are running the Spigot build on a Paper server. Install the Paper build instead.
- Server action does nothing
- Ensure BungeeCord is set up and the server names match your proxy configuration.
- Can’t open the editor GUI
- Make sure you:
- Have
npc.admin - Enabled edit-mode via
/npc edit - The NPC is marked as editable
- Have
- Make sure you:
To use this plugin’s events in Skript, you need Skript-Reflect
Basic usage
import:
de.eisi05.npc.api.events.<EventName>
on <EventName>:
# your code here
Replace <EventName> with one of the events listed below.
Available Events
NpcHideEvent
Triggered after an NPC is hidden from a player.
Available values:
event.getNpc()→ NPCevent.getPlayer()→ Player
NpcInteractEvent
Triggered when a player interacts with an NPC.
Available values:
event.getNpc()→ NPCevent.getPlayer()→ Playerevent.getAction()→ ClickActionType (LEFT / RIGHT)event.isCancelled()→ boolean
NpcPostShowEvent
Called after an NPC is fully visible to a player.
Note: This event cannot be cancelled.
Available values:
event.getNpc()→ NPCevent.getPlayer()→ Playerevent.wasViewer()→ boolean (true if the player already saw this NPC before)
NpcPreShowEvent
Called before an NPC is shown to a player.
Note: This event can be cancelled.
Available values:
event.getNpc()→ NPCevent.getPlayer()→ Playerevent.wasViewer()→ booleanevent.isCancelled()→ boolean
NpcStartWalkingEvent
Called before an NPC starts walking along a path.
Available values:
event.getNpc()→ NPCevent.getPath()→ Pathevent.getWalkSpeed()→ doubleevent.isChangeRealLocation()→ boolean (whether real NPC location will update)event.isCancelled()→ boolean
NpcStopWalkingEvent
Called after an NPC stops walking.
Available values:
event.getNpc()→ NPCevent.getWalkingResult()→ WalkingResult (SUCCESS / CANCELLED)event.changeRealLocation()→ boolean (whether final position should be applied)
Example
You can also directly access Java methods inside Skript like this:
import:
de.eisi05.npc.api.events.NpcInteractEvent
on NpcInteractEvent:
set {_player} to event.getPlayer()
send "Triggered!" to {_player}
Additional Resources
For more information about Skript-Reflect syntax and features, visit:
https://tpgamesnl.gitbook.io/skript-reflect/basics
展示图集


版本与下载
推荐下载
NpcPlugin-Paper-2.4.2-all.jar版本 2.4.2 · 759 KBSHA-1 4db45fbd83674190f0f085e1c1dd118d60b5e365下载 NpcPlugin-Paper-2.4.2-all.jar3.0.1-alpha
早期版- 加载器
- paper · purpur
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
SHA-1 21cea1bb6102c184e5f6345fe470a6b11a72361f获取文件 NpcPlugin-Paper-3.0.1-alpha-all.jar展开更新日志
- Fixed issue with condition action
- '/npc message' now support color codes
- A new line (pressing enter) in the name dialog, is now really a new line in the name
3.0.1-alpha
早期版- 加载器
- spigot
- MC 版本
- 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
SHA-1 89a5cf1e8a1edd7dd0087257ae90084bfa4ad23f获取文件 NpcPlugin-3.0.1-alpha.jar展开更新日志
- Fixed issue with condition action
- '/npc message' now support color codes
- A new line (pressing enter) in the name dialog, is now really a new line in the name
2.4.2
正式版- 加载器
- paper · purpur
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
SHA-1 4db45fbd83674190f0f085e1c1dd118d60b5e365获取文件 NpcPlugin-Paper-2.4.2-all.jar展开更新日志
- Skins can now be fetched via URL
- Made default 'display name' options adjustable
- Fixed bug where the name display would not be on full brightness
- Language path changed from 'en' to 'en_US'
2.4.2
正式版- 加载器
- spigot
- MC 版本
- 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
展开更新日志
- Skins can now be fetched via URL
- Made default 'display name' options adjustable
- Fixed bug where the name display would not be on full brightness
- Language path changed from 'en' to 'en_US'
3.0.0-alpha
早期版- 加载器
- paper · purpur
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
SHA-1 dd0ddc127be677455074bf7d2a57659cbbceef30获取文件 NpcPlugin-Paper-3.0.0-alpha-all.jar展开更新日志
NPCs are now stored in .json format (NPCs will be automatically migrated)
3.0.0-alpha
早期版- 加载器
- spigot
- MC 版本
- 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
SHA-1 70ea058f6dc4f4087d0a5efb299062b464fb0423获取文件 NpcPlugin-3.0.0-alpha.jar展开更新日志
NPCs are now stored in .json format (NPCs will be automatically migrated)
2.4.1
正式版- 加载器
- paper · purpur
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
SHA-1 cc93aa65de93daf46a725be1eed052a380e061d2获取文件 NpcPlugin-Paper-2.4.1-all.jar展开更新日志
- Added hitbox for Item-/Block-/Text-Display
- Added hitbox for Ender Dragon
- Added option to reverse paths
- Fixed issue where NPCs would not get deleted
- Bugfixes
2.4.1
正式版- 加载器
- spigot
- MC 版本
- 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
展开更新日志
- Added hitbox for Item-/Block-/Text-Display
- Added hitbox for Ender Dragon
- Added option to reverse paths
- Fixed issue where NPCs would not get deleted
- Bugfixes
2.4.0-SNAPSHOT
正式版- 加载器
- paper · purpur
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
SHA-1 dbe248c9bc6ce91bc5a109aff96d69b8b9f52baf获取文件 NpcPlugin-Paper-2.4.0-SNAPSHOT-all.jar展开更新日志
- Added support for 26.2
- Added option to modify the name display
2.4.0-SNAPSHOT
正式版- 加载器
- spigot
- MC 版本
- 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
SHA-1 435426aed23f390cd97124c6a5dcd8ac86668680获取文件 NpcPlugin-2.4.0-SNAPSHOT.jar展开更新日志
- Added support for 26.2
- Added option to modify the name display
2.3.3
正式版- 加载器
- paper · purpur
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
SHA-1 dd7924c1002e4e2829f395fea716cc78169d9e19获取文件 NpcPlugin-Paper-2.3.3-all.jar展开更新日志
- Performance Improvement
- Bugfixes
2.3.3
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
展开更新日志
- Performance Improvement
- Bugfixes
2.3.2
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
展开更新日志
- Improved pathing via hitbox checks
- Bugfixes
2.3.2
正式版- 加载器
- paper · purpur
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
SHA-1 de1e9988b97228ec09700ab91ccdef622986013c获取文件 NpcPlugin-Paper-2.3.2-all.jar展开更新日志
- Improved pathing via hitbox checks
- Bugfixes
2.3.1-beta
测试版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
SHA-1 65ab9c7ddebc840b4a500b20e782aea2a314b14b获取文件 NpcPlugin-2.3.1-beta.jar展开更新日志
- Added new config options
- walking-viewer-distance: Distance in which a player can see a NPC walking
- precise-sleeping-hitbox: Adds a custom hitbox to a sleeping NPC
- Minor bugfixes
- Minor Improvements
2.3.1-beta
测试版- 加载器
- paper · purpur
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
SHA-1 3d74b08e2f4adf29276ebdb358997323df55c106获取文件 NpcPlugin-Paper-2.3.1-beta-all.jar展开更新日志
- Added new config options
- walking-viewer-distance: Distance in which a player can see a NPC walking
- precise-sleeping-hitbox: Adds a custom hitbox to a sleeping NPC
- Minor bugfixes
- Minor Improvements
2.3.0-beta
测试版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
SHA-1 7cb2be7e4afd5952b52ac7d9967942da6403a9a2获取文件 NpcPlugin-2.3.0-beta.jar展开更新日志
- Added new Path Goal
- Added support for WeaponMechanics
- Fixed npc sleeping position
- Fixed npc disappearing
- Improved pathing by TerZer
2.3.0-beta
测试版- 加载器
- paper · purpur
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
SHA-1 71cffda9d72381a3f83ed7b440936f3dcadf6fdf获取文件 NpcPlugin-Paper-2.3.0-beta-all.jar展开更新日志
- Added new Path Goal
- Added support for WeaponMechanics
- Fixed npc sleeping position
- Fixed npc disappearing
- Fixed errors for versions < 1.21.4
- Improved pathing by TerZer
2.2.2
正式版- 加载器
- paper · purpur
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
SHA-1 72ff3a231eb8104c91105718a2ccfc594a1ba24d获取文件 NpcPlugin-Paper-2.2.2-all.jar展开更新日志
Fixed bug where NPCs would have the same goals
2.2.2
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
展开更新日志
Fixed bug where NPCs would have the same goals
2.1.4
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
展开更新日志
Fixed loading issues for 1.17.1
2.2.0-alpha
早期版- 加载器
- spigot
- MC 版本
- 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
SHA-1 2228a4d1d386daab743cecc80ef0ef998305e8ee获取文件 NpcPlugin-2.2.0-alpha.jar展开更新日志
- Added entity AI Goals
2.2.0-alpha
早期版- 加载器
- paper · purpur
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
SHA-1 a0c184dc030ed79b43a07b1ca4a287f1a5bf00e8获取文件 NpcPlugin-Paper-2.2.0-alpha-all.jar展开更新日志
- Added entity AI Goals
2.1.3
正式版- 加载器
- paper · purpur
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
SHA-1 1e16e5119bc2f09e7229a5cfcee331c910c33e0c获取文件 NpcPlugin-Paper-2.1.3-all.jar展开更新日志
- Fixed various bugs
- Added PlaceholderAPI support for expressions
2.1.3
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
展开更新日志
- Fixed various bugs
- Added PlaceholderAPI support for expressions
2.1.2-SNAPSHOT
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
SHA-1 cd734b51f5d4ae1e4bd656a909943d5883ceee02获取文件 NpcPlugin-2.1.2-SNAPSHOT.jar展开更新日志
- Fixed issue, where paths would not work
- Fixed issue, where npc would not load
2.1.2-SNAPSHOT
正式版- 加载器
- paper · purpur
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
SHA-1 7fb3b9610b7d26b4687ffaffbb185d9b8f2438dd获取文件 NpcPlugin-Paper-2.1.2-SNAPSHOT-all.jar展开更新日志
- Fixed issue, where paths would not work
- Fixed issue, where npc would not load
2.1.1-SNAPSHOT
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
SHA-1 cedfc52b4215a756a2ee8dae2a71b8315411b2d2获取文件 NpcPlugin-2.1.1-SNAPSHOT.jar展开更新日志
- Added new command
/npc movement- Allows to record player movement and replay it via the path option of the npc
- Added new command
/npc execute- Allows to execute the set npc actions via command
2.1.1-SNAPSHOT
正式版- 加载器
- paper · purpur
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
SHA-1 8a1b00ea05fff8eb75ba001cf9973b7836fb39bf获取文件 NpcPlugin-Paper-2.1.1-SNAPSHOT-all.jar展开更新日志
- Added new command
/npc movement- Allows to record player movement and replay it via the path option of the npc
- Added new command
/npc execute- Allows to execute the set npc actions via command
- Fixed an issue where npc would not be visible
- Added support for 26.1.2
2.1.0-SNAPSHOT
正式版- 加载器
- paper · purpur
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1
SHA-1 1537ddc023320835dcf18c107d18e0c2ad8fe033获取文件 NpcPlugin-Paper-2.1.0-SNAPSHOT-all.jar展开更新日志
26.1 and 26.1.1 update
⚠️ Important:
PaperMC is currently in alpha. The plugin may contain bugs or errors in versions 26.1 and 26.1.1.
- Added support for Purpur (may still contain bugs or errors).
2.1.0-SNAPSHOT
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
SHA-1 4fcf0d6e9cc3a087dbd8c2cf42bb05f63237f539获取文件 NpcPlugin-2.1.0-SNAPSHOT.jar展开更新日志
- Added support for 26.1
- Bugfixes
2.0.7-beta
测试版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 2389c444f37bd10d60ebfb5dcf55dbde0086f85e获取文件 NpcPlugin-Paper-2.0.7-beta-all.jar展开更新日志
Hotfix: Fixed an issue where entity interaction did not work
2.0.5-beta
测试版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 cbd041ee01809bb1836d9ea1b784e5dc7bf533f6获取文件 NpcPlugin-2.0.5-beta.jar展开更新日志
- Added new Options (Collision and Visibility)
- Bugfixes
2.0.6-beta
测试版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 fa3262f72a99aa7adb200d469da922cfef88e44d获取文件 NpcPlugin-Paper-2.0.6-beta-all.jar展开更新日志
- Added new Options (Collision and Visibility)
- Bugfixes
2.0.4-beta
测试版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 910e0085fee9a0a802ef4a8574dfe11bc390a286获取文件 NpcPlugin-2.0.4-beta.jar展开更新日志
Bugfix
2.0.5-beta
测试版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 105d6551459ad211586c420581257dde01dc05c0获取文件 NpcPlugin-Paper-2.0.5-beta-all.jar展开更新日志
Bugfix
2.0.4-beta
测试版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 a042352697b33dda3735bccfc345528961f16562获取文件 NpcPlugin-Paper-2.0.4-beta-all.jar展开更新日志
- Fixed pathfinding bug
- Fixed issue where NPCs that were entities were no longer clickable
2.0.3-beta
测试版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 8629ae73e8f79b32e112c4c961996ab314abd5c9获取文件 NpcPlugin-2.0.3-beta.jar展开更新日志
- Fixed pathfinding bug
- Fixed issue where NPCs that were entities were no longer clickable
2.0.3-beta
测试版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 4b71a29df9f156cf7c02c7d12228b16235f7359c获取文件 NpcPlugin-Paper-2.0.3-beta-all.jar展开更新日志
Fixed an issue with conditions
2.0.2-beta
测试版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 7919529b1b9a12130343ae7e80af2b17c710c285获取文件 NpcPlugin-2.0.2-beta.jar展开更新日志
Fixed an issue with conditions
2.0.1-beta
测试版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 e16e85743896160267985397904e2934bccee5d7获取文件 NpcPlugin-2.0.1-beta.jar展开更新日志
Fixed an issue with NPC walking
2.0.2-beta
测试版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 2cdac78af422ef5ffea18ca0dbafb05dd416e2dc获取文件 NpcPlugin-Paper-2.0.2-beta-all.jar展开更新日志
Fixed an issue with NPC walking
2.0.1-beta
测试版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 ea98b9a4656a56b71f92578ec50f7ff45366a784获取文件 NpcPlugin-Paper-2.0.1-beta-all.jar展开更新日志
- Fixed a bug where click actions would not open
2.0.0-beta
测试版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 4bc5b3e06c6148b68e04b9f3d1acbef32aa26b20获取文件 plugin-2.0.0-beta.jar展开更新日志
⚠️ Warning:
This version is not stable and may contain bugs—use at your own risk! If you find any bugs or issues, please report them via the issue tracker or on Discord @Eisi05
- NPCs can now also be entities other than players
- Improved click actions (including loops, conditions, and variables)
2.0.0-beta
测试版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 541a3c7adfba48795c8abddd65d35b6cf0bada25获取文件 NpcPlugin-Paper-2.0.0-beta-all.jar展开更新日志
⚠️ Warning:
This version is not stable and may contain bugs—use at your own risk! If you find any bugs or issues, please report them via the issue tracker or on Discord @Eisi05
- NPCs can now also be entities other than players
- Improved click actions (including loops, conditions, and variables)
1.7.6
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
展开更新日志
Fixed issue for Chunk unloading error
1.4.6-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 da1b2646cc210d538c83ac31063452a3092f7181获取文件 NpcPlugin-Paper-1.4.6-SNAPSHOT-all.jar展开更新日志
Fixed issue for Chunk unloading error
1.4.5-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 22e22930070a3c4c261a941313e331cd9e663d63获取文件 NpcPlugin-Paper-1.4.5-SNAPSHOT-all.jar展开更新日志
- Fixed an issue where dynamic skins via PlaceholderAPI were not applied correctly
- Fixed an issue that caused chunk loading errors
1.7.5
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
展开更新日志
- Fixed an issue where dynamic skins via PlaceholderAPI were not applied correctly
- Fixed an issue that caused chunk loading errors
1.4.4-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 4e495c668cf5d7ad79491bce118598d7f6d88618获取文件 NpcPlugin-Paper-1.4.4-SNAPSHOT-all.jar展开更新日志
Fixed a bug where you would not see the NPC although it is enabled
1.7.4
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
展开更新日志
Fixed bugs when changing the world or respawning
1.4.3-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 1f547a23f50a4c043487af0ac75277b9faaadd63获取文件 NpcPlugin-Paper-1.4.3-SNAPSHOT-all.jar展开更新日志
Fixed bugs when changing the world or respawning
1.7.3-SNAPSHOT
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 bcf49ae0ef971502e66ac5281498bcc61acd3b7b获取文件 NpcPlugin-1.7.3-SNAPSHOT.jar展开更新日志
- Added an UpdateChecker
- Bug fixes
1.4.2-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 a5fb03b3de8792ed1f7b0b6c2efed9f2773c3eaa获取文件 NpcPlugin-Paper-1.4.2-SNAPSHOT-all.jar展开更新日志
- Added an UpdateChecker
- Bug fixes
1.7.2-SNAPSHOT
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 b2ead05f175951b9b34cafac9715d7c8a9274eee获取文件 NpcPlugin-1.7.2-SNAPSHOT.jar展开更新日志
- Bugfix: Some commands won't execute correctly
1.7.1-SNAPSHOT
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 0b24025bdf908488077bd569e28f60fd76bac126获取文件 NpcPlugin-1.7.1-SNAPSHOT.jar展开更新日志
- NPCs can now sit (1.19.4+)
- Added bStats
- Bugfixes
1.4.1-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 6fac37b2097c4dc5dd68041a5174be12ddf43ae5获取文件 NpcPlugin-Paper-1.4.1-SNAPSHOT-all.jar展开更新日志
- NPCs can now sit (1.19.4+)
- Added bStats
- Bugfixes
1.7.0-SNAPSHOT
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 6eb43fea6315187a11159b136b62e1255f3e3b3f获取文件 NpcPlugin-1.7.0-SNAPSHOT.jar展开更新日志
Added 1.21.11 support
1.4.0-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 d38bf11de98248fc302856671f7aa90db6aa2203获取文件 NpcPlugin-Paper-1.4.0-SNAPSHOT-all.jar展开更新日志
Added 1.21.11 support
1.6.2
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
展开更新日志
- Fixed a bug where NPC would not load after restart
1.3.3-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 884478b2ddd0d787a5f90af586541b9018de0662获取文件 NpcPlugin-Paper-1.3.3-SNAPSHOT-all.jar展开更新日志
- Fixed a bug where NPC would not load after restart
1.6.1
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
展开更新日志
- NPCs now load when the world is fully loaded
- UUID no longer changes when switching skins
1.3.2-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 c90c28617a1ed759aad49d86a5192c8c0ca02d62获取文件 NpcPlugin-Paper-1.3.2-SNAPSHOT-all.jar展开更新日志
- NPCs now load when the world is fully loaded
- UUID no longer changes when switching skins
1.3.1-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 c8e22165ea7a9e46a66f9847a5f3e13e690fa2b9获取文件 NpcPlugin-Paper-1.3.1-SNAPSHOT-all.jar展开更新日志
Fixed an issue with loading a file as a skin
1.3.0-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 b21ba3a99dddca0108be23d0e09f994bc0d590b2获取文件 NpcPlugin-Paper-1.3.0-SNAPSHOT-all.jar展开更新日志
Added a new pathing system that also allows walking through doors, fence gates, and similar objects
Thanks to @TerZer
1.6.0
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
展开更新日志
Added a new pathing system that also allows walking through doors, fence gates, and similar objects
Thanks to @TerZer
1.2.8-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 d7af76363455869e5184ba6ffb484b6ae88cebf2获取文件 NpcPlugin-Paper-1.2.8-SNAPSHOT-all.jar展开更新日志
- fixed issue regarding name color
- fixed issue regarding /npc reload
1.5.9
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
展开更新日志
fixed an issue regarding /npc reload
1.2.7-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 e5a4fb4e5946836abe477b699e19cb55de4d783a获取文件 NpcPlugin-Paper-1.2.7-SNAPSHOT-all.jar展开更新日志
Fixed an issue that prevented equipment from being saved correctly
1.2.5-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 ae6f5a173caa1a751802b287bfdc1400bceeea24获取文件 NpcPlugin-Paper-1.2.5-SNAPSHOT-all.jar展开更新日志
- fixed issue where the npc id would show up
1.5.8
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
展开更新日志
- fixed issue where the npc id would show up
1.2.5-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 7fe5871e20ef716cfeee92b9c932aa645cb4245c获取文件 NpcPlugin-Paper-1.2.5-SNAPSHOT-all.jar展开更新日志
- Sync with latest API updates
1.5.7
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
展开更新日志
- Sync with latest API updates
1.2.4-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 1107d7d9b297b326fba47a9447325795d43f02e8获取文件 NpcPlugin-Paper-1.2.4-SNAPSHOT-all.jar展开更新日志
1.24-SNAPSHOT
- fixed skin issue
- added dynamic skins via PlaceholderAPI
- improved PlaceholderAPI support
1.5.6
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
展开更新日志
1.5.6
- fixed skin issue
- added dynamic skins via PlaceholderAPI
- improved PlaceholderAPI support
1.2.3-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 4d33276094b24a7ac3a11e0afcc3bc0281aaa05e获取文件 NpcPlugin-Paper-1.2.3-SNAPSHOT-all.jar展开更新日志
- fixed skin issue
- fixed PlaceholderAPI issue
1.5.5
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
展开更新日志
- fixed skin issue
- fixed PlaceholderAPI issue
1.2.2-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 7d037a8bf89152ea135ebed9350f30d9056b92e5获取文件 NpcPlugin-Paper-1.2.2-SNAPSHOT-all.jar展开更新日志
1.2.2-SNAPSHOT
- Added support for PlaceholderAPI
1.5.4
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
展开更新日志
1.5.4
- Added support for PlaceholderAPI
1.2.1-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 c46bfb5d6bb5aac03933443ff049e98aba98dccd获取文件 NpcPlugin-Paper-1.2.1-SNAPSHOT-all.jar展开更新日志
1.2.1-SNAPSHOT
- bug fixes
- better command execution
1.5.3
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
展开更新日志
1.5.3
- bug fixes
- better command execution
1.5.2-SNAPSHOT
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 a59181a9de7f786c4cd649e6f004a4209b0c2a73获取文件 NpcPlugin-1.5.2-SNAPSHOT.jar展开更新日志
Quality of Life changes
- bug fixes
1.2.0-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 52b6c17068366137e5bef950ad2c5882079aabfc获取文件 NpcPlugin-Paper-1.2.0-SNAPSHOT-all.jar展开更新日志
Paper support for 1.21.9/1.21.10
- Added Pathfinding to NPC's
1.5.1-SNAPSHOT
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 eca5f54226cb6168048cff62c373545da3ea8bae获取文件 NpcPlugin-1.5.1-SNAPSHOT.jar展开更新日志
- bug fixes
- added better excption handling
- added command /npc excptions - to show the exceptions that occurred during the npc loading
1.5.0-SNAPSHOT
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 d7c44862fdb0f6190f0f39e50233a1575b68bc2b获取文件 NpcPlugin-1.5.0-SNAPSHOT.jar展开更新日志
- Added support for 1.21.9/1.21.10
- Added Pathfinding
- Fixed bugs
NOTE: This is a SNAPSHOT. Errors might occur; if so, please send them to me so I can fix them.
1.1.0-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8
SHA-1 3f34d6713d6e3ab2593b281e1933ee4647da78a1获取文件 NpcPlugin-Paper-1.1.0-SNAPSHOT-all.jar展开更新日志
New Features
- /npc tp - Teleports you to the NPC
- /npc tphere Teleports the NPC to you
- /npc config [value] - Modifies the config settings
- /npc config reload - Reloads the config
1.4.0
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8
展开更新日志
New Features
- /npc tp - Teleports you to the NPC
- /npc tphere Teleports the NPC to you
- /npc config [value] - Modifies the config settings
- /npc config reload - Reloads the config
1.0-SNAPSHOT
正式版- 加载器
- paper
- MC 版本
- 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8
SHA-1 bb515b505f3b4ce420a697be0d47ed67813aea1f获取文件 NpcPlugin-Paper-1.0.0-SNAPSHOT-all.jar展开更新日志
Initial Paper Release
1.3.7
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8
展开更新日志
Added support for multiline name tags (1.19.4+)
1.3.6
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8
展开更新日志
Fixed bug where NPC ID was sometimes visible
1.3.5
正式版- 加载器
- spigot
- MC 版本
- 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8