home *** CD-ROM | disk | FTP | other *** search
/ Buffalo Sabres 2001-2002 Promotional CD / Sabres.iso / pc / game.dxr / 00044_assists.ls < prev    next >
Encoding:
Text File  |  2001-09-05  |  786 b   |  49 lines

  1. property S, ro, m, used
  2. global picked
  3.  
  4. on beginSprite me
  5.   S = me.spriteNum
  6.   m = the memberNum of sprite S
  7.   used = 0
  8.   ro = member("assisticonro.TGA")
  9. end
  10.  
  11. on mouseEnter me
  12.   if used or picked then
  13.     nothing()
  14.   else
  15.     rocursor()
  16.     puppetSound(2, 0)
  17.     puppetSound(2, "swoosh")
  18.     set the memberNum of sprite S to ro.memberNum
  19.   end if
  20. end
  21.  
  22. on mouseLeave me
  23.   if used or picked then
  24.     nothing()
  25.   else
  26.     regcursor()
  27.     set the memberNum of sprite S to m
  28.   end if
  29. end
  30.  
  31. on mouseUp me
  32.   if used or picked then
  33.     nothing()
  34.   else
  35.     regcursor()
  36.     set the memberNum of sprite S to m
  37.     movetooth_assist()
  38.     puppetSound(2, 0)
  39.     puppetSound(2, "swordclank")
  40.     set the locH of sprite (S + 6) to 74
  41.     used = 1
  42.     picked = 1
  43.   end if
  44. end
  45.  
  46. on clear me
  47.   used = 0
  48. end
  49.