Guest User

Untitled

a guest
May 29th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. onClipEvent(enterFrame){
  2. Mouse.hide();
  3. this._x=_root._xmouse;
  4. this._y=_root._ymouse;
  5. }
  6.  
  7.  
  8. onClipEvent (enterFrame) {
  9.  
  10. function resetScore()
  11. {
  12. score = 0;
  13. _root.scoreText.text = score;
  14. }
  15.  
  16. function updateScore(points)
  17. {
  18. score += points;
  19. _root.scoreText.text = score;
  20. }
  21.  
  22. function Shoot()
  23. {
  24. _root.attachMovie("Bullet", "Bullet" + _root.getNextHighestDepth(), _root.getNextHighestDepth());
  25. }
  26.  
  27. if (Key.isDown(1)) {
  28. Shoot();
  29. }
  30. resetScore();
  31. }
Advertisement
Add Comment
Please, Sign In to add comment