home *** CD-ROM | disk | FTP | other *** search
- |
- | Sample AutoPilot script to demonstrate simple screen graphics (monochrome)
- |___________________________________________________________________________
-
- @box | draws a box at locations set by variables: ypos xpos
- screen=`getl 1102
- screen=screen + xpos + (80 * ypos)
- a=0
- _again
- `storew 65535 screen
- a = a + 1
- screen=screen+80
- IF a<16
- goto again
- ENDIF
- @endsub
-
-
- xpos=10
- ypos=80
- box
-
- xpos=32
- ypos=192
- box
-
- xpos=56
- ypos=356
- box
-
- QUIT
-