I have a script I created with the wizard and I want to keep it in the wizard format.
Is there a special section or string I can use to keep custom code in the script so it will not rewrite it. Ie:
//DONT DELETE MY STUFF
var f = new File("Trading.txt");
//END
If I stick my new file in the main variables it outputs to the file many times. If I stick it between premain and function main it works fine. Weird?
Is there a special section or string I can use to keep custom code in the script so it will not rewrite it. Ie:
//DONT DELETE MY STUFF
var f = new File("Trading.txt");
//END
If I stick my new file in the main variables it outputs to the file many times. If I stick it between premain and function main it works fine. Weird?
Comment