|
anylo Beginner
Joined: 21 Feb 2001 Posts: 28 Location: Finland
|
|
|
|
Kjata GURU
Joined: 10 Oct 2000 Posts: 4379 Location: USA
|
Posted: Mon Jan 13, 2003 12:28 pm |
You have more than one way of doing it. Take a look at the zMUD as a COM Server article in the Support Library.
Basicaly, you can either execute the #VAR command:
sess.ProcessCommand("#VAR myvar value")
or get a reference to the variable you want and work with it:
myvar = sess.GetVar("myvar", "")
myvar.Value = value
Note: Please excuse my possibly incorrect syntax - I do not use VBScript.
Kjata |
|
|
|
anylo Beginner
Joined: 21 Feb 2001 Posts: 28 Location: Finland
|
|
|
|
|
|