Blame

024197 Ry 2025-05-17 17:52:51 1
# 🏪 How to Create a Player Shop
2
3
You can easily set up a player-run shop using **ChestShop** on the Mine-play server. Follow these steps to get started:
4
5
## 🧱 Step 1: Place a Chest
6
7
Place a **chest** on the ground where you want your shop to be located. This chest will hold the items for sale or purchase.
8
c84da7 Ry 2025-05-17 17:53:20 9
## Step 2: Place a Sign
024197 Ry 2025-05-17 17:52:51 10
11
Place a **sign** **one block away from the chest** (typically **above it** works best).
12
13
## 🖊️ Step 3: Write the Sign Text
14
15
Edit the sign using this format:
16
17
```
18
Line 1: (Leave empty)
19
Line 2: <Amount>
20
Line 3: <Price>
21
Line 4: <Item Name or ID>
22
```
23
24
### 📌 Sign Line Breakdown
25
26
* **Line 1 (Owner Name):**
27
Leave this line empty. The plugin will automatically fill in your username.
28
29
* **Line 2 (Amount):**
30
This is the **number of items** you want to buy or sell in each transaction.
31
32
* **Line 3 (Price):**
33
This line includes the **Buy** and/or **Sell** price using these formats:
34
35
* `B 5` → Players buy the item for \$5.
36
* `S 5` → Players sell the item to you for \$5.
37
* `B 5:5 S` → Players buy for \$5 and sell for \$5.
38
* `S free` → Players can sell the item to you for free.
39
40
* **Line 4 (Item):**
41
Add the **item ID or name**, or simply type `?`:
42
43
* `?` will autofill with the item from the chest.
44
* You can also click the sign with the item in your hand to set it.
45
* To find an item's name, type the command:
46
47
```
48
/iteminfo
49
```
50
51
---
52
53
## ✅ Example Sign
54
55
```
56
[Empty]
57
64
58
B 10:5 S
59
minecraft:diamond
60
```
61
62
* Sells 64 diamonds for \$10
63
* Buys 64 diamonds from players for \$5
64
65
---
66
67
Let me know if you want an illustrated version or additional formatting!