2014-10-28 18:01:32 +01:00
|
|
|
Areas mod for Minetest 0.4.8+
|
|
|
|
=============================
|
|
|
|
|
|
|
|
|
|
|
|
Configuration
|
|
|
|
-------------
|
2015-03-02 21:20:50 +01:00
|
|
|
|
2014-10-28 18:01:32 +01:00
|
|
|
If you wish to specify configuration options, such as whether players are
|
2015-03-02 21:20:50 +01:00
|
|
|
allowed to protect their own areas with the `protect` command (disabled by
|
|
|
|
default), you should check config.lua and set the appropriate settings in your
|
|
|
|
server's configuration file (probably `minetest.conf`).
|
2014-10-28 18:01:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
Tutorial
|
|
|
|
--------
|
2015-03-02 21:20:50 +01:00
|
|
|
|
2014-10-28 18:01:32 +01:00
|
|
|
To protect an area you must first set the corner positions of the area.
|
2015-03-02 21:20:50 +01:00
|
|
|
In order to set the corner positions you can run:
|
|
|
|
* `/area_pos set` and punch the two corner nodes to set them.
|
|
|
|
* `/area_pos set1/set2` and punch only the first or second corner node to
|
|
|
|
set them one at a time.
|
|
|
|
* `/area_pos1/2` to set one of the positions to your current position.
|
|
|
|
* `/area_pos1/2 X Y Z` to set one of the positions to the specified
|
|
|
|
coordinates.
|
|
|
|
|
|
|
|
Once you have set the border positions you can protect the area by running one
|
|
|
|
of the following commands:
|
|
|
|
* `/set_owner <OwnerName> <AreaName>` -- If you have the `areas` privilege.
|
|
|
|
* `/protect <AreaName>` -- If you have the `areas` privilege or the server
|
|
|
|
administrator has enabled area self-protection.
|
|
|
|
|
|
|
|
The area name is used only for informational purposes (so that you know what
|
|
|
|
an area is for). It is not used for any other purpose.
|
|
|
|
For example: `/set_owner SomePlayer Mese city`
|
2014-10-28 18:01:32 +01:00
|
|
|
|
|
|
|
Now that you own an area you may want to add sub-owners to it. You can do this
|
2015-03-02 21:20:50 +01:00
|
|
|
with the `add_owner` command. Anyone with an area can use the `add_owner`
|
|
|
|
command on their areas. Before using the `add_owner` command you have to
|
|
|
|
select the corners of the sub-area as you did for `set_owner`. If your markers
|
|
|
|
are still around your original area and you want to grant access to your
|
|
|
|
entire area you will not have to re-set them. You can also use `select_area` to
|
|
|
|
place the markers at the corners of an existing area if you've reset your
|
|
|
|
markers and want to grant access to a full area.
|
|
|
|
The `add_owner` command expects three arguments:
|
|
|
|
1. The ID number of the parent area (the area that you want to add a
|
|
|
|
sub-area to).
|
|
|
|
2. The name of the player that will own the sub-area.
|
|
|
|
3. The name of the sub-area. (can contain spaces)
|
|
|
|
|
|
|
|
For example: `/add_owner 123 BobTheBuilder Diamond lighthouse`
|
|
|
|
|
|
|
|
|
|
|
|
Commands
|
|
|
|
--------
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-03-02 21:20:50 +01:00
|
|
|
* `/protect <AreaName>` -- Protects an area for yourself. (if
|
|
|
|
self-protection is enabled)
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-03-02 21:20:50 +01:00
|
|
|
* `/set_owner <OwnerName> <AreaName>` -- Protects an area for a specified
|
|
|
|
player. (requires the `areas` privilege)
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-03-02 21:20:50 +01:00
|
|
|
* `/add_owner <ParentID> <OwnerName> <ChildName>` -- Grants another player
|
|
|
|
control over part (or all) of an area.
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-03-02 21:20:50 +01:00
|
|
|
* `/rename_area <ID> <NewName>` -- Renames an existing area.
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-03-02 21:20:50 +01:00
|
|
|
* `/list_areas` -- Lists all of the areas that you own, or all areas if you
|
|
|
|
have the `areas` privilege.
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-03-02 21:20:50 +01:00
|
|
|
* `/find_areas <Regex>` -- Finds areas using a Lua regular expresion.
|
|
|
|
For example, to find castles:
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-03-02 21:20:50 +01:00
|
|
|
/find_areas [Cc]astle
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-03-02 21:20:50 +01:00
|
|
|
* `/remove_area <ID>` -- Removes an area that you own. Any sub-areas of that
|
|
|
|
area are made sub-areas of the removed area's parent, if it exists.
|
|
|
|
If the removed area has no parent it's sub-areas will have no parent.
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-03-02 21:20:50 +01:00
|
|
|
* `/recursive_remove_areas <ID>` -- Removes an area and all sub-areas of it.
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-03-02 21:20:50 +01:00
|
|
|
* `/change_owner <ID> <NewOwner>` -- Change the owner of an area.
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-03-02 21:20:50 +01:00
|
|
|
* `/area_info` -- Returns information about area configuration and usage.
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-03-02 21:20:50 +01:00
|
|
|
* `/select_area <ID>` -- Sets the area positions to those of an existing
|
|
|
|
area.
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-03-02 21:20:50 +01:00
|
|
|
* `/area_pos {set,set1,set2,get}` -- Sets the area positions by punching
|
|
|
|
nodes or shows the current area positions.
|
|
|
|
|
|
|
|
* `/area_pos1 [X,Y,Z|X Y Z]` -- Sets area position one to your position or
|
|
|
|
the one supplied.
|
|
|
|
|
|
|
|
* `/area_pos2 [X,Y,Z|X Y Z]` -- Sets area position two to your position or
|
|
|
|
the one supplied.
|
2015-03-02 19:19:42 +01:00
|
|
|
|
2014-10-28 18:01:32 +01:00
|
|
|
License
|
|
|
|
-------
|
2015-03-02 21:20:50 +01:00
|
|
|
|
2014-10-28 18:01:32 +01:00
|
|
|
Copyright (C) 2013 ShadowNinja
|
|
|
|
|
2015-03-02 21:20:50 +01:00
|
|
|
Licensed under the GNU LGPL version 2.1 or later.
|
2014-10-28 18:01:32 +01:00
|
|
|
See LICENSE.txt and http://www.gnu.org/licenses/lgpl-2.1.txt
|
|
|
|
|