1- I assume TOAD generates column comments in the original column orders of the table. Can you add an option where comments generation to schema scripts can be ordered by Column name beside by column ID ?
2- My other question is can you remove schema name reference in table's script when an ID column DEFAULT value references to a sequence name and 'Options|Script|Include schema name before objects name' is toggle off? And of course, just when the exported schema name and the referenced schema name (for sequence, function, package function) are have the same value.
For example:
ID NUMBER DEFAULT "MYUSER"."SAMPLE_TABLE_SEQ"."NEXTVAL" NOT NULL,
should be
ID NUMBER DEFAULT "SAMPLE_TABLE_SEQ"."NEXTVAL" NOT NULL,