changdesc
The changedesc command is used to change the description on the popup for interactable objects.



"then(changename, description)"


Argument Function
description The new description of the object.



And example of the changedesc 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...")
}