@@ -116,7 +116,6 @@ Use `/easyclaims playtime` to check your progress!
1161161 . Download the latest JAR from [ Releases] ( ../../releases/latest )
1171172 . Place it in your server's ` mods/ ` folder
1181183 . Restart the server
119- 4 . Config files appear in ` mods/Community_EasyClaims/ `
120119
121120### Setting Up Permissions
122121
@@ -132,64 +131,6 @@ The `easyclaims.admin` permission grants access to `/easyclaims admin` commands
132131
133132---
134133
135- ## Configuration
136-
137- Config files are in ` mods/Community_EasyClaims/ ` .
138-
139- ### config.json - Main Settings
140-
141- ``` json
142- {
143- "startingClaims" : 4 ,
144- "claimsPerHour" : 2 ,
145- "maxClaims" : 50 ,
146- "playtimeSaveInterval" : 60
147- }
148- ```
149-
150- | Setting | Default | Description |
151- | ---------| ---------| -------------|
152- | ` startingClaims ` | 4 | Claims available to new players |
153- | ` claimsPerHour ` | 2 | Extra claims earned per hour played |
154- | ` maxClaims ` | 50 | Maximum claims anyone can have |
155-
156- ** Formula:** ` startingClaims + (hoursPlayed × claimsPerHour) ` , max ` maxClaims `
157-
158- ** Tip:** Use ` /easyclaims admin set ` to change settings in-game without editing files!
159-
160- ### block_groups.json - Block Permissions
161-
162- Controls which blocks need which trust level. Uses pattern matching:
163-
164- ``` json
165- {
166- "usePatterns" : [" door" , " button" , " lever" , " gate" , " trapdoor" ],
167- "containerPatterns" : [" chest" , " barrel" , " storage" , " hopper" ],
168- "workstationPatterns" : [" crafting" , " furnace" , " anvil" , " brewing" ]
169- }
170- ```
171-
172- Add Hytale block IDs as you discover them!
173-
174- ---
175-
176- ## Data Storage
177-
178- All plugin data is stored in ` mods/Community_EasyClaims/ ` :
179-
180- ```
181- mods/Community_EasyClaims/
182- ├── config.json # Main settings
183- ├── block_groups.json # Block permission rules
184- ├── claims/
185- │ ├── index.json # Quick lookup of all claims
186- │ └── <uuid>.json # Each player's claims & trusted players
187- └── playtime/
188- └── <uuid>.json # Each player's playtime
189- ```
190-
191- ---
192-
193134## Troubleshooting
194135
195136### "You don't have permission"
@@ -202,21 +143,6 @@ Try closing and reopening your map, or reconnect to the server.
202143- Check if you have available slots: ` /easyclaims playtime `
203144- Make sure the chunk isn't already claimed by someone else
204145
205- ### Protection not working?
206- Check server console for ` [EasyClaims] ` messages to debug block events.
207-
208- ---
209-
210- ## Building from Source
211-
212- Requires Java 25+ and Maven:
213-
214- ``` bash
215- mvn clean package
216- ```
217-
218- Output: ` target/EasyClaims-*.jar `
219-
220146---
221147
222148## License
0 commit comments