How can one create a large (arbitrary) number of macros easily?
"Easily" as in without creating each macro individually by clicking "Add Macro" button, clicking inside the "Name" input box, typing the title, clicking inside the "Actions" input box, typing the macro actions, and then clicking "Save Changes."
Context: In my current game, character sheets are managed by the individual players in document files (or Google Doc) and not in Roll20. I've opted to create a small program in Python to take care of my character sheet and auto-generate any macros necessary and output them to a text file, so I end up having a large text file filled with macros (composed of one line for "Name" and the rest for "Actions") and I go through the file manually to copy and paste each value into the appropriate field on Roll20. Due to the custom system we're playing in, this process gets very tedious very quickly as there is a large number of macros to copy and paste.
I wish there was an "Add Many Macros" button that was composed of one text box in which I can copy-paste my huge list of macros and have it automatically parsed (and it would be fine if the parser demanded that the copy-paste block be of a certain format, since I could encode that format in my program).
But failing the existence of something that fulfills that wish, what alternatives do I have?
"Easily" as in without creating each macro individually by clicking "Add Macro" button, clicking inside the "Name" input box, typing the title, clicking inside the "Actions" input box, typing the macro actions, and then clicking "Save Changes."
Context: In my current game, character sheets are managed by the individual players in document files (or Google Doc) and not in Roll20. I've opted to create a small program in Python to take care of my character sheet and auto-generate any macros necessary and output them to a text file, so I end up having a large text file filled with macros (composed of one line for "Name" and the rest for "Actions") and I go through the file manually to copy and paste each value into the appropriate field on Roll20. Due to the custom system we're playing in, this process gets very tedious very quickly as there is a large number of macros to copy and paste.
I wish there was an "Add Many Macros" button that was composed of one text box in which I can copy-paste my huge list of macros and have it automatically parsed (and it would be fine if the parser demanded that the copy-paste block be of a certain format, since I could encode that format in my program).
But failing the existence of something that fulfills that wish, what alternatives do I have?