Gamer-Freunde Freebuild 1.18

wie erstelle ich eine Region:

Creating and Removing Regions

Define

/rg define [-w <world>] [-g] <id> [<owner1>] [<owner2>] [... <ownerN>]
/rg create (...)
/rg def (...)
/rg d (...)

Creates a new region with a given ID and an optional list of owners. Your current WorldEdit selection is used for the area of the region.

Region IDs are case-insensitive. Only one region can exist with a given name (per-world).

  • -g will create a new “global” region (not the same as the Global Region) that has no physical space, which is useful for creating template regions (see Priority and Inheritance)

Remove

/rg remove [-w <world>] [-f] [-u] <id>
/rg rem (...)
/rg delete (...)
/rg del (...)

Removes a region.

If the specified region has child regions, then either -u or -f must be specified. Both options cannot be specified together.

  • -u changes child regions of the specified region to have no parent

  • -f removes child regions of the specified region

Redefine

/rg redefine [-w <world>] [-g]
/rg update (...)
/rg move (...)

Changes the physical area associated with an existing region and replaces it with your current WorldEdit selection.

  • -g will create a new “global” region (not the same as the Global Region) that has no physical space, which is useful for creating template regions (see Priority and Inheritance)

Claim

/rg claim <id>

Claims a region, which is for self-serve player-created regions. See Claiming for more information.

Editing Memberships

Add Member

/rg addmember [-w <world>] <id> <members...>
/rg addmem (...)
/rg am (...)

Adds any number of members to a region. Using g:<member> will add a permission group instead of a player.

Add Owner

/rg addowner [-w <world>] <id> <owners...>
/rg ao (...)

Adds any number of owners to a region. Using g:<owner> will add a permission group instead of a player.

Remove Member

/rg removemember [-w <world>] [-a] <id> <members...>
/rg remmember (...)
/rg removemem (...)
/rg remmem (...)
/rg rm (...)

Removes any number of members from a region. As in the add command, use g:<member> to specify a permission group.

  • -a will remove all members from the region, ignoring the <members…> argument

Remove Owner

/rg removeowner [-w <world>] [-a] <id> <owners...>
/rg remowner
/rg ro (...)

Removes any number of owners from a region. As in the add command, use g:<owner> to specify a permission group.

  • -a will remove all owners from the region, ignoring the <owners…> argument

Getting Information

Select

/rg select [-w <world>] [<id>]
/rg sel (...)
/rg s (...)

Replaces your current WorldEdit selection with the area of an existing region. If no region is specified, it tries to select the region that you are currently in.

Information

/rg info [-u] [-s] [-w <world>] [<id>]
/rg i (...)

Displays information about a specified region, or if no region is specified, the region that you are currently in. If you are in several regions, then a list will shown instead.

  • -s causes the command to select the region (see /rg select)

  • -u causes UUIDs to be shown rather than player’s last seen names

Flags

/rg flags [-w <world>] [-p <page>] <id>

Displays a paginated, interactive list of flags for the given region.

Explicitly set flags are shown with white values, flags inherited from a parent region are shown in light gray, and unset flags are shown with their default value in dark gray.

Clicking on the values allows you to quickly set and unset flags, and the arrows at the bottom next to the page number can be used to navigate the list.

List

/rg list [-i <id search>] [-p <player>] [-w <world>] [<page>]

Lists the regions that have been created. A number can be provided to show a certain page.

If a player doesn’t have permission to list all regions but has permission to list their own (ones the player is a member or owner of), then the command will automatically only list the player’s own regions.

  • -p <player> can be specified to filter on regions that the given player is a member or owner of

  • -i <id search> can be specified to filter region IDs containing the search text

  • -s can be specified to match only regions which physically intersect your WorldEdit selection

Setting Region Options

Flag

/rg flag <id> <flag> [-w <world>] [-g <group>] [-e] [<value>]
/rg f (...)

Sets a flag on a region (see Region Flags for more information).

To unset a flag, don’t specify a value.

To set a flag to a blank value, use -e. This is useful for setting flags like greeting to a blank message to override the flag set in a different, larger, and lower priority region. If -e is specified in addition to a value, the value is discarded.

  • -g <group> specifies the region group (see Region Flags)

  • -e sets an empty value

Priority

/rg setpriority [-w <world>] <id> <priority>
/rg priority (...)
/rg pri (...)

Sets the priority of a region. See Priority and Inheritance for more information.

The default priority of a region is 0.

Parent

/rg setparent [-w <world>] <id> [<parent>]
/rg parent (...)
/rg par (...)

Sets the parent of a region. See Priority and Inheritance for more information.

To unset a parent priority, specify no parent.

Miscellaneous Commands

Teleport

/rg teleport [-w <world>] [-c] [-s] <id>
/rg tp (...)

Teleports yourself to the location specified by either the spawn or teleport flags.

  • -s selects the spawn flag rather than the teleport flag

  • -c teleports you to the geometric center of the region even if neither flag is set. This requires you to be in spectator mode.

Management Commands

Load

/rg load [-w <world>]
/rg reload (...)

Reloads the region data from file or database. If recent changes were made in-game to the region data, this may cause data loss.

The load operation occurs in the background and will not pause the server. If the command is used before a previous load has completed, the new load will be queued. There is a limit to the maximum number of operations that can be queued.

Save

/rg save [-w <world>]
/rg write (...)

Saves the region data to disk.

Tip

Region data is saved automatically soon after any changes are made, so this command does not need to be called explicitly.

The save operation occurs in the background and will not pause the server. If the command is used before a previous save has completed, the new save will be queued. There is a limit to the maximum number of operations that can be queued.

Migrate Database

/rg migratedb <from> <to>

Migrates from one type of storage driver (see Storage Drivers) to another.

Valid choices for “from” and “to” are:

  • yaml

  • mysql

Migration does not automatically enable the target storage driver – that must be done in the Configuration.

Warning

Be sure to make a backup before running migration.

Warning

This command does not run in the background and will pause the entire server. If your server software has server pause detection, this may kill the server during migration and abort the migration process. If migration is aborted or fails, you may need to empty the target storage before re-running migration.

Migrate UUID

/rg migrateuuid

Converts player names in the region data to Mojang UUIDs.

Names that have no corresponding UUIDs will either be removed or left remaining depending on the Configuration (the setting is keep-names-that-lack-uuids).

Warning

Be sure to make a backup before running migration.

Warning

This command does not run in the background and will pause the entire server. If your server software has server pause detection, this may kill the server during migration and abort the migration process.

Migrate Region Heights

/rg migrateheights [-w <world>]

Extends regions of the current or specified world that were physically defined from min y <= 0 to max y >= 255 (i.e. the world limits pre-MC 1.18) to the new world height limits.

Useful for updating from 1.17 or before to 1.18 or later if you had a lot of regions which were defined at the world limits. Note that if you intentionally had regions beyond the world limits before 1.18, you will need to move them beyond the new world limits manually.

Warning

Be sure to make a backup before running migration.

Warning

This command does not run in the background and will pause the entire server. If your server software has server pause detection, this may kill the server during migration and abort the migration process.

 

######################################

Prior:

Priorities

Every region defaults to a priority of 0, but it can be adjusted to be positive or negative. Higher numbers imply higher priorities. The valid range of priorities is -2147483648 to 2147483647, inclusive, but you will probably use more reasonable numbers like -2, 10, 15, or 100.

  • In terms of membership and who can build: When a certain location has overlapping regions, only the regions of the highest priority are considered.

  • In terms of region flags, the highest priority region with the flag defined is used.

Priorities can be set with /rg setpriority:

/rg setpriority example 5

Inheritance

Following from the pub example above, what if you want to allow both builders and pub members to build in the pub? You could add the builders group to the pub region, or instead, you could have the pub inherit its members from the spawn region.

When a region is given a parent:

  • It inherits the parent’s members and owners

  • It inherits the parent’s flags if if the flag isn’t defined on the child region

This comes in handy for:

  • A main area and small plots inside this main area

  • Creating a template region by which child regions will inherit the flags

Every region can have at most one parent. Set parents with /rg setparent:

/rg setparent region_name parent_name

To remove a parent, don’t specify a parent name:

/rg setparent region_name

WorldGuard will detect circular inheritance and prevent it.

Note

Non-player associables, such as pistons, can also be members of regions. Member inheritance is not limited to players only. This means that pistons in parent regions, for example, can push blocks into their children.

Template Regions

As previously mentioned, because flags are inherited from their parents, a parent region can act as a base template for all of its child regions.

However, you may want the template region to not actually physically exist, since you’re not using it to protect an area. One way to do this is to create a “global region,” which is a region that has no actual physical size. Create global regions with the -g switch on the region creation command:

/rg define -g plot_template

Inheritance versus Priorities

A higher priority parent region will override its children, so inheritance only properly works when the children are of the same or higher priority compared to their parent regions.

Region Groups and Overlapping Regions

As you may be aware, flags can be made to apply to only certain groups:

/rg flag mall pvp -g nonmembers deny

When there is only one region, it’s clear which players are members and which are not. However, it’s less obvious when there are overlapping regions: does a player only need to be a member of one of the regions?

The answer is no. The player must be a member of the region on which the flag is set.

For example, let’s imagine two overlapping regions:

  • Spawn, with flag pvp -g nonmembers deny and no members

  • Market, with member “sk89q”

PvP would be denied for sk89q because sk89q is not a member of spawn.

In the Context of Inheritance

When a region has a parent set, both flags and the list of members are inherited, so a player can be a member of one of the child regions too.

For example, if there are two regions:

  • Market, with flag pvp -g nonmembers deny and no members

  • Shop1, with member “sk89q,” inheriting from the market

Is sk89q a member? Yes, so sk89q is allowed to PvP.

#########################################

Claim:

Claiming

A rudimentary player-oriented claiming system is available for use in WorldGuard. It creates regions like /rg define would, but players must use a special command with separate permissions. WorldEdit selections are still required for selecting the physical area of the region, although only the worldedit.selection permission is necessary for that.

Player can claim selected regions using the /rg claim command:

/rg claim region_name

The player running the command will automatically be added as a region owner. Access to the command is provided by the worldguard.region.claim permission.

Rules

  • Maximum region count: Unless the player has the worldguard.region.unlimited permission, the player cannot exceed the maximum number of regions that is permitted in the Configuration for the player.

  • Maximum region volume: Unless the player has the worldguard.region.unlimited permission, the volume of a claim must not exceed the regions.max-claim-volume configuration.

  • Overwrite prevention: The region to be claimed cannot replace an existing one with the same name.

  • Overlap prevention: The region to be claimed cannot overlap another region that the player is not an owner of.

  • Overlap only owned: If regions.claim-only-inside-existing-regions is enabled, the region must overlap another region that the player is an owner of. Note that the region to be claimed does not need to be fully contained within another region (see Issue #753).

Note

At this time, polygonal regions are not fully supported. See Issue #1537.

 

#######################################

 

wie erstelle ich einen Shop

Befehl
Funktion

/p auto

Erhalte ein zufällig gewähltes freies Grundstück

/p claim

Erhalte das freie Grundstück, auf welchem du dich aktuell befindest

/checkplot

Grundstück eines inaktiven Spielers beantragen

 
Grundstücks-Teleport

Befehl
Funktion

/p h {Zahl} /plot home {Zahl}

Teleportiere dich zu deinem Grundstück

Beispiel: /p h 2 bringt dich auf dein zweites Grundstück.

/p h {Spielername} {Zahl} /p h {Alias}

Teleportiert dich zum Grundstück eines Mitspielers.

/p middle

Teleportiere dich zur Mitte des Grundstück

/p sethome /p <ID> sethome

Versetze den Spawnpunkt des Grundstücks an deine aktuelle Position

 
Grundstück verwalten

Befehl
Funktion

/p i /plot info

Zeigt eine Übersicht mit Informationen und Einstellungen des Grundstücks an

/p /plot /m /menu

Grundstücks-Menü aufrufen

/merge

Grundstücke verbinden

/mergebug

Fehler beim Verbinden an der aktuellen Position an das Team melden

/p clear

Grundstück in den Ursprungszustand versetzen

Achtung! Bei einem Merge werden die Grundstücke getrennt!

/p delete /p reset

Grundstück löschen und freigeben

 
Rechte verwalten

Natürlich könnt ihr auch gemeinschaftlich an Projekten arbeiten. Dazu könnt ihr anderen Spielern Rechte zuweisen oder unerwünschten Besuch fernhalten.

Befehl
Funktion

/p trust <Spielername>

Der Spieler erhält volle Rechte auf deinem Grundstück und allem, was zum Grundstück gehört

/p add <Spielername>

Der Spieler verfügt nur über die Rechte, sofern du auf dem Citybuild online bist

/p remove <Spielername>

Du entziehst dem Spieler alle Rechte von deinem Grundstück

/p deny <Spielername>

Der Spiele kann dein Grundstück nicht mehr betreten

/p undeny <Spielername>

Der Spieler darf dein Grundstück wieder betreten

/p kick <Spielername>

Der Spieler wird von deinem Grundstück geworfen und kann direkt wieder drauf

Solltest du statt einem Spielernamen ein * einfügen, so gilt dieser Befehl für alle Spieler.

 

/p trust Jonnykiller1988 - Jonnykiller19888 darf sich auf deinem Grundstück austoben. Sonst niemand. /p trust * - Jeder Anwesende kann auf deinem Grundstück alles machen.

 

Rechte für alle Spieler zu vergeben ist nicht sonderlich ratsam und nur bedingt zu empfehlen.

 
Weitere Grundstücks-Befehle

Befehl
Funktion

/setowner {Spielername}

Starte eine Überschreibung deines Grundstücks an einen anderen Spieler

/setowner confirm

Bestätige die Überschreibung eines Grundstück

/setowner deny

Lehne die Überschreibung eines Grundstückes ab

/p description {Text}

Füge deinem Grundstücke eine Beschreibung hinzu

/p description

Entferne die Beschreibung des Grundstück

/p alias set {Text}

Gib dem Grundstück einen Namen (Alias) Achtung! Es können keine Namen von Spielern genutzt werden, welche bereits auf dem Server angemeldet sind/waren.

/p chat on /p chat off

Schreibe im Grundstücks-Chat Schreibe im Normalchat

/p flag set {Flag} {true/false/ID}

Grundstücks-Flag setzen

/p setorder {Zahl}

Setzt das Grundstück an die ausgewählte Position deiner Grundstücksliste

/bewertung

Aktiviere die Bewertungsfunktion für dein Grundstück

/bewerten

Menü zur Grundstücks-Bewertung aufrufen

/ptime {Zahl} /ptime {Tageszeit}

Setze die aktuelle Zeit auf deinem Grundstück

/ptime @{Zahl} /ptime @{Tageszeit}

Setze die Zeit auf deinem Grundstück dauerhaft fest

/leuchten

Leuchtfeuer an den Grundstücksecken platzieren (Recht kann im CaseOpening gewonnen werden)

/rand

Ändere den Grundstücksrand

/wand

Ändere die Grundstückswände

/boden

Ändere den Grundstücksboden

/aushöhlen

Öffne das Menü zum Aushöhlen des Grundstück