NPC Plugin 图标

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

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.

Guides

Installation

  1. Download the jar and place it into your server’s plugins/ folder.
  2. Start the server once.
  3. Configure (optional):
    • plugins/NpcPlugin/config.yml
    • plugins/NpcPlugin/lang/<language>/*.json
  4. 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 / .yml file / 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 spawn
  • server hub
  • msg {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, max 600s)
Command mode

Instead of waiting for time, the chain waits until an admin triggers it:

  • Wait stores 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 become 0.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.011.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)

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

  1. Add points at your current location:

    • /npc path point add

    Or add at a specific index:

    • /npc path point add <index>
  2. List points:

    • /npc path point list [page]
  3. Visualize / toggle visualization of current points:

    • /npc path visualize points
  4. Create the path:

    • /npc path create <name> [maxIterations] [allowDiagonalMovement]

After creation you can visualize it:

  • /npc path visualize <name>

Record a path by walking

  1. Start recording:

    • /npc path record start
  2. Walk the route.

  3. Stop recording:

    • /npc path record stop
  4. 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 clear
  • create [name] [maxIterations] [allowDiagonalMovement]
  • delete <name>
  • list [page]
  • visualize [name]
  • visualize points
  • record start|stop
  • test <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.
  • debug:
    • Enables extra debug logging.
  • input-time:
    • Conversation timeout in seconds (if < 0, no timeout).
  • 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

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() → NPC
  • event.getPlayer() → Player

NpcInteractEvent

Triggered when a player interacts with an NPC.

Available values:

  • event.getNpc() → NPC
  • event.getPlayer() → Player
  • event.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() → NPC
  • event.getPlayer() → Player
  • event.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() → NPC
  • event.getPlayer() → Player
  • event.wasViewer() → boolean
  • event.isCancelled() → boolean

NpcStartWalkingEvent

Called before an NPC starts walking along a path.

Available values:

  • event.getNpc() → NPC
  • event.getPath() → Path
  • event.getWalkSpeed() → double
  • event.isChangeRealLocation() → boolean (whether real NPC location will update)
  • event.isCancelled() → boolean

NpcStopWalkingEvent

Called after an NPC stops walking.

Available values:

  • event.getNpc() → NPC
  • event.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

bStats

版本与下载

推荐下载

NpcPlugin-Paper-2.4.2-all.jar版本 2.4.2 · 759 KBSHA-1 4db45fbd83674190f0f085e1c1dd118d60b5e365下载 NpcPlugin-Paper-2.4.2-all.jar

3.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
NpcPlugin-Paper-3.0.1-alpha-all.jar805 KBSHA-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
NpcPlugin-3.0.1-alpha.jar973.5 KBSHA-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
NpcPlugin-Paper-2.4.2-all.jar759 KBSHA-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
NpcPlugin-2.4.2.jar927.4 KBSHA-1 23e4e5b8c8cfd324bd6bd445f29840455afa0f87获取文件 NpcPlugin-2.4.2.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'

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
NpcPlugin-Paper-3.0.0-alpha-all.jar804.9 KBSHA-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
NpcPlugin-3.0.0-alpha.jar973.4 KBSHA-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
NpcPlugin-Paper-2.4.1-all.jar741.4 KBSHA-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
NpcPlugin-2.4.1.jar909.8 KBSHA-1 dd22e6d793a63c9c334536173c5bd29d894e8291获取文件 NpcPlugin-2.4.1.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.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
NpcPlugin-Paper-2.4.0-SNAPSHOT-all.jar736.8 KBSHA-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
NpcPlugin-2.4.0-SNAPSHOT.jar900.8 KBSHA-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
NpcPlugin-Paper-2.3.3-all.jar723.7 KBSHA-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
NpcPlugin-2.3.3.jar896.2 KBSHA-1 dde729a6b4ba0fb60f07febb8c59a86d69b36a14获取文件 NpcPlugin-2.3.3.jar
展开更新日志
  • 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
NpcPlugin-2.3.2.jar892.5 KBSHA-1 c7e9c25da6621d447f5db7c88c5853decca8988d获取文件 NpcPlugin-2.3.2.jar
展开更新日志
  • 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
NpcPlugin-Paper-2.3.2-all.jar719.5 KBSHA-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
NpcPlugin-2.3.1-beta.jar890.6 KBSHA-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
NpcPlugin-Paper-2.3.1-beta-all.jar717.6 KBSHA-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
NpcPlugin-2.3.0-beta.jar882.3 KBSHA-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
NpcPlugin-Paper-2.3.0-beta-all.jar709.2 KBSHA-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
NpcPlugin-Paper-2.2.2-all.jar671.7 KBSHA-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
NpcPlugin-2.2.2.jar846.8 KBSHA-1 3952013cd5ad8b88c10d9e5444714a711ea75836获取文件 NpcPlugin-2.2.2.jar
展开更新日志

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
NpcPlugin-2.1.4.jar718.4 KBSHA-1 dd82142bc65d0279315ae9651afdc136980effc0获取文件 NpcPlugin-2.1.4.jar
展开更新日志

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
NpcPlugin-2.2.0-alpha.jar840 KBSHA-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
NpcPlugin-Paper-2.2.0-alpha-all.jar665.5 KBSHA-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
NpcPlugin-Paper-2.1.3-all.jar540 KBSHA-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
NpcPlugin-2.1.3.jar715.9 KBSHA-1 be8bb09a850866e21ce1d1143a603ab3fab8cac5获取文件 NpcPlugin-2.1.3.jar
展开更新日志
  • 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
NpcPlugin-2.1.2-SNAPSHOT.jar715.3 KBSHA-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
NpcPlugin-Paper-2.1.2-SNAPSHOT-all.jar538.8 KBSHA-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
NpcPlugin-2.1.1-SNAPSHOT.jar714.7 KBSHA-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
NpcPlugin-Paper-2.1.1-SNAPSHOT-all.jar538.1 KBSHA-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
NpcPlugin-Paper-2.1.0-SNAPSHOT-all.jar518.4 KBSHA-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
NpcPlugin-2.1.0-SNAPSHOT.jar693.3 KBSHA-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
NpcPlugin-Paper-2.0.7-beta-all.jar509.7 KBSHA-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
NpcPlugin-2.0.5-beta.jar680.4 KBSHA-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
NpcPlugin-Paper-2.0.6-beta-all.jar509.8 KBSHA-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
NpcPlugin-2.0.4-beta.jar659.3 KBSHA-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
NpcPlugin-Paper-2.0.5-beta-all.jar489.9 KBSHA-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
NpcPlugin-Paper-2.0.4-beta-all.jar488.4 KBSHA-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
NpcPlugin-2.0.3-beta.jar657.3 KBSHA-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
NpcPlugin-Paper-2.0.3-beta-all.jar487.8 KBSHA-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
NpcPlugin-2.0.2-beta.jar656.7 KBSHA-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
NpcPlugin-2.0.1-beta.jar662.8 KBSHA-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
NpcPlugin-Paper-2.0.2-beta-all.jar487.6 KBSHA-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
NpcPlugin-Paper-2.0.1-beta-all.jar485.8 KBSHA-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
plugin-2.0.0-beta.jar656.7 KBSHA-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
NpcPlugin-Paper-2.0.0-beta-all.jar485.9 KBSHA-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
NpcPlugin-1.7.6.jar527.4 KBSHA-1 e84afcbc2bf2bb70a19379e0e5cd1a4d6dcd5752获取文件 NpcPlugin-1.7.6.jar
展开更新日志

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
NpcPlugin-Paper-1.4.6-SNAPSHOT-all.jar346.8 KBSHA-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
NpcPlugin-Paper-1.4.5-SNAPSHOT-all.jar345.9 KBSHA-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
NpcPlugin-1.7.5.jar526.5 KBSHA-1 08dcb0186361f1536dc513b27413cbf4878e61ce获取文件 NpcPlugin-1.7.5.jar
展开更新日志
  • 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
NpcPlugin-Paper-1.4.4-SNAPSHOT-all.jar342.5 KBSHA-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
NpcPlugin-1.7.4.jar528 KBSHA-1 c0ebca6d39322046691328e984d7e17a4617575f获取文件 NpcPlugin-1.7.4.jar
展开更新日志

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
NpcPlugin-Paper-1.4.3-SNAPSHOT-all.jar341.4 KBSHA-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
NpcPlugin-1.7.3-SNAPSHOT.jar522.2 KBSHA-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
NpcPlugin-Paper-1.4.2-SNAPSHOT-all.jar341.2 KBSHA-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
NpcPlugin-1.7.2-SNAPSHOT.jar517.5 KBSHA-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
NpcPlugin-1.7.1-SNAPSHOT.jar517.6 KBSHA-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
NpcPlugin-Paper-1.4.1-SNAPSHOT-all.jar336.9 KBSHA-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
NpcPlugin-1.7.0-SNAPSHOT.jar495 KBSHA-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
NpcPlugin-Paper-1.4.0-SNAPSHOT-all.jar313.2 KBSHA-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
NpcPlugin-1.6.2.jar491.7 KBSHA-1 23181e5d1d0b0ccc6167941b15107cb515bd4a93获取文件 NpcPlugin-1.6.2.jar
展开更新日志
  • 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
NpcPlugin-Paper-1.3.3-SNAPSHOT-all.jar312.9 KBSHA-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
NpcPlugin-1.6.1.jar491.1 KBSHA-1 9ac956168468209ad3681c0b22dc75092465faa9获取文件 NpcPlugin-1.6.1.jar
展开更新日志
  • 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
NpcPlugin-Paper-1.3.2-SNAPSHOT-all.jar312.8 KBSHA-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
NpcPlugin-Paper-1.3.1-SNAPSHOT-all.jar311.5 KBSHA-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
NpcPlugin-Paper-1.3.0-SNAPSHOT-all.jar311.2 KBSHA-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
NpcPlugin-1.6.0.jar489.7 KBSHA-1 e71732618efa00fd5d5f418c9ee571c1ecaabfee获取文件 NpcPlugin-1.6.0.jar
展开更新日志

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
NpcPlugin-Paper-1.2.8-SNAPSHOT-all.jar304 KBSHA-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
NpcPlugin-1.5.9.jar483 KBSHA-1 e82b6e2ad7ec4f6e08e242d1f5fcc856b9eee82f获取文件 NpcPlugin-1.5.9.jar
展开更新日志

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
NpcPlugin-Paper-1.2.7-SNAPSHOT-all.jar303.8 KBSHA-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
NpcPlugin-Paper-1.2.5-SNAPSHOT-all.jar305.2 KBSHA-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
NpcPlugin-1.5.8.jar482.7 KBSHA-1 24aeb6820cfee2db5cdef26c221ed6847f73228a获取文件 NpcPlugin-1.5.8.jar
展开更新日志
  • 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
NpcPlugin-Paper-1.2.5-SNAPSHOT-all.jar304 KBSHA-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
NpcPlugin-1.5.7.jar481.5 KBSHA-1 11deb7cefdc66940c57a4971b9f4e74fb9740f81获取文件 NpcPlugin-1.5.7.jar
展开更新日志
  • 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
NpcPlugin-Paper-1.2.4-SNAPSHOT-all.jar304 KBSHA-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
NpcPlugin-1.5.6.jar481.6 KBSHA-1 706f8fdc89e443d1968baa8d86f6b56f6a162b52获取文件 NpcPlugin-1.5.6.jar
展开更新日志

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
NpcPlugin-Paper-1.2.3-SNAPSHOT-all.jar296.2 KBSHA-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
NpcPlugin-1.5.5.jar473.4 KBSHA-1 f549e9fc1b32a4664ae7ed5a38781f407aff09cf获取文件 NpcPlugin-1.5.5.jar
展开更新日志
  • 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
NpcPlugin-Paper-1.2.2-SNAPSHOT-all.jar295.9 KBSHA-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
NpcPlugin-1.5.4.jar473.3 KBSHA-1 df918f02617bc18f993f8bfa8b2c4c9d19d3400b获取文件 NpcPlugin-1.5.4.jar
展开更新日志

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
NpcPlugin-Paper-1.2.1-SNAPSHOT-all.jar290.8 KBSHA-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
NpcPlugin-1.5.3.jar467.7 KBSHA-1 e50aea2c93c2476ab9e9cf2ae2fae47d6d053e15获取文件 NpcPlugin-1.5.3.jar
展开更新日志

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
NpcPlugin-1.5.2-SNAPSHOT.jar452.1 KBSHA-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
NpcPlugin-Paper-1.2.0-SNAPSHOT-all.jar276.2 KBSHA-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
NpcPlugin-1.5.1-SNAPSHOT.jar451.9 KBSHA-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
NpcPlugin-1.5.0-SNAPSHOT.jar449.1 KBSHA-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
NpcPlugin-Paper-1.1.0-SNAPSHOT-all.jar219.6 KBSHA-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
NpcPlugin-1.4.0.jar1.1 MBSHA-1 60508f1f263fa5e5454003acceb62e9f634f36f5获取文件 NpcPlugin-1.4.0.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.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
NpcPlugin-Paper-1.0.0-SNAPSHOT-all.jar203.8 KBSHA-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
NpcPlugin-1.3.7.jar1.1 MBSHA-1 088fac1965204276b404e64a5954b7fe6fa6f9de获取文件 NpcPlugin-1.3.7.jar
展开更新日志

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
NpcPlugin-1.3.6.jar348.6 KBSHA-1 10f952c990bdee71394e63bbbfe19cc804b44676获取文件 NpcPlugin-1.3.6.jar
展开更新日志

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
NpcPlugin-1.3.5.jar348.6 KBSHA-1 a935714d5dbfd4be793fa88d64ded2d226701483获取文件 NpcPlugin-1.3.5.jar

依赖关系