SET_ENTITY_Y
Sets an entity's y coordinate.
In practice, you will likely want to use geometry vectors and teleport actions instead.
Example JSON
{
"action": "SET_ENTITY_Y",
"entity": "Entity Name",
"u2_value": 2
}
MGS Natlang
Example
script {
set entity "Entity Name" y to 2;
}
Dictionary entry
set entity $entity:string y (to) $u2_value:number (;)