I think you fail to understand what my scripts will do for you, and why they are important. From what you said, you, particularly, may benefit from my scripts.
For discussion's sake, presume that I will have two scripts (physically, it's likely to be more than two, given the maximum size limitation for a script).
The purpose of my "Features" script is to tell you what features are implemented in the build that you are currently running on your camera (or PC uBASIC emulator). If you are shuffling builds around, you may want to run this script to verify that the features that you need are implemented in the build that you are currently running.
Say you are running a script that you like, and you aren't getting the result that you expected. Maybe you're running the script on a build/camera that doesn't support one or more of the script's statements or functions. You can run the "Features" script to try to confirm that the things that your script does are supported by the current build/camera combination.
Obviously, if new features are added, I need to revise my script(s) to detect them, and report whether or not they are implemented in the current build.
Please note: The documentation for these builds is very informal. It's not bad, but it is informal. I've been a fulltime professional programmer for 25 years, with lots of experience at the systems, network, and driver level, and also a fair amount of experience working on complex web software that ties to backend databases and mainframes in various US States. I'm not a rookie. I say this so that hopefully the following point will stick: it doesn't matter what the documentation says; the only way to be sure that something works is to try it. Having a script that tests the various features and reports whether they are implemented or not is a very useful check against the documentation, and is also a way to find out where the documentation is incorrect.
Case in point: It is currently documented that the maximum script length in current builds is 8K. However, my script is a bit less than 4K, and it is crashing my S2 IS. I have reordered the subroutines at the end of my script, and regardless of subroutine order, when the subroutine that is last in my script is called, my camera crashes, and my script file is physically overwritten, and I need to restore it. (This could certainly be the result of some entirely different bug, but the point is that, until I (we) know what the problem is, and we know that it's been fixed, this is certainly something to watch out for.)
I started writing these scripts 1), so I could prove to myself that I understood how a statement or function worked, 2), to show that the statement or function did indeed work as documented (and right now, for example, at least in Allbest's build, it seems that the print_screen function does not work as documented, or I simply don't understand the documentation and I'm doing something wrong, which, again, goes back to point number 1), and 3), to show that the statement or function was actually implemented in the current build, and for the particular camera.
I quickly realized that these scripts could be generally useful, to quickly show the user which features were implemented in a build, and which ones were not. Additionally, for those who don't program computers for a living, the scripts may be useful examples of correct program syntax generally, and of calls to the functions that have currently been implemented in the language.
If, after this explanation, you still don't see the value of what I'm doing, perhaps you will when I publish the scripts and you are able to run them yourself.
One last thing: If, instead of putting in a REM statement saying what build # (and camera) your script was written for, you instead listed the features that the script takes advantage of, then someone running my "Features" script(s) can simply compare the features you list with the output of my script, which will tell the user which features are implemented in the build that he/she is running. If my script tells them that all the features in your script are implemented in the current build (and for that camera), then the script should run.
Regards,
Tom