Skip to content

Commit ead6a88

Browse files
some0ne3Drozdi1Jakub Łobos
authored
en us translations (#46)
* Add en-US translations * Move images to lang specific dir + add language switcher * New img translation * improvements --------- Co-authored-by: Franciszek <[email protected]> Co-authored-by: Jakub Łobos <[email protected]>
1 parent ce5f306 commit ead6a88

File tree

239 files changed

+3288
-86
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

239 files changed

+3288
-86
lines changed

docs/beta/image.png

-49 KB
Binary file not shown.
File renamed without changes.

docs/en-US/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Official Documentation, Guides, and Resources for Craftserve
2+
3+
Here you will find useful guides and resources for installing and configuring your Minecraft servers.
4+
5+
6+
![Craftserve Documentation](./img/CSRV_Dokumentacja_Banner.png)

docs/en-US/antyxray.md

+301
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,301 @@
1+
## Choosing the Right Engine
2+
To use Anti-Xray without the need to install additional plugins, you need to install the `Paper` engine or its forks (**such as Purpur**) on your server and select your server version. To do this on the [**Craftserve**](https://craftserve.com/) hosting platform, go to the **Settings** tab in the **Main Panel**, then select `Engine`. From the list of engines, choose the one you need and click `Install`.
3+
4+
![1](./img/antyxray/1.png)
5+
![2](./img/antyxray/2.png)
6+
7+
## Mode Description
8+
Anti-Xray can operate in two different modes:
9+
* `engine-mode: 1`: Ores are replaced with stone, but only those that are not adjacent to an air block or liquid (water or lava). When X-ray is enabled, only ores that could not be hidden by surrounding blocks are visible.
10+
11+
* `engine-mode: 2`: Ores are not hidden; instead, stone, andesite, and diorite are replaced with random ore deposits, making it impossible for a player to distinguish real ores from fake ones. Fake ores turn into real blocks when an air or liquid block is placed next to them. If the server experiences lag, random ores may appear while mining, but players will not be able to mine them.
12+
13+
### Recommended Modes for the Overworld
14+
![3](./img/antyxray/3.png)
15+
### Recommended Modes for the Nether
16+
17+
![4](./img/antyxray/4.png)
18+
19+
## Configuration Files for `1.19`
20+
There are four files where Anti-Xray is configured:
21+
* `paper-world-defaults` - Located in the **config** folder in the main server directory. This file contains settings for all worlds, meaning if a block is added here, it will be hidden in the Overworld, Nether, etc. By default, after opening the file, around line 16, you should see the following:
22+
```yml
23+
anticheat:
24+
anti-xray:
25+
enabled: false
26+
engine-mode: 1
27+
hidden-blocks:
28+
- copper_ore
29+
- deepslate_copper_ore
30+
- gold_ore
31+
- deepslate_gold_ore
32+
- iron_ore
33+
- deepslate_iron_ore
34+
- coal_ore
35+
- deepslate_coal_ore
36+
- lapis_ore
37+
- deepslate_lapis_ore
38+
- mossy_cobblestone
39+
- obsidian
40+
- chest
41+
- diamond_ore
42+
- deepslate_diamond_ore
43+
- redstone_ore
44+
- deepslate_redstone_ore
45+
- clay
46+
- emerald_ore
47+
- deepslate_emerald_ore
48+
- ender_chest
49+
```
50+
* `paper-world`
51+
* Located in the **world** folder
52+
* Located in the **world_nether** folder
53+
* Located in the **world_the_end** folder
54+
55+
Each of these files contains settings for separate worlds. One does not affect the operation of another. Compared to the previous file, after opening one of these, you will see only a few lines, e.g., for `paper-world` from **world**:
56+
```yml
57+
# This is a world configuration file for Paper.
58+
# This file may start empty but can be filled with settings to override ones in the config/paper-world-defaults.yml
59+
#
60+
# World: world (minecraft:overworld)
61+
62+
_version: 28
63+
```
64+
To enable Anti-Xray, simply copy and paste the following settings into the appropriate files.
65+
66+
## Recommended Settings for Engine-mode: 1
67+
### For `paper-world-defaults`
68+
```yml
69+
anticheat:
70+
anti-xray:
71+
enabled: true
72+
engine-mode: 1
73+
hidden-blocks:
74+
- chest
75+
- coal_ore
76+
- deepslate_coal_ore
77+
- copper_ore
78+
- deepslate_copper_ore
79+
- raw_copper_block
80+
- diamond_ore
81+
- deepslate_diamond_ore
82+
- emerald_ore
83+
- deepslate_emerald_ore
84+
- gold_ore
85+
- deepslate_gold_ore
86+
- iron_ore
87+
- deepslate_iron_ore
88+
- raw_iron_block
89+
- lapis_ore
90+
- deepslate_lapis_ore
91+
- redstone_ore
92+
- deepslate_redstone_ore
93+
- ancient_debris
94+
- nether_gold_ore
95+
- nether_quartz_ore
96+
lava-obscures: false
97+
max-block-height: 90
98+
update-radius: 2
99+
use-permission: false
100+
```
101+
### For `paper-world`
102+
- From **world**
103+
```yml
104+
anticheat:
105+
anti-xray:
106+
enabled: true
107+
engine-mode: 1
108+
hidden-blocks:
109+
- chest
110+
- coal_ore
111+
- deepslate_coal_ore
112+
- copper_ore
113+
- deepslate_copper_ore
114+
- raw_copper_block
115+
- diamond_ore
116+
- deepslate_diamond_ore
117+
- emerald_ore
118+
- deepslate_emerald_ore
119+
- gold_ore
120+
- deepslate_gold_ore
121+
- iron_ore
122+
- deepslate_iron_ore
123+
- raw_iron_block
124+
- lapis_ore
125+
- deepslate_lapis_ore
126+
- redstone_ore
127+
- deepslate_redstone_ore
128+
lava-obscures: false
129+
max-block-height: 64
130+
update-radius: 2
131+
use-permission: false
132+
```
133+
- From **world_nether**
134+
```yml
135+
anticheat:
136+
anti-xray:
137+
enabled: true
138+
engine-mode: 1
139+
hidden-blocks:
140+
- ancient_debris
141+
- nether_gold_ore
142+
- nether_quartz_ore
143+
max-block-height: 128
144+
```
145+
- From **world_the_end**
146+
```yml
147+
anticheat:
148+
anti-xray:
149+
enabled: false
150+
```
151+
## Recommended Settings for Engine-mode: 2
152+
### For `paper-world-defaults`
153+
```yml
154+
anticheat:
155+
anti-xray:
156+
enabled: true
157+
engine-mode: 2
158+
hidden-blocks:
159+
- air
160+
- copper_ore
161+
- deepslate_copper_ore
162+
- raw_copper_block
163+
- diamond_ore
164+
- deepslate_diamond_ore
165+
- gold_ore
166+
- deepslate_gold_ore
167+
- iron_ore
168+
- deepslate_iron_ore
169+
- raw_iron_block
170+
- lapis_ore
171+
- deepslate_lapis_ore
172+
- redstone_ore
173+
- deepslate_redstone_ore
174+
- ancient_debris
175+
- bone_block
176+
- glowstone
177+
- magma_block
178+
- nether_bricks
179+
- nether_gold_ore
180+
- nether_quartz_ore
181+
- polished_blackstone_bricks
182+
lava-obscures: false
183+
max-block-height: 64
184+
replacement-blocks:
185+
- chest
186+
- amethyst_block
187+
- andesite
188+
- budding_amethyst
189+
- calcite
190+
- coal_ore
191+
- deepslate_coal_ore
192+
- deepslate
193+
- diorite
194+
- dirt
195+
- emerald_ore
196+
- deepslate_emerald_ore
197+
- granite
198+
- gravel
199+
- oak_planks
200+
- smooth_basalt
201+
- stone
202+
- tuff
203+
- netherrack
204+
- soul_sand
205+
- soul_soil
206+
- basalt
207+
- blackstone
208+
update-radius: 2
209+
use-permission: false
210+
```
211+
### For `paper-world`
212+
213+
- From **world**
214+
```yml
215+
anticheat:
216+
anti-xray:
217+
enabled: true
218+
engine-mode: 2
219+
hidden-blocks:
220+
- air
221+
- copper_ore
222+
- deepslate_copper_ore
223+
- raw_copper_block
224+
- diamond_ore
225+
- deepslate_diamond_ore
226+
- gold_ore
227+
- deepslate_gold_ore
228+
- iron_ore
229+
- deepslate_iron_ore
230+
- raw_iron_block
231+
- lapis_ore
232+
- deepslate_lapis_ore
233+
- redstone_ore
234+
- deepslate_redstone_ore
235+
lava-obscures: false
236+
max-block-height: 64
237+
replacement-blocks:
238+
- chest
239+
- amethyst_block
240+
- andesite
241+
- budding_amethyst
242+
- calcite
243+
- coal_ore
244+
- deepslate_coal_ore
245+
- deepslate
246+
- diorite
247+
- dirt
248+
- emerald_ore
249+
- deepslate_emerald_ore
250+
- granite
251+
- gravel
252+
- oak_planks
253+
- smooth_basalt
254+
- stone
255+
- tuff
256+
update-radius: 2
257+
use-permission: false
258+
```
259+
- From **world_nether**
260+
```yml
261+
anticheat:
262+
anti-xray:
263+
enabled: true
264+
engine-mode: 2
265+
hidden-blocks:
266+
- air
267+
- ancient_debris
268+
- bone_block
269+
- glowstone
270+
- magma_block
271+
- nether_bricks
272+
- nether_gold_ore
273+
- nether_quartz_ore
274+
- polished_blackstone_bricks
275+
max-block-height: 128
276+
replacement-blocks:
277+
- basalt
278+
- blackstone
279+
- gravel
280+
- netherrack
281+
- soul_sand
282+
- soul_soil
283+
```
284+
- From **world_the_end**
285+
```yml
286+
anticheat:
287+
anti-xray:
288+
enabled: false
289+
```
290+
291+
## Examples of Configured Files
292+
- `paper-world-defaults` <br>
293+
294+
![p](./img/antyxray/e1.png)
295+
296+
- `paper-world` (Nether example) <br>
297+
298+
![p2](./img/antyxray/e2.png)
299+
300+
## Source
301+
https://docs.papermc.io/paper/anti-xray

docs/en-US/beta/backups.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Backups
2+
3+
Sometimes, server files get corrupted, accidentally deleted, sucked into a black hole by griefers, or even eaten by a dog (along with your homework). That's where **backups** come to the rescue.
4+
5+
We won't make copies of important files on your personal computer for you (but you should!), but we will take care of your Minecraft server backups on Craftserve.
6+
7+
## Where can I find my backups?
8+
9+
In your server panel, on the left-hand menu, you'll find the **"Backups"** tab.
10+
![1](../img/backupy/1.png)
11+
12+
After opening this tab, you'll see a list of your backups.
13+
![2](../img/backupy/2.png)
14+
15+
## How do I create a backup?
16+
Backups are automatically created at regular intervals and in specific situations, such as before formatting the server, restoring another backup, migrating to another machine, and more.
17+
18+
However, you can manually create a backup whenever you like. To do this, go to the **Backups** tab (see the [section above](#where-can-i-find-my-backups)), then click the **Create Backup** button.
19+
20+
## How do I restore my server to a previous state?
21+
22+
1. Go to the **Backups** tab.
23+
2. Determine the date and time of the backup you need. When did the griefing occur on your server? When were the files corrupted? Look through the available backups and select the one that suits you best. If you're unsure, you can try multiple backups—restore one at a time, check if it's the right one, and if not, repeat the process with the next one.
24+
3. Once you've chosen the backup to restore, simply click the **Restore** button on the right side. An automatic backup will be created before restoring, and then the selected backup will be applied.
25+
![3](../img/backupy/3.png)
26+
27+
## How can I download server files to my computer?
28+
29+
1. Go to the **Backups** tab.
30+
2. Choose the backup date and time of the files you want to download. Look through the available backups and select the one that suits you best.
31+
3. Click the **Download** button next to the selected backup.
32+
![4](../img/backupy/4.png)

docs/en-US/beta/engines.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Engines
2+
3+
## How to Change the Server Engine?
4+
5+
1. Go to the **Settings** tab on the right menu in your server panel.
6+
![1](../img/silniki/1.png)
7+
2. Select the **Engine** menu.
8+
![2](../img/silniki/2.png)
9+
3. Choose the engine you need from the available category and list.
10+
![3](../img/silniki/3.png)
11+
4. After selecting the engine, scroll down to the bottom of the page.
12+
5. Confirm the deletion of all files from your server and the creation of a backup. If necessary, you can exclude specific files and folders from formatting to prevent them from being deleted. **We recommend using this option only if you have important data on the server, such as progress stored in the `world` folder.**
13+
![4](../img/silniki/4.png)
14+
6. Click the **Format and Reinstall Server** button.
15+
7. Wait for the process to complete.
16+
8. Done!

docs/en-US/bettermc.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Installing the BetterMC (Fabric) Modpack
2+
3+
### Requirements
4+
5+
* A Minecraft server supporting Fabric modifications (for Craftserve: Amethyst package).
6+
7+
### Installation
8+
9+
1. Select the appropriate Fabric engine for the BetterMC modpack version (in this case: 1.19.2).
10+
- You can set the Fabric engine in the Craftserve panel under **Settings** -> **Engine** -> **Fabric**.
11+
12+
![image](./img/bettermc/select_engine.png)
13+
- Confirm server formatting to avoid issues during installation. If you really need to save any files,
14+
*Note: Formatting the server will result in the loss of all files, including all items saved on the map.*
15+
16+
![image](./img/bettermc/save_engine.png)
17+
2. Download BetterMC from [**THIS PAGE**](https://www.curseforge.com/minecraft/modpacks/better-mc-fabric/files). Make sure to download the server version of the pack, labeled "Server Pack."
18+
19+
![image](./img/bettermc/download_serverpack.png)
20+
3. Upload the downloaded zip file to the server using [FTP](ftp.md).
21+
4. Go to the Craftserve panel and navigate to the **Files** tab.
22+
5. Locate the uploaded zip file and right-click on it. From the list, select **Unzip**.
23+
![image](./img/bettermc/unzip.png)
24+
25+
6. After unzipping, you can delete the zip file.
26+
7. Start the server and wait for it to fully load.
27+
28+
### Notes
29+
- Players can only join the server if they have the same version of the BetterMC modpack installed on their client (not the server version, but the regular "client" version).
30+
- If you encounter issues starting the server, ensure that the Fabric engine version matches the BetterMC modpack version.

0 commit comments

Comments
 (0)