mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Short links using document site
This commit is contained in:
parent
55dda7bc43
commit
02e344724d
13 changed files with 773 additions and 52 deletions
|
|
@ -1,3 +1,6 @@
|
|||
---
|
||||
title: "About & Features"
|
||||
---
|
||||
# Introduction
|
||||
|
||||
- [About](#about)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
---
|
||||
title: "Chat Bots"
|
||||
redirectFrom: ["/g/bots/index.html", "/g/bots.html"]
|
||||
---
|
||||
# Chat Bots
|
||||
|
||||
- [About](#about)
|
||||
|
|
@ -431,7 +435,7 @@
|
|||
|
||||
A list of mobs which are either whitelisted or blacklisted, the mode is set in `List_Mode` setting.
|
||||
|
||||
You can find the full list of mobs [here](https://bit.ly/3Rg68lp).
|
||||
You can find the full list of mobs [here](https://mccteam.github.io/r/entity/#L15).
|
||||
|
||||
- **Format:** `["<entity type>", "<entity type>", ...]`
|
||||
|
||||
|
|
@ -616,7 +620,7 @@
|
|||
|
||||
**If you have a case where you have to leave some fields empty, use `"Null"` to mark them as empty. Example for stone bricks: `Slots = [ "Stone", "Stone", "Null", "Stone", "Stone", "Null", "Null", "Null", "Null", ]`**
|
||||
|
||||
**All item types can be found [here](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Inventory/ItemType.cs).**
|
||||
**All item types can be found [here](https://mccteam.github.io/r/item/#L12).**
|
||||
|
||||
**Make sure to provide materials for your bot by placing them in inventory first.**
|
||||
|
||||
|
|
@ -792,7 +796,7 @@
|
|||
|
||||
This setting specifies the list of blocks which either should not should not be dug out.
|
||||
|
||||
**The list of block types can be found [here](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Mapping/Material.cs).**
|
||||
**The list of block types can be found [here](https://mccteam.github.io/r/block/#L15).**
|
||||
|
||||
- **Format:** `[ "<block type>", "<block type>", ...]`
|
||||
|
||||
|
|
@ -862,7 +866,7 @@
|
|||
|
||||
<div class="custom-container tip"><p class="custom-container-title">Tip</p>
|
||||
|
||||
**All item types can be found [here](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Inventory/ItemType.cs).**
|
||||
**All item types can be found [here](https://mccteam.github.io/r/item/#L12).**
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
---
|
||||
title: "Configuration"
|
||||
redirectFrom: ["/g/conf/index.html", "/g/conf.html"]
|
||||
---
|
||||
# Configuration
|
||||
|
||||
**Minecraft Console Client** can be both configured by the [command line parameters](usage.md#command-line-parameters) and the configuration file.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
---
|
||||
title: "Contributing"
|
||||
---
|
||||
# Contributing
|
||||
|
||||
At this moment this page needs to be created.
|
||||
|
|
@ -32,7 +35,7 @@ MCC now supports the following languages (Alphabetical order) :
|
|||
* Translation `zh-Hans.ini` applies to `zh-Hans`, `zh`, `zh-CN`, `zh-SG`.
|
||||
|
||||
3. Which game languages are recommended to use this translation?
|
||||
* Check out the table in [this link](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/2239), where the `Locale Code` column indicates the language code in minecraft.
|
||||
* Check out the table in [this link](https://mccteam.github.io/r/l-code/), where the `Locale Code` column indicates the language code in minecraft.
|
||||
* You will need to indicate which locale codes this translation applies to.
|
||||
* For example:
|
||||
* Translation `fr.ini` applies to `fr_ca`, `fr_fr`.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
---
|
||||
title: "Creating Chat Bots"
|
||||
---
|
||||
# Creating Chat Bots
|
||||
|
||||
- [Notes](#notes)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
---
|
||||
title: "Installation"
|
||||
---
|
||||
# Installation
|
||||
|
||||
- [YouTube Tutorials](#youtube-tutorials)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
---
|
||||
title: "Usage"
|
||||
---
|
||||
# Usage
|
||||
|
||||
How to run the program:
|
||||
|
|
@ -350,7 +353,7 @@ In scripts and remote control, no slash is needed to perform the command, eg. `q
|
|||
|
||||
<div class="custom-container tip"><p class="custom-container-title">Tip</p>
|
||||
|
||||
**All item types can be found [here](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Inventory/ItemType.cs).**
|
||||
**All item types can be found [here](https://mccteam.github.io/r/item/#L12).**
|
||||
|
||||
</div>
|
||||
|
||||
|
|
@ -388,7 +391,7 @@ In scripts and remote control, no slash is needed to perform the command, eg. `q
|
|||
|
||||
<div class="custom-container tip"><p class="custom-container-title">Tip</p>
|
||||
|
||||
**All entity types can be found [here](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Mapping/EntityType.cs).**
|
||||
**All entity types can be found [here](https://mccteam.github.io/r/entity/#L15).**
|
||||
|
||||
</div>
|
||||
|
||||
|
|
@ -954,7 +957,7 @@ In scripts and remote control, no slash is needed to perform the command, eg. `q
|
|||
|
||||
<div class="custom-container tip"><p class="custom-container-title">Tip</p>
|
||||
|
||||
**To find item types, check out [this list](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Inventory/ItemType.cs)**
|
||||
**To find item types, check out [this list](https://mccteam.github.io/r/item/#L12)**
|
||||
|
||||
</div>
|
||||
|
||||
|
|
@ -1028,7 +1031,7 @@ In scripts and remote control, no slash is needed to perform the command, eg. `q
|
|||
|
||||
<div class="custom-container tip"><p class="custom-container-title">Tip</p>
|
||||
|
||||
**To find item types, check out [this list](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Inventory/ItemType.cs)**
|
||||
**To find item types, check out [this list](https://mccteam.github.io/r/item/#L12)**
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue