Page 1 of 1

Macro Help

Posted: Wed Feb 23, 2011 11:19 pm
by quikdagger
I am sorry if this has been discussed before.

Is there a way to run a macro that will ask which table to run and then run a table selected...ie if I had multiple random encounter tables and just wanted 1 macro to run the one I selected form a drop-down list or something?

If someone could post a basic macro that would do just that, I believe I could see the layout and structure and modify to fit the tables I need (I think).

Thanks in advance.

Re: Macro Help

Posted: Thu Feb 24, 2011 2:21 am
by aliasmask
Sure, just specify all the table names in the list.

Code: Select all

[H: input("tableName|table1,table2,table3|Select Table|LIST|VALUE=STRING")]
[R: table(tableName)]
This is over simplified, but does basically what you said.

Re: Macro Help

Posted: Thu Feb 24, 2011 10:27 am
by quikdagger
aliasmask wrote:Sure, just specify all the table names in the list.

Code: Select all

[H: input("tableName|table1,table2,table3|Select Table|LIST|VALUE=STRING")]
[R: table(tableName)]
This is over simplified, but does basically what you said.

Thanks and that was exactly what I was looking for :)