... | ... | @@ -110,8 +110,11 @@ Some of these variables are only generated and available under some special circ |
|
|
|
|
|
| Variable Placeholder | Generated by | Function |
|
|
|
|:-------------------------:|---------------------------------|------------------------------------------|
|
|
|
| <{Scope}.var.{VariableName}> | | Returns the value of the variable {VariableName} on the selected [scope](/Skills/Variables#variable-scopes) |
|
|
|
| <skill.var.{VariableName}> | | Returns the value of the variable {VariableName} on the current skill tree |
|
|
|
| <caster.var.{VariableName}> | | Returns the value of the variable {VariableName} on the variable registry of the caster of the mechanic |
|
|
|
| <target.var.{VariableName}> | | Returns the value of the variable {VariableName} on the variable registry of the target of the mechanic |
|
|
|
| <world.var.{VariableName}> | | Returns the value of the variable {VariableName} on the variable registry of the world the mechanic is used in |
|
|
|
| <global.var.{VariableName}> | | Returns the value of the variable {VariableName} on the variable registry of the whole server |
|
|
|
| <skill.var.{VariableName}> | | Returns the value of the variable {VariableName} on the current [skill tree](https://git.lumine.io/mythiccraft/MythicMobs/-/wikis/Skills/SkillTrees) |
|
|
|
| <skill.var.damage-amount> | [~onDamaged] trigger <br> [~onAttack] trigger <br> [~onBowHit] trigger <br> [onDamaged] mechanic <br> [onAttack] mechanic | Returns the amount of damage taken or done |
|
|
|
| <skill.var.damage-type> | [~onDamaged] trigger <br> [~onAttack] trigger <br> [~onBowHit] trigger <br> [onDamaged] mechanic <br> [onAttack] mechanic | Returns the type of damage taken or done, if any |
|
|
|
| <skill.var.damage-cause> | [~onDamaged] trigger <br> [~onAttack] trigger <br> [~onBowHit] trigger <br> [onDamaged] mechanic <br> [onAttack] mechanic | Returns the cause of damage taken/done |
|
... | ... | @@ -130,6 +133,15 @@ Some of these variables are only generated and available under some special circ |
|
|
| <skill.var.hit-block-type> | [raytrace] mechanic | Returns the block that was hit, or AIR if none |
|
|
|
| <skill.var.bow-tension> | [~onShoot] trigger | Returns the force with which the projectile has been shot |
|
|
|
|
|
|
```yaml
|
|
|
Skills:
|
|
|
- setvariable{var=caster.test1;val=1} @self
|
|
|
- setvariable{var=target.test2;val=2} @self
|
|
|
- message{m=<caster.var.test1> <caster.var.test2> <target.var.test1> <target.var.test2>} @self
|
|
|
```
|
|
|
> If you execute this metaskill yourself, this will send you a message saying `1 2 1 2` because the target of every mechanic is the caster, so the affected registry is always the caster's even if a "target" scope is used
|
|
|
|
|
|
|
|
|
## Target Placeholders
|
|
|
These placeholders will return whatever target selector has been used. For instance <target.name> + @NearestPlayer will return the name of the player closest to the casting mob. The following are only some of the placeholders that can have a `target` scope, and in general any placeholder that is also present in the [Caster Placeholder](#caster-placeholders) section will also work.
|
|
|
|
... | ... | |