Trying to config death notes to work with Roaming npc pluginSolved
https://codefling.com/plugins/roaming-npcs?tab=details


Someone on the comments page of the plugin stated that back in 2025 they had contacted you and you added support for Custom Pet Entity types but i do not see that in the config. I tried adding it myself and reloading the plugin but it still is not working. Config i added is below

      {
        "KillerType": "Player",
        "VictimType": "CustomNPC",
        "DamageType": "*",
        "Enabled": true,
        "Messages": [
          "{killer} conveyed their opinion of NPCs to {victim} with their {weapon}."
        ]
      },
      {
        "KillerType": "CustomPet",
        "VictimType": "Player",
        "DamageType": "*",
        "Enabled": true,
        "Messages": [
          "{killer} demonstrated RNPC superiority to {victim}."
        ]
      },
      {
        "KillerType": "Player",
        "VictimType": "CustomPet",
        "DamageType": "*",
        "Enabled": true,
        "Messages": [
          "{killer} conveyed their opinion of RNPCs to {victim} with their {weapon}."
        ]
      },
      {
        "KillerType": "CustomPet",
        "VictimType": "Scientist",
        "DamageType": "*",
        "Enabled": true,
        "Messages": [
          "{killer} did not want to be a part of the {victim}'s experiments, and did some science of their own with their {weapon}."
        ]
      },
      {
        "KillerType": "CustomPet",
        "VictimType": "CustomPet",
        "DamageType": "*",
        "Enabled": true,
        "Messages": [
          "{killer} Their can only be one RNPC Remaining {victim}."
        ]
      },
      {
        "KillerType": "CustomPet",
        "VictimType": "Animal",
        "DamageType": "*",
        "Enabled": true,
        "Messages": [
          "{killer} killed a {victim} using their {weapon}."
        ]
      },

There is no separate CustomPet entity type in DeathNotes. Plugins that use a "CustomPet" fall under the CustomNPC entity type. For what it's worth, I using Roaming NPC on my server and it works great with DeathNotes. :-)

got it working and it work great thank you

Locked