home *** CD-ROM | disk | FTP | other *** search
- /* Example Startup.Player script */
-
- /* This capability isn't really very useful yet, but it will be once I
- get the user-defined menu stuff implemented. The following
- not-very-useful example causes any characters who are loaded via the
- command line arguments to have the select window opened in their lower
- right corner. */
-
- options results
-
- 'lock'
- 'get nchars'
- nc = result
- if nc>0 then do
- do i=1 to nc
- 'select slot' i
- 'window select open 640 400'
- end i
- if nc>1 then 'select slot 1'
- end
- 'unlock'
-