I'm aware of how to set up the model to be controlled externally, and how to deal with the experimenter, including which seed it uses normally in manual runs ("Repeat Streams of Replication"). What Im looking at is a merge of the two if the experimenter wasnt useable.
Since there isnt a scriptable way of accessing the manual run seed number setting in Experimenter (the dropper at least doesnt show any settings when using it) - I wanted to see if there was a way of doing it with "randInit()" and "getStream()" at say, onModelOpen, and then letting the rest of the model do its thing. Eg.
int streamEg = getStream(current); randInit(streamEg, <seedNumVariable>);
getStream(current) from the onMoelOpen errors out.
On a related point - would any call to random stream even work in a model being controlled externally - assuming it was being run via a batch file on an AWS instance where it wouldnt necessarily have a licensed version of the program?