I am having a problem using a Data Record. I am using the Data Record to store a series of "steps" that I want to perform via script. Below are the definition of my variables:
#VAR steps ""
#ADDKEY steps 1 's;e;k man'
#ADDKEY steps 2 's;s;k woman'
#VAR stepnum 1
#ALIAS step %db( @steps, @stepnum)
The problem is that when the "step" is executed, the input is not seperated. It sends "s;e;k man" to the mud, without seperating the line to:
s
e
k man
Is there anyway to seperate this? Now I tried adding a step with a variable (i.e. #ADDKEY steps 3 'l @target'), and the @target variable is substituted correctly. Can anyone point me in the right direction?
Thanks for your help,
-Reave