changename
The changename command is used to change the name on the popup for interactable objects.



"then(changename, name)"


Argument Function
name The new name of the object.



And example of the changename command used in a script is as follows...




The following script changes the information for an interactable object on spawn.


if(create)
{
then(changename,"Magic Block")
then(changeinter,"Press <!USE> to open this block!")
then(changedesc,"You feel immense power radiating from this block...")
}