- stop();
- var levens = 5;
- var score = 0;
- Key.addListener(this);
- var toets = "";
- function onKeyDown() {
- toets = Key.getCode();
- }
- function onEnterFrame() {
- if (levens<1) {
- gotoAndStop(15);
- }
- if (score>95) {
- gotoAndStop(20);
- }
- boek1._y += 15;
- if (boek1._y>750) {
- boek1._y = 25;
- boek1._x = Math.round(Math.random()*600+25);
- boek1._visible = true;
- }
- if (worm.hitTest(boek1) && boek1._visible) {
- score += 1;
- boek1._visible = false;
- }
- boek2._y += 15;
- if (boek2._y>750) {
- boek2._y = 25;
- boek2._x = Math.round(Math.random()*600+25);
- boek2._visible = true;
- }
- if (worm.hitTest(boek2) && boek2._visible) {
- score += 3;
- boek2._visible = false;
- }
- boek3._y += 15;
- if (boek3._y>750) {
- boek3._y = 25;
- boek3._x = Math.round(Math.random()*600+25);
- boek3._visible = true;
- }
- if (worm.hitTest(boek3) && boek3._visible) {
- score += 10;
- boek3._visible = false;
- }
- boek4._y += 15;
- if (boek4._y>750) {
- boek4._y = 25;
- boek4._x = Math.round(Math.random()*600+25);
- boek4._visible = true;
- }
- if (worm.hitTest(boek4) && boek4._visible) {
- score += 10;
- boek4._visible = false;
- }
- // Controlls
- if (toets == 39) {
- worm._x += 12;
- worm.gotoAndStop(10);
- }
- if (toets == 37) {
- worm._x -= 12;
- worm.gotoAndStop(5);
- }
- }
- function onKeyUp() {
- toets = "";
- karimo.gotoAndStop(1);
- }
blabla222
By: kenny2 | Date: Mar 28 2007 12:20 | Format: None | Expires: never | Size: 1.35 KB | Hits: 1273
Latest pastes
18 hours ago
21 hours ago
1 days ago
2 days ago
2 days ago