home *** CD-ROM | disk | FTP | other *** search
- property S, ro, m, used
- global picked
-
- on beginSprite me
- S = me.spriteNum
- m = the memberNum of sprite S
- used = 0
- ro = member("assisticonro.TGA")
- end
-
- on mouseEnter me
- if used or picked then
- nothing()
- else
- rocursor()
- puppetSound(2, 0)
- puppetSound(2, "swoosh")
- set the memberNum of sprite S to ro.memberNum
- end if
- end
-
- on mouseLeave me
- if used or picked then
- nothing()
- else
- regcursor()
- set the memberNum of sprite S to m
- end if
- end
-
- on mouseUp me
- if used or picked then
- nothing()
- else
- regcursor()
- set the memberNum of sprite S to m
- movetooth_assist()
- puppetSound(2, 0)
- puppetSound(2, "swordclank")
- set the locH of sprite (S + 6) to 74
- used = 1
- picked = 1
- end if
- end
-
- on clear me
- used = 0
- end
-