[Feature Request] Adding custom model
KrshnaHare opened this issue · 6 comments
I'd like to choose my own model for a NPC. At least, I'd like to choose a mob from installed mods, for instance, a sheep or a lava monster. It'd be much better to use custom models for quests. Also it would be great to have the ability to tp a player if needful answer is chosen. It also would be great if a NPC could start a dialog only if a player bear a specific item.
A full working example of an mod integration with Epic Fight is live at:
- https://www.curseforge.com/minecraft/mc-mods/easy-npc-epic-fight
- https://github.com/MarkusBordihn/BOs-Easy-NPC-Epic-Fight
With something like you can easily overwrite the rendering and the model itself.
You just need to extend one of the "base" models, but could complete overwrite all rendering and model related stuff.
The other feature will be covered in #48
Thanks for the feedback.
Custom Models
Custom models is nothing which I will be able to support directly by the mod itself.
Each custom models has their own rendere and animation logic which I need to modify for specific features.
This means I could not just select a model and everything will work as expected, so I need to perform specific modification for each single model.
However moder can easily integrate their custom models with smaller modification as NPCs.
If there is any interest for this I'm happy to provide a example how custom models could be added as an additional mod based on this mod.
Teleport a player
This is already possible over the action menu, but the command needs to be added in creative mod to make sure it has the correct permission level.
Quest specific tasks
This is something I currently working on, but require more work. So there will be quest dialogs which are only triggered when a specific items is obtained or if a specific tasks was performed beforehand.
In the mean time you could use the standard scripting feature to check if a player has a specific item and if not you could just hide the NPC from them.
If there is any interest for this I'm happy to provide a example how custom models could be added as an additional mod based on this mod.
Please, provide, I will be happy to know