ModIntegration - MarkusBordihn/BOs-Easy-NPC GitHub Wiki
🗣 Easy NPC - Mod integration
Welcome to the Easy NPC - Mod Integration Wiki page, where you will learn how to integrate Easy NPCs with other mods to enhance your Minecraft experience. In this page, we will cover the integration of Easy NPCs with other Minecraft mods. With these integrations, you can create even more interactive and engaging experiences in your Minecraft world. So, let's dive in and see how to set up these integrations!
Daily Rewards
You can use the Daily Rewards mod to create an NPC to open the daily reward screen for the player when interacting with the NPC.
Create a NPC and set the action to /DailyRewards claim
and make sure to select the Execute as player
option.
If you want to use the on Interact
action, make sure that you set the dialog to None
.
Simple Quests
You can use the Simple Quests Forge mod to create quests for the Easy NPCs. The quests could be triggered over the action configuration screen of the Easy NPC.
Create a NPC and set the action to /simplequests show
or /simplequests accept easy_mob_farm:kill_example
and make sure to select the Execute as player
option.
If you want to use the on Interact
action, make sure that you set the dialog to None
.
CarryOn
I added a basic block list for the CarryOn mod to exclude the NPC from being picked up.
If this is not working, please use the CarryOn config carryon-server.toml
to add the NPCs to the block list instead.
[blacklist]
...
#Entities that cannot be picked up
forbiddenEntities = [..., "easy_npc:*"]
...