... | @@ -42,19 +42,19 @@ This will add an `attack` state to the specified model, and gives it 3 ticks to |
... | @@ -42,19 +42,19 @@ This will add an `attack` state to the specified model, and gives it 3 ticks to |
|
## MountModel
|
|
## MountModel
|
|
If the model has driver/passenger bones, mount entities to those bones.
|
|
If the model has driver/passenger bones, mount entities to those bones.
|
|
| Attribute | Aliases | Description | Default |
|
|
| Attribute | Aliases | Description | Default |
|
|
|:---:|:---:|---|:---:|
|
|
|:---------:|:----------:|--------------------------------------------------------------------|:--------:|
|
|
| driver | d, drive | Is this mechanic mounting a driver | true |
|
|
| driver | d, drive | Is this mechanic mounting a driver | true |
|
|
| force | f | Should the target be forced to mount on the bone<br>Driver: dismount the original driver and mount the target<br>Passenger: find a seat with the least passengers and mount the target | false |
|
|
| force | f | Should the target be forced to mount on the bone<br>Driver: dismount the original driver and mount the target<br>Passenger: find a seat with the least passengers and mount the target | false |
|
|
| autodismount | ad | If the target is already mounted on another seat, should the target dismount from the old seat and mount on the new seat | false |
|
|
| autodismount | ad | If the target is already mounted on another seat, should the target dismount from the old seat and mount on the new seat | false |
|
|
| damagemount | dmg | Can the mounted entity damage the mount | false |
|
|
| damagemount | dmg | Can the mounted entity damage the mount | false |
|
|
| mode | m | What mount mode should the mounted entity use<br>**Walking**: WASD ground controller<br>**Flying**: WASD-Sneak-Jump aerial controller (jump to ascend, shift to descend, shift while mount on ground to dismount)<br>**Flying_v16**: WASD-Pitch-Jump aerial controller for 1.16 (look up + space to ascend, look down + space to descend)<br>**Force_Walking**: Same as Walking, but mounted entity cannot dismount<br>**Force_Flying**: Same as Flying, but mounted entity cannot dismount | walking |
|
|
| mode | m | What mount mode should the mounted entity use<br>`Walking`: WASD ground controller<br>`Flying`: WASD-Sneak-Jump aerial controller (jump to ascend, shift to descend, shift while mount on ground to dismount)<br>`Flying_v16`: WASD-Pitch-Jump aerial controller for 1.16 (look up + space to ascend, look down + space to descend)<br>`Force_Walking`: Same as Walking, but mounted entity cannot dismount<br>`Force_Flying`: Same as Flying, but mounted entity cannot dismount | walking |
|
|
| modelid | mid, model | Not Driver: The model ID of the passenger bones. | |
|
|
| modelid | mid, model | **Not Driver**: The model ID of the passenger bones. | |
|
|
| pbone | p | Not Driver: A list of seats searched when mounting entities<br>Format: pbone=seat1,seat2,seat3<br>If force is not enabled, this will fill all the seats until no more passengers can be mounted. | |
|
|
| pbone | p | **Not Driver**: A list of seats searched when mounting entities<br>Format: pbone=seat1,seat2,seat3<br>If force is not enabled, this will fill all the seats until no more passengers can be mounted. | |
|
|
>Note: Minecraft 1.16 has a bug where player dismount happens client-sided, which means the server cannot intercept it. Hence, all force mode would not work for 1.16 clients, and must use flying_v16 for flying. For more information, read [MC-202202](https://bugs.mojang.com/browse/MC-202202).
|
|
>Note: Minecraft 1.16 has a bug where player dismount happens client-sided, which means the server cannot intercept it. Hence, all force mode would not work for 1.16 clients, and must use flying_v16 for flying. For more information, read [MC-202202](https://bugs.mojang.com/browse/MC-202202).
|
|
### Example
|
|
### Example
|
|
`- mountmodel{mode=flying} @trigger ~onInteract`
|
|
`- mountmodel{mode=flying} @trigger ~onInteract`
|
|
Mount the player to the mount point when right-clicked, and gives the player flying control. If there is already a driver, it will not do anything.
|
|
Mount the player to the mount point when right-clicked, and gives the player flying control. If there is already a driver, it will not do anything.
|
|
`- mountmodel{driver=false;mode=force;pbone=seat1,seat2,seat3,seat4;dmg=true;mid=mymodel} @PIR{r=5} ~onDamaged`
|
|
`- mountmodel{driver=false;mode=Force_Walking;pbone=seat1,seat2,seat3,seat4;dmg=true;mid=mymodel} @PIR{r=5} ~onDamaged`
|
|
Mount 4 players within a 5 blocks radius to seat1-4 of the model "mymodel" when damaged. Players could not sneak to dismount, but they can hit the mount.
|
|
Mount 4 players within a 5 blocks radius to seat1-4 of the model "mymodel" when damaged. Players could not sneak to dismount, but they can hit the mount.
|
|
|
|
|
|
***
|
|
***
|
... | | ... | |