Title Zones - Define zones that send Titles to Players who cross their borders

This is a discussion topic for the Ore project, Title Zones. View the full project on Ore for downloads and more information.


Title Zones

A Sponge plugin that allows you to define zones that send Titles to Players who cross their borders.



Example Config

See this docs page for more examples of serialized Text

zones=[
    {
        position {
            x=0.0
            y=64.0
            z=0.0
        }
        radius=30
        subtitle {
            color=blue
	    bold=true
            text="extra information (subtitle)"
        }
        title {
            color=blue
            text="Zone 1"
        }
    },
    {
        position {
            x=100.0
            y=64.0
            z=100.0
        }
        radius=30
        subtitle {
            color=red
	    bold=true
            text="extra information (subtitle 2)"
        }
        title {
            color=red
            text="Zone 2"
        }
    },
    {
        position {
            x=6955.0
            y=253
            z=4919
        }
        radius=150
        subtitle {
            color=aqua
            text="Otherwise known as Peak XV"
        }
        title {
            color=aqua
            bold=true
            text="Mt Everest"
        }
    }
]

Optional Dependencies

Plugins that give Title Zones extra functionality/features

Boxboy - Enables an in-game menu - accessible with the permission
titlezones.menu - that lists all named zones, their coordinates, and allows the user to teleport to them.

1 Like

A new version has been released for Title Zones, it is available for download here.


  • Added support for Boxboy. This is optional, and if you choose to use Boxboy Title Zones should detect and use it automatically.