v0.6

Details

  • Filename
    Catacombs.jar
  • Uploaded by
  • Uploaded
    Oct 12, 2011
  • Size
    278.02 KB
  • Downloads
    1,128
  • MD5
    53343a434f425ed08ca20ce1a5799820

Supported Bukkit Versions

  • CB 1240

Changelog

Release v0.6

A number of changes to the config.yml this release. you might want to generate a fresh file and then make your changes.

  • A big update to the Catacombs configuration system. The existing configuration file (config.yml) should still be ok (except for any custom loot lists you've done - sorry not auto converting this time because I mentioned it was temporary I will convert if the format changes again). Old files will have some redundant variables in it so rename config.yml and regen if you can.
  • The chest loot is now fully configurable. See the examples in the config file. Create a line for each type of loot you want the chest to possibly contain. Each line should consist of 3 parts with ':' between them (no spaces). The names must be valid bukkit names see here for the names Material.html. The name check is case insensitive.
    <name of the item>:<percentage chance>:<num>
    or
    <name of the item>:<percentage chance>:<min_num>-<max_num>

    e.g diamond:50:3-5      There is a good chance of a handful of diamonds
  • Added /style to report the dungeon style (default is 'catacomb')
  • Added /style <name> to change to the dungeon planner/loot gen to a different style For example if you carefully add the lines below to your config.yml and then '/cat style grand' the values below will override the default 'catacomb' values where they both exist. Notice even the loot can be customized. Changing styles before calling '/cat reset <dungeon>' is handy if you want to define several of your own custom loot lists to refill chests with. Be warned the style is server wide and resets to 'catacomb' when you log.
grand:
    Archway:
        DoubleWidthPct: 100
    Depth:
        room: 4
    Corridor:
        Width3Pct: 20
        Width2Pct: 80
        Max: 15
        Min: 6
    Room:
        Max: 20
        Min: 8
        Clutter:
            ChestPct: 50
    CorridorPct: 20
    RadiusMax: 40
    Loot:
        Medium:
            List:
            - torch:100:32
  • Here's an example of the kind of map you can get with the 'grand' settings and here is a Picture
  • Added supported economy tools to the softdepend list in plugin.yml
  • Added a configuration option to allow admins to block certain commands when players are inside an enabled dungeon. The default list is this:
Admin:
    BannedCommands:
    - /spawn
    - /kill
    - /warp
    - /setwarp
    - /home

A debug message was left on that will spam the server console a little when a new config.yml is created.