... | ... | @@ -13,8 +13,8 @@ Using the below mob as a base, we can make a simple NPC that just stands still. |
|
|
```yaml
|
|
|
NPC_Steve:
|
|
|
Type: INTERACTION
|
|
|
Display: 'Steve'
|
|
|
Disguise: Player Steve setDynamicName true
|
|
|
Display: 'Steve the Guide'
|
|
|
Disguise: Player <inherit> setSkin Steve setDynamicName true
|
|
|
Options:
|
|
|
AlwaysShowName: true
|
|
|
Despawn: persistent
|
... | ... | @@ -22,8 +22,8 @@ NPC_Steve: |
|
|
|
|
|
- `NPC_Steve` This is what you'll use to spawn your NPC. /mm m spawn NPC_Steve
|
|
|
- `Type: INTERACTION` You can use whatever you like but we'll be using an interaction entity since it has no AI, no sound etc.
|
|
|
- `Display: 'Steve'` This is what will appear above your NPC's head.
|
|
|
- `Disguise: Player Steve setDynamicName true` This is what makes our NPC look like a player. You can replace "Steve" with whatever player name you want. You must keep the setDynamicName as true so the NPC can use the Display setting. For more information about using custom skins [read here](/Mobs/Disguises)
|
|
|
- `Display: 'Steve the Guide'` This is what will appear above your NPC's head.
|
|
|
- `Disguise: Player <inherit> setSkin Steve setDynamicName true` This is what makes our NPC look like a player. You can replace "Steve" with whatever player's skin you'd like to use. You must keep the setDynamicName as true so the NPC can use the Display setting. The `<inherit>` name placeholder sets the NPC to show its `Display:` name. For more information about using custom skins [read here](/Mobs/Disguises).
|
|
|
- `AlwaysShowName: true` This makes the nameplate show above your NPC.
|
|
|
- `Despawn: persistent` This will keep your NPC spawned on reloads, restarts and chunk unloads.
|
|
|
|
... | ... | |