mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Added documentation examples and covered an edge case
This commit is contained in:
parent
fe5f07306d
commit
c5a0409edc
4 changed files with 39 additions and 2 deletions
|
|
@ -695,10 +695,10 @@ In scripts and remote control, no slash is needed to perform the command, eg. `q
|
|||
- **Examples:**
|
||||
|
||||
```
|
||||
/setrnd <variable> -7to10
|
||||
/setrnd <variable> -7 to 10
|
||||
```
|
||||
|
||||
(Set a `%variable%` to a number from -7 to 9)
|
||||
(Set a `%variable%` to a number from -7 to 10)
|
||||
|
||||
### `sneak`
|
||||
|
||||
|
|
@ -836,16 +836,38 @@ In scripts and remote control, no slash is needed to perform the command, eg. `q
|
|||
|
||||
- **Usage:**
|
||||
|
||||
Fixed time:
|
||||
|
||||
```
|
||||
/wait <time>
|
||||
```
|
||||
|
||||
Random time:
|
||||
|
||||
```
|
||||
/wait <minimum time> to <maximum time>
|
||||
```
|
||||
|
||||
<div class="custom-container tip"><p class="custom-container-title">Tip</p>
|
||||
|
||||
**You can use `-` instead of `to`**
|
||||
|
||||
</div>
|
||||
|
||||
- **Examples:**
|
||||
|
||||
```
|
||||
/wait 20
|
||||
```
|
||||
|
||||
```
|
||||
/wait 20 to 100
|
||||
```
|
||||
|
||||
```
|
||||
/wait 20-35
|
||||
```
|
||||
|
||||
### `move`
|
||||
|
||||
- **Description:**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue