home *** CD-ROM | disk | FTP | other *** search
- function tellplayer(num)
- {
- attachMovie("tell_player","tellPlayer",9);
- with(tellPlayer)
- {
- _x = 320;
- _y = 100;
- clip.gotoAndStop(num);
- }
- _root.playerscore.gotoAndPlay(2);
- if(num == 9)
- {
- extralife_snd.start();
- }
- switch(num)
- {
- case 1:
- _root.score += 500;
- _root.sound1.start();
- break;
- case 2:
- _root.score += 750;
- _root.sound2.start();
- break;
- case 3:
- _root.score += 1000;
- _root.sound3.start();
- break;
- case 4:
- _root.score += 2000;
- _root.sound4.start();
- break;
- case 5:
- _root.score += 3000;
- _root.sound5.start();
- break;
- case 6:
- _root.score += 4000;
- _root.sound6.start();
- }
- }
-