да , все может быть,
Добавлено через 45 секунд

Код AS1/AS2:
//THIS IS MY PROGRAMM (GAME) :-) , dont COPY THIS!!!!!!!!!!!!!!!
//Version 0.0.1
//Jenya Sajnyev
stop();
point = 0;
health = 100;
speed = 18.2223423;
healthkrica = 10;
armor = 0;
gold= 0;
setInterval( function(){health+=1; }, 500 );
_root.onEnterFrame = function() {
HealthBar.text = health;
pointBar.text = point;
armorBar.text = armor;
if (Key.isDown(Key.LEFT)) {
camera.mc1.gotoAndPlay(21);
camera.mc1._x -= speed;
camera._x += speed;
} else {
if (Key.isDown(Key.RIGHT)) {
camera.mc1._x += speed;
camera.mc1.gotoAndPlay(12);
camera._x -= speed;
}
}
if (Key.isDown(Key.SPACE) && Key.isDown(Key.LEFT)) {
camera.mc1.gotoAndPlay(31);
camera.mc1._y -= 60;
camera.mc1._x -= 70;
camera._x += 70;
} else {
if (Key.isDown(Key.SPACE) && Key.isDown(Key.RIGHT)) {
camera.mc1.gotoAndStop(31);
camera.mc1._y -= 60;
camera.mc1._x += 70;
camera._x -= 70;
}
}
if (Key.isDown(Key.SPACE)) {
camera.mc1.gotoAndPlay(1);
camera.mc1._y -= 70;
}
if (camera.mc1.gravitation.hitTest(camera.gravitation)) {
speed = 18.2223423;
} else {
camera.mc1._y += 24;
}
if (health<=0) {
gotoAndStop(4);
speed = 0;
} else {
health = health;
}
if (camera.mc1.hitTest(camera.kol)) {
speed = 8.99;
health -= 5;
} else {
health = health;
}
if (camera.mc1.hitTest(camera.krica)) {
health -= 4;
camera.mc1.gotoAndPlay(33);
speed = 11.84;
healthkrica-=10;
} else {
health = health;
}
if (camera.mc1.hitTest(camera.Tebejopa)) {
gotoAndStop(4);
} else {
health = health;
}
}
Смотрите я везде так страхуюсь, а так у меня было глюка 4