variables and prompts

First: Is there a way to set a variable to another variable. I can't get something like this to work.
set: var2={$var1}
table: main
The 2nd variable is: {$var2}

Second: Why prompts be set to user created variables? That they can be include with use files w/o mixing up the order.

Comments

  • I think the Set: must be in a table:

    table: main
    set: var1=Hello
    set: var2={$var1}
    The 2nd variable is: {$var2}

    Output:

    The 2nd variable is: Hello
  • Yeah I see it, but here is the catch. I'm trying to go around to prompt limitation of have get mixed.
    prompt: title {human|elf|dwarf} human
    set var={$prompt1}
    But what I was thinking won't work. I therefore wish for user defined variables for prompts.

Leave a Comment