Kjata GURU
Joined: 10 Oct 2000 Posts: 4379 Location: USA
|
Posted: Sat Mar 27, 2004 3:34 pm |
zMUD automatically defines the sess object so that your script can access the COM model for the current session. If it's not sess, then it should be session.
Anyway, to access a variable or an alias, you can call the methods of this object. Example:
myVar = sess.GetVar("myVar", "")
Then, you can change it's value:
myVar.Value = "testing"
For more information, you can check this document. |
|