home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / WakeRace.dxr / Internal_14_Game.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  377 b   |  24 lines

  1. global gPlayer
  2.  
  3. on enterFrame
  4.   gPlayer.update()
  5.   t_Update(gPlayer.pLocation)
  6.   e_Update(gPlayer.pLocation)
  7.   pickup_Update(gPlayer.pLocation)
  8.   p_Update()
  9.   gfx_Update(gPlayer.pLocation)
  10.   updateRanking()
  11.   updateTimer()
  12.   sendSprite(110, #update)
  13.   if gPlayer.pDamage > 60.0 then
  14.     sprite(414).visible = 1
  15.   end if
  16. end
  17.  
  18. on exitFrame me
  19.   go(the frame)
  20. end
  21.  
  22. on mouseUp
  23. end
  24.