Why can't I have more than one script at a time?
From OHRRPGCE-Wiki
You can! You are mistaken!
All of your scripts go in the same file (or in multiple files linked together, see this), and all of them get compiled into the same .HS file. A single .HS file can contain more than tens of thousands of scripts!
Here is an example of putting more than one script in the same file:
include, plotscr.hsd include, mygame.hsi plotscript,my first script,begin #stuff end plotscript,my second script,begin #things end plotscript,yet another script,begin #blah blah end
