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