You would need to set the value of the variable on the global object.
You can do this a number of ways.
From your bot's Knowledge page in its Admin Console there is a Worksheet that lets you execute code.
#self.actress = "Haley Berry";
You could also import a JSON file that defines the data,
{ #data : #self, actress : "Haley Berry" }
Or you could make another response or a script that sets this, (example response list)
Pattern("Your favourite actress is *")
Template("Okay, my favourite actress is now {#self.actress = star; star}.")
|