-
-
Notifications
You must be signed in to change notification settings - Fork 5
Custom Flags
TylerS1066 edited this page Jan 23, 2022
·
10 revisions
Movecraft-WorldGuard adds 5 new flags to WorldGuard:
allow-combat-releaseallow-craft-pilotallow-craft-sinkallow-rotateallow-translate
By default, allow-craft-pilot, allow-rotate, and allow-translate are all set to allow for members (deny for non-members), which mirrors the behavior of the built in build flag of WorldGuard. allow-combat-release is set to allow for all, and allow-craft-sink is set to deny for all.
Per player, the following truth tables apply for the custom flags:
allow-craft-pilot / allow-rotate / allow-translate
|
build |
Result |
|---|---|---|
| DENY | DENY | Denied, normal denial message applies |
| DENY | ALLOW | Denied, custom flag denial message applies (custom flag overrides build flag) |
| ALLOW | DENY | Allowed (custom flag overrides build flag) |
| ALLOW | ALLOW | Allowed |
allow-craft-sink |
pvp |
Result |
|---|---|---|
| DENY | DENY | Sinking cancelled, normal denial message applies |
| DENY | ALLOW | Sinking cancelled, custom flag denial message applies (custom flag overrides build flag) |
| ALLOW | DENY | Craft sinks (custom flag overrides pvp flag) |
| ALLOW | ALLOW | Craft sinks |
allow-combat-release |
pvp |
tnt |
Result |
|---|---|---|---|
| - | DENY | DENY | cancel |
| - | DENY | ALLOW | cancel |
| - | ALLOW | DENY | cancel |
| - | ALLOW | ALLOW | cancel |
| ALLOW | DENY | Normal release, normal message | |
| ALLOW | ALLOW | Normal release, custom flag message applies (custom flag overrides build flag) | |
| DENY | ALLOW | Combat release (custom flag overrides pvp flag) | |
| DENY | DENY | Combat release |