home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- charmove()
- if the timer > 660 then
- nothing()
- else
- go(the frame)
- end if
- end
-
- on charmove
- global work10, work9
- set ymax to [68, 99, 77, 77, 96, 73, 101, 80]
- set ymin to [38, 47, 36, 36, 36, 26, 34, 38]
- repeat with n = 1 to 8
- set a to getAt(work10, n)
- set b to getAt(work9, n)
- set yp to the locV of sprite (n + 10)
- if b = 0 then
- set ym to getAt(ymin, n)
- set ny to yp - a
- if ym > ny then
- set ny to ym
- setAt(work9, n, 1)
- end if
- else
- set ym to getAt(ymax, n)
- set ny to yp + a
- if ym < ny then
- set ny to ym
- setAt(work9, n, 0)
- end if
- end if
- set the locV of sprite (n + 10) to ny
- end repeat
- end
-