-
Notifications
You must be signed in to change notification settings - Fork 0
Sign Formats
Jack edited this page May 15, 2026
·
1 revision
GPExpansion supports multiple sign formats for flexibility. All sign types use the header on the first line.
| Sign Type | Headers |
|---|---|
| Rental |
[rent], [Rent], [RENT]
|
| Sell |
[sell], [Sell], [SELL]
|
| Mailbox |
[mailbox], [Mailbox], [MAILBOX]
|
| Global |
[global], [Global], [GLOBAL]
|
Basic format for signs placed within the claim:
[rent]
7d
500
With max rental duration:
[rent]
7d 30d
500
With explicit economy type:
[rent]
7d 30d
money
500
Single-line compact format:
[rent]
7d;500
With max time:
[rent]
7d;500;30d
Amount first (swapped):
[rent]
500;7d
For signs placed outside the claim:
[rent]
12345;500;7d
Full format with economy and max:
[rent]
12345;money;500;7d;30d
Traditional multi-line:
[rent]
12345
7d 30d
500
[sell]
10000
With economy type:
[sell]
money
10000
[sell]
12345;10000
With economy type:
[sell]
12345;money;10000
[mailbox]
500
With economy type:
[mailbox]
money
500
[mailbox]
12345;500
With economy type:
[mailbox]
12345;money;500
Simple single-line format:
[global]
No additional lines needed - instantly configures the claim as global with default settings.
| Format | Meaning | Example |
|---|---|---|
30m |
30 minutes | Short rentals |
1h |
1 hour | Hourly rentals |
24h |
24 hours | Daily rentals |
7d |
7 days | Weekly rentals |
2w |
2 weeks | Bi-weekly rentals |
30d |
30 days | Monthly rentals |
Note: Use m for minutes, h for hours, d for days, w for weeks.
| Type | Format | Description |
|---|---|---|
| Money |
money or $
|
Vault economy (default) |
| XP |
xp or experience
|
Experience levels |
| Claim Blocks |
claimblocks or blocks
|
GP claim blocks |
| Items |
items or specific item |
Item-based payment |
Money shortcuts:
-
$100is automatically parsed asmoneytype
[rent]
7d
$500
[rent]
7d 30d
$1000
[rent]
12345;xp;50;1d;7d
[rent]
12345;items;DIAMOND;64
(Note: Use sell signs for claim sales)
[global]
[rent]
7d;100;claimblocks
- Inside claim: No ID needed, automatically detects
- Outside claim: Must include claim ID
- Economy type: Optional, defaults to config setting
- Max time: Optional, rental can be extended up to this limit
- Price: Required, must be positive number
Sign not activating?
- Check header spelling (case-insensitive but must match brackets)
- Verify format matches one of the supported patterns
- For outside-claim signs, ensure ID is valid
- Check player has sign creation permission
Invalid time format?
- Must use
m,h,d, orwsuffix - Numbers must be positive integers
Economy type not recognized?
- Use:
money,xp,claimblocks, oritems - Must match exactly (case-insensitive)
RENTAL (Inside Claim):
[rent]
<time>
<price>
RENTAL (Outside Claim):
[rent]
<id>;<price>;<time>
SELL (Inside Claim):
[sell]
<price>
SELL (Outside Claim):
[sell]
<id>;<price>
MAILBOX (Inside Claim):
[mailbox]
<price>
MAILBOX (Outside Claim):
[mailbox]
<id>;<price>
GLOBAL (Anywhere):
[global]