Plugin which brings RPG features into minecraft.
20

Plugin Configuration

Settings.conf

The main Plugin configuration you can find in the file Settings.conf. In a case you will encounter while reading this wiki PluginConfig.SOME_NODE it will refer to configuration node SOME_NODE within Settings.conf file

ItemGroups.conf

  • A file where you have to setup which item types should be recognized as weapons, armor, shields, custom inventory slots
  • This is important for modded servers, vanilla servers should be fine with the default setp

Localizations

  • Localizations are loaded from folder config/nt-rpg/localizations.
  • Plugin localization may be changed via PluginConfig.LOCALE

MobSettings.conf

  • File where you can edit maximal mob health, damage, experience gain after kill
  • Those configurations wont be used if you set PluginConfig.OVERRIDE_MOBS to true.
  • You have to setup these per your world.
# Dimensions
dimensions {
   # Default world name of overworld
    DIM-1 {
        # Entity Damage
        damage {
            "minecraft:armor_stand"=10.0
            "minecraft:bat"=10.0
        }
        experiences {
            "minecraft:armor_stand"=10.0
            "minecraft:bat"=10.0
        }
        # Entity Maximum health
        health {
            "minecraft:armor_stand"=10.0
            "minecraft:bat"=10.0
        }
    }
   MyAnotherWorld {
       ......
   }
  
...

Category: Role Playing

Published on Jul 2, 2017

views

stars

watchers

total downloads

Licensed under GNU General Public License (GPL)

Promoted Versions

Members