SET_ENTITY_LOOK_SCRIPT
Sets an entity's on_look
script.
Example JSON
{
"action": "SET_ENTITY_LOOK_SCRIPT",
"entity": "Entity Name",
"script": "scriptName"
}
MGS Natlang
Example
script {
set entity "Entity Name" on_look to scriptName;
}
Dictionary entry
set entity $entity:string on_look (to) $script:string (;)