home *** CD-ROM | disk | FTP | other *** search
/ ATComputers Catalog / AutoCont+ATcomp.bin / Data / Data.dxr / Internal_8_JumpLevel1.ls < prev    next >
Encoding:
Text File  |  2003-07-28  |  272 b   |  21 lines

  1. on exitFrame me
  2.   global gLNum
  3.   Effect(1)
  4.   jump(gLNum[1])
  5. end
  6.  
  7. on enterFrame
  8.   if PlayState() = 3 then
  9.     Process(3)
  10.   end if
  11. end
  12.  
  13. on isOKToAttach me, aSpriteType, aSpriteNum
  14.   case aSpriteType of
  15.     #graphic:
  16.       return 0
  17.     #script:
  18.       return 1
  19.   end case
  20. end
  21.