RunBatchScript
From The Elder Scrolls Construction Set Wiki
A command for Oblivion Script Extender
Syntax:
(nothing) RunBatchScript filename:string
Example:
RunBatchScript "myScripts\script.txt" ; runs script contained in Oblivion\myScripts\script.txt
Runs a specified text file under the Oblivion directory as a script.
[edit] Notes
- Because the batch script runs on a temporary script object, it behaves as if each script line was called from the console. Therefore, variable declarations are ignored, and reference functions require an explicit calling reference.
- Every line in the batch file will run before control passes back to the calling script.

