Frame 1
stop();
Instance of Symbol 58 MovieClip in Frame 1
onClipEvent (enterFrame) {
loaded = _root.getBytesLoaded();
total = _root.getBytesTotal();
if (loaded == total) {
_root.play();
}
}
on (release) {
getURL ("http://www.pixelpopulace.com", "_blank");
}
Instance of Symbol 60 MovieClip "uniac" in Frame 1
onClipEvent (load) {
lives = 3;
}
Frame 2
stop();
Instance of Symbol 73 MovieClip in Frame 2
on (release) {
getURL ("http://www.pixelpopulace.com", "_blank");
}
Frame 3
_root.uniac.lives = 3;
stop();
bananacount = 0;
crap = 0;
Instance of Symbol 60 MovieClip "uniac" in Frame 3
onClipEvent (load) {
lives = 3;
}
Instance of Symbol 58 MovieClip in Frame 3
on (release) {
getURL ("http://www.pixelpopulace.com", "_blank");
}
Frame 4
stop();
_root.uniac.lives = 3;
_root.rolf.health = 100;
missed = 14 - _root.bananacount;
Frame 7
_root.dostuff = true;
_quality = "MEDIUM";
stop();
lastlevel = 1;
lastlev = 1;
Instance of Symbol 76 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this.play();
} else {
this.stop();
}
}
Instance of Symbol 125 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this.play();
} else {
this.stop();
}
}
Instance of Symbol 127 MovieClip "rolf" in Frame 7
onClipEvent (load) {
xSpeed = 0;
ySpeed = 0;
acceleration = 0.7;
gravity = 0.9;
friction = 0.94;
speedLimit = 10;
jumping = false;
onground = false;
falling = true;
jump = 20;
health = 100;
dying = false;
}
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this._visible = false;
if ((Key.isDown(39) && (!Key.isDown(17))) && (xSpeed < speedLimit)) {
xSpeed = xSpeed + acceleration;
}
if ((Key.isDown(37) && (!Key.isDown(17))) && (xSpeed > (-speedLimit))) {
xSpeed = xSpeed - acceleration;
}
if (Key.isDown(40) && (ySpeed < speedLimit)) {
ySpeed = ySpeed + acceleration;
}
if ((Key.isDown(32) && (!jumping)) && (onground == true)) {
jumping = true;
}
if (jumping) {
this._y = this._y - jump;
jump = jump - 1;
if (jump < 0) {
falling = true;
}
if (jump < -15) {
jump = 20;
}
} else {
falling = true;
}
if (falling == true) {
ySpeed = ySpeed + gravity;
onground = false;
}
xSpeed = xSpeed * friction;
ySpeed = ySpeed * friction;
this._x = this._x + xSpeed;
this._y = this._y + ySpeed;
top = this._y - (this._height / 2);
bottom = this._y + (this._height / 2);
right = this._x + (this._width / 2);
left = this._x - (this._width / 2);
if (((((_root.map.hitTest(this._x, top, true) || (_root.map.hitTest(this._x, bottom, true))) || (_root.map.hitTest(left + 1, bottom, true))) || (_root.map.hitTest(right - 1, bottom, true))) || (_root.map.hitTest(left + 1, top, true))) || (_root.map.hitTest(right - 1, top, true))) {
ySpeed = 0;
this._y = oldYPosition;
jumping = false;
jump = 20;
}
if ((_root.map.hitTest(this._x, bottom, true) || (_root.map.hitTest(left, bottom, true))) || (_root.map.hitTest(right, bottom, true))) {
onground = true;
}
if (((((_root.map.hitTest(left, this._y, true) || (_root.map.hitTest(right, this._y, true))) || (_root.map.hitTest(left, top, true))) || (_root.map.hitTest(right, top, true))) || (_root.map.hitTest(left, bottom - 3, true))) || (_root.map.hitTest(right, bottom - 3, true))) {
xSpeed = 0;
this._x = oldXPosition;
_root.map._x = _root.map.oldXPosition;
_root.map.xSpeed = 0;
}
if ((_root.map.hitTest(left, this._y, true) || (_root.map.hitTest(left, top, true))) || (_root.map.hitTest(left, bottom - 3, true))) {
_root.map._x = _root.map.oldXPosition;
_root.map._x = _root.map._x - 1;
}
if ((_root.map.hitTest(right, this._y, true) || (_root.map.hitTest(right, top, true))) || (_root.map.hitTest(right, bottom - 3, true))) {
_root.map._x = _root.map.oldXPosition;
_root.map._x = _root.map._x + 1;
}
oldYPosition = this._y;
oldXPosition = this._x;
if ((xSpeed < 0.1) && (xSpeed > -0.1)) {
xSpeed = 0;
}
if ((ySpeed < 0.1) && (ySpeed > -0.1)) {
ySpeed = 0;
}
if (this._x < 200) {
this._x = 200;
}
if (this._x > 440) {
this._x = 440;
}
if ((this._y > 480) && (poop == 1)) {
this._y = 480;
_root.rolfgraphic.gotoAndStop(9);
health = 0;
poop = 2;
dying = true;
} else {
poop = 1;
}
}
}
Instance of Symbol 192 MovieClip "rolfgraphic" in Frame 7
onClipEvent (load) {
lastkey = 1;
}
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this._x = _root.rolf._x;
this._y = _root.rolf._y;
if (((Key.isDown(39) && (!Key.isDown(90))) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(1);
lastkey = 1;
}
if (((Key.isDown(37) && (!Key.isDown(90))) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(2);
lastkey = 2;
}
if (((Key.isDown(90) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) && (lastkey == 1)) {
this.gotoAndStop(10);
_root.rolf.attacking = true;
}
if (((Key.isDown(90) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) && (lastkey == 2)) {
this.gotoAndStop(11);
_root.rolf.attacking = true;
}
if ((((((_root.rolf.attacking == false) && (!Key.isDown(39))) && (!Key.isDown(37))) && (lastkey == 1)) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(3);
}
if ((((((_root.rolf.attacking == false) && (!Key.isDown(39))) && (!Key.isDown(37))) && (lastkey == 2)) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(4);
}
if (((_root.rolf.jumping == true) && (lastkey == 1)) && (_root.rolf.dying == false)) {
this.gotoAndStop(5);
}
if (((_root.rolf.jumping == true) && (lastkey == 2)) && (_root.rolf.dying == false)) {
this.gotoAndStop(6);
}
}
}
Instance of Symbol 194 MovieClip in Frame 7
onClipEvent (enterFrame) {
if ((Key.isDown(16) && (count == 1)) && (_root.dostuff == true)) {
_root.dostuff = false;
count = 2;
}
if ((Key.isDown(16) && (count == 1)) && (_root.dostuff == false)) {
_root.dostuff = true;
count = 2;
}
if (!Key.isDown(16)) {
count = 1;
}
}
Instance of Symbol 199 MovieClip "map" in Frame 7
onClipEvent (enterFrame) {
this._visible = false;
if (_root.dostuff == true) {
this.stop();
if (_root.rolf._x >= 440) {
this._x = this._x - _root.rolf.xSpeed;
}
if (_root.rolf._x <= 200) {
this._x = this._x - _root.rolf.xSpeed;
}
}
oldYPosition = this._y;
oldXPosition = this._x;
}
Instance of Symbol 282 MovieClip "stuff" in Frame 7
onClipEvent (enterFrame) {
this._x = _root.map._x;
}
Instance of Symbol 291 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (_root.uniac.lives == 3) {
this.no1._visible = true;
this.no2._visible = true;
this.no3._visible = true;
}
if (_root.uniac.lives == 2) {
this.no1._visible = true;
this.no2._visible = true;
this.no3._visible = false;
}
if (_root.uniac.lives == 1) {
this.no1._visible = true;
this.no2._visible = false;
this.no3._visible = false;
}
if (_root.uniac.lives == 0) {
this.no1._visible = false;
this.no2._visible = false;
this.no3._visible = false;
}
}
Frame 8
stop();
missed = 14 - _root.bananacount;
Frame 9
_root.dostuff = true;
_quality = "MEDIUM";
stop();
_root.stuff.gotoAndStop(2);
_root.map.gotoAndStop(2);
lastlevel = 2;
bananacount = 0;
lastlev = 2;
Instance of Symbol 76 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this.play();
} else {
this.stop();
}
}
Instance of Symbol 125 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this.play();
} else {
this.stop();
}
}
Instance of Symbol 127 MovieClip "rolf" in Frame 9
onClipEvent (load) {
xSpeed = 0;
ySpeed = 0;
acceleration = 0.7;
gravity = 0.9;
friction = 0.94;
speedLimit = 10;
jumping = false;
onground = false;
falling = true;
jump = 20;
health = 80;
dying = false;
}
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this._visible = false;
if ((Key.isDown(39) && (!Key.isDown(17))) && (xSpeed < speedLimit)) {
xSpeed = xSpeed + acceleration;
}
if ((Key.isDown(37) && (!Key.isDown(17))) && (xSpeed > (-speedLimit))) {
xSpeed = xSpeed - acceleration;
}
if (Key.isDown(40) && (ySpeed < speedLimit)) {
ySpeed = ySpeed + acceleration;
}
if ((Key.isDown(32) && (!jumping)) && (onground == true)) {
jumping = true;
}
if (jumping) {
this._y = this._y - jump;
jump = jump - 1;
if (jump < 0) {
falling = true;
}
if (jump < -15) {
jump = 20;
}
} else {
falling = true;
}
if (falling == true) {
ySpeed = ySpeed + gravity;
onground = false;
}
xSpeed = xSpeed * friction;
ySpeed = ySpeed * friction;
this._x = this._x + xSpeed;
this._y = this._y + ySpeed;
top = this._y - (this._height / 2);
bottom = this._y + (this._height / 2);
right = this._x + (this._width / 2);
left = this._x - (this._width / 2);
if (((((_root.map.hitTest(this._x, top, true) || (_root.map.hitTest(this._x, bottom, true))) || (_root.map.hitTest(left + 1, bottom, true))) || (_root.map.hitTest(right - 1, bottom, true))) || (_root.map.hitTest(left + 1, top, true))) || (_root.map.hitTest(right - 1, top, true))) {
ySpeed = 0;
this._y = oldYPosition;
jumping = false;
jump = 20;
}
if ((_root.map.hitTest(this._x, bottom, true) || (_root.map.hitTest(left, bottom, true))) || (_root.map.hitTest(right, bottom, true))) {
onground = true;
}
if (((((_root.map.hitTest(left, this._y, true) || (_root.map.hitTest(right, this._y, true))) || (_root.map.hitTest(left, top, true))) || (_root.map.hitTest(right, top, true))) || (_root.map.hitTest(left, bottom - 3, true))) || (_root.map.hitTest(right, bottom - 3, true))) {
xSpeed = 0;
this._x = oldXPosition;
_root.map._x = _root.map.oldXPosition;
_root.map.xSpeed = 0;
}
if ((_root.map.hitTest(left, this._y, true) || (_root.map.hitTest(left, top, true))) || (_root.map.hitTest(left, bottom - 3, true))) {
_root.map._x = _root.map.oldXPosition;
_root.map._x = _root.map._x - 1;
}
if ((_root.map.hitTest(right, this._y, true) || (_root.map.hitTest(right, top, true))) || (_root.map.hitTest(right, bottom - 3, true))) {
_root.map._x = _root.map.oldXPosition;
_root.map._x = _root.map._x + 1;
}
oldYPosition = this._y;
oldXPosition = this._x;
if ((xSpeed < 0.1) && (xSpeed > -0.1)) {
xSpeed = 0;
}
if ((ySpeed < 0.1) && (ySpeed > -0.1)) {
ySpeed = 0;
}
if (this._x < 200) {
this._x = 200;
}
if (this._x > 440) {
this._x = 440;
}
if ((this._y > 480) && (poop == 1)) {
this._y = 480;
_root.rolfgraphic.gotoAndStop(9);
health = 0;
poop = 2;
dying = true;
} else {
poop = 1;
}
}
}
Instance of Symbol 192 MovieClip "rolfgraphic" in Frame 9
onClipEvent (load) {
lastkey = 1;
}
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this._x = _root.rolf._x;
this._y = _root.rolf._y;
if (((Key.isDown(39) && (!Key.isDown(90))) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(1);
lastkey = 1;
}
if (((Key.isDown(37) && (!Key.isDown(90))) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(2);
lastkey = 2;
}
if (((Key.isDown(90) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) && (lastkey == 1)) {
this.gotoAndStop(10);
_root.rolf.attacking = true;
}
if (((Key.isDown(90) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) && (lastkey == 2)) {
this.gotoAndStop(11);
_root.rolf.attacking = true;
}
if ((((((_root.rolf.attacking == false) && (!Key.isDown(39))) && (!Key.isDown(37))) && (lastkey == 1)) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(3);
}
if ((((((_root.rolf.attacking == false) && (!Key.isDown(39))) && (!Key.isDown(37))) && (lastkey == 2)) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(4);
}
if (((_root.rolf.jumping == true) && (lastkey == 1)) && (_root.rolf.dying == false)) {
this.gotoAndStop(5);
}
if (((_root.rolf.jumping == true) && (lastkey == 2)) && (_root.rolf.dying == false)) {
this.gotoAndStop(6);
}
}
}
Instance of Symbol 194 MovieClip in Frame 9
onClipEvent (enterFrame) {
if ((Key.isDown(16) && (count == 1)) && (_root.dostuff == true)) {
_root.dostuff = false;
count = 2;
}
if ((Key.isDown(16) && (count == 1)) && (_root.dostuff == false)) {
_root.dostuff = true;
count = 2;
}
if (!Key.isDown(16)) {
count = 1;
}
}
Instance of Symbol 199 MovieClip "map" in Frame 9
onClipEvent (enterFrame) {
this._visible = false;
if (_root.dostuff == true) {
this.stop();
if (_root.rolf._x >= 440) {
this._x = this._x - _root.rolf.xSpeed;
}
if (_root.rolf._x <= 200) {
this._x = this._x - _root.rolf.xSpeed;
}
}
oldYPosition = this._y;
oldXPosition = this._x;
}
Instance of Symbol 282 MovieClip "stuff" in Frame 9
onClipEvent (enterFrame) {
this._x = _root.map._x;
}
Instance of Symbol 291 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (_root.uniac.lives == 3) {
this.no1._visible = true;
this.no2._visible = true;
this.no3._visible = true;
}
if (_root.uniac.lives == 2) {
this.no1._visible = true;
this.no2._visible = true;
this.no3._visible = false;
}
if (_root.uniac.lives == 1) {
this.no1._visible = true;
this.no2._visible = false;
this.no3._visible = false;
}
if (_root.uniac.lives == 0) {
this.no1._visible = false;
this.no2._visible = false;
this.no3._visible = false;
}
}
Frame 10
stop();
missed = 13 - _root.bananacount;
Frame 11
_root.dostuff = true;
_quality = "MEDIUM";
stop();
_root.stuff.gotoAndStop(3);
_root.map.gotoAndStop(3);
lastlevel = 3;
bananacount = 0;
lastlev = 3;
Instance of Symbol 76 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this.play();
} else {
this.stop();
}
}
Instance of Symbol 125 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this.play();
} else {
this.stop();
}
}
Instance of Symbol 127 MovieClip "rolf" in Frame 11
onClipEvent (load) {
xSpeed = 0;
ySpeed = 0;
acceleration = 0.7;
gravity = 0.9;
friction = 0.94;
speedLimit = 10;
jumping = false;
onground = false;
falling = true;
jump = 20;
health = 80;
dying = false;
}
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this._visible = false;
if ((Key.isDown(39) && (!Key.isDown(17))) && (xSpeed < speedLimit)) {
xSpeed = xSpeed + acceleration;
}
if ((Key.isDown(37) && (!Key.isDown(17))) && (xSpeed > (-speedLimit))) {
xSpeed = xSpeed - acceleration;
}
if (Key.isDown(40) && (ySpeed < speedLimit)) {
ySpeed = ySpeed + acceleration;
}
if ((Key.isDown(32) && (!jumping)) && (onground == true)) {
jumping = true;
}
if (jumping) {
this._y = this._y - jump;
jump = jump - 1;
if (jump < 0) {
falling = true;
}
if (jump < -15) {
jump = 20;
}
} else {
falling = true;
}
if (falling == true) {
ySpeed = ySpeed + gravity;
onground = false;
}
xSpeed = xSpeed * friction;
ySpeed = ySpeed * friction;
this._x = this._x + xSpeed;
this._y = this._y + ySpeed;
top = this._y - (this._height / 2);
bottom = this._y + (this._height / 2);
right = this._x + (this._width / 2);
left = this._x - (this._width / 2);
if (((((_root.map.hitTest(this._x, top, true) || (_root.map.hitTest(this._x, bottom, true))) || (_root.map.hitTest(left + 1, bottom, true))) || (_root.map.hitTest(right - 1, bottom, true))) || (_root.map.hitTest(left + 1, top, true))) || (_root.map.hitTest(right - 1, top, true))) {
ySpeed = 0;
this._y = oldYPosition;
jumping = false;
jump = 20;
}
if ((_root.map.hitTest(this._x, bottom, true) || (_root.map.hitTest(left, bottom, true))) || (_root.map.hitTest(right, bottom, true))) {
onground = true;
}
if (((((_root.map.hitTest(left, this._y, true) || (_root.map.hitTest(right, this._y, true))) || (_root.map.hitTest(left, top, true))) || (_root.map.hitTest(right, top, true))) || (_root.map.hitTest(left, bottom - 3, true))) || (_root.map.hitTest(right, bottom - 3, true))) {
xSpeed = 0;
this._x = oldXPosition;
_root.map._x = _root.map.oldXPosition;
_root.map.xSpeed = 0;
}
if ((_root.map.hitTest(left, this._y, true) || (_root.map.hitTest(left, top, true))) || (_root.map.hitTest(left, bottom - 3, true))) {
_root.map._x = _root.map.oldXPosition;
_root.map._x = _root.map._x - 1;
}
if ((_root.map.hitTest(right, this._y, true) || (_root.map.hitTest(right, top, true))) || (_root.map.hitTest(right, bottom - 3, true))) {
_root.map._x = _root.map.oldXPosition;
_root.map._x = _root.map._x + 1;
}
oldYPosition = this._y;
oldXPosition = this._x;
if ((xSpeed < 0.1) && (xSpeed > -0.1)) {
xSpeed = 0;
}
if ((ySpeed < 0.1) && (ySpeed > -0.1)) {
ySpeed = 0;
}
if (this._x < 200) {
this._x = 200;
}
if (this._x > 440) {
this._x = 440;
}
if ((this._y > 480) && (poop == 1)) {
this._y = 480;
_root.rolfgraphic.gotoAndStop(9);
health = 0;
poop = 2;
dying = true;
} else {
poop = 1;
}
}
}
Instance of Symbol 192 MovieClip "rolfgraphic" in Frame 11
onClipEvent (load) {
lastkey = 1;
}
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this._x = _root.rolf._x;
this._y = _root.rolf._y;
if (((Key.isDown(39) && (!Key.isDown(90))) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(1);
lastkey = 1;
}
if (((Key.isDown(37) && (!Key.isDown(90))) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(2);
lastkey = 2;
}
if (((Key.isDown(90) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) && (lastkey == 1)) {
this.gotoAndStop(10);
_root.rolf.attacking = true;
}
if (((Key.isDown(90) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) && (lastkey == 2)) {
this.gotoAndStop(11);
_root.rolf.attacking = true;
}
if ((((((_root.rolf.attacking == false) && (!Key.isDown(39))) && (!Key.isDown(37))) && (lastkey == 1)) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(3);
}
if ((((((_root.rolf.attacking == false) && (!Key.isDown(39))) && (!Key.isDown(37))) && (lastkey == 2)) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(4);
}
if (((_root.rolf.jumping == true) && (lastkey == 1)) && (_root.rolf.dying == false)) {
this.gotoAndStop(5);
}
if (((_root.rolf.jumping == true) && (lastkey == 2)) && (_root.rolf.dying == false)) {
this.gotoAndStop(6);
}
}
}
Instance of Symbol 194 MovieClip in Frame 11
onClipEvent (enterFrame) {
if ((Key.isDown(16) && (count == 1)) && (_root.dostuff == true)) {
_root.dostuff = false;
count = 2;
}
if ((Key.isDown(16) && (count == 1)) && (_root.dostuff == false)) {
_root.dostuff = true;
count = 2;
}
if (!Key.isDown(16)) {
count = 1;
}
}
Instance of Symbol 199 MovieClip "map" in Frame 11
onClipEvent (enterFrame) {
this._visible = false;
if (_root.dostuff == true) {
this.stop();
if (_root.rolf._x >= 440) {
this._x = this._x - _root.rolf.xSpeed;
}
if (_root.rolf._x <= 200) {
this._x = this._x - _root.rolf.xSpeed;
}
}
oldYPosition = this._y;
oldXPosition = this._x;
}
Instance of Symbol 282 MovieClip "stuff" in Frame 11
onClipEvent (enterFrame) {
this._x = _root.map._x;
}
Instance of Symbol 291 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (_root.uniac.lives == 3) {
this.no1._visible = true;
this.no2._visible = true;
this.no3._visible = true;
}
if (_root.uniac.lives == 2) {
this.no1._visible = true;
this.no2._visible = true;
this.no3._visible = false;
}
if (_root.uniac.lives == 1) {
this.no1._visible = true;
this.no2._visible = false;
this.no3._visible = false;
}
if (_root.uniac.lives == 0) {
this.no1._visible = false;
this.no2._visible = false;
this.no3._visible = false;
}
}
Frame 12
stop();
missed = 9 - _root.bananacount;
Frame 13
_root.dostuff = true;
_quality = "MEDIUM";
stop();
_root.stuff.gotoAndStop(4);
_root.map.gotoAndStop(4);
lastlevel = 4;
lastlev = 4;
Instance of Symbol 76 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this.play();
} else {
this.stop();
}
}
Instance of Symbol 125 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this.play();
} else {
this.stop();
}
}
Instance of Symbol 127 MovieClip "rolf" in Frame 13
onClipEvent (load) {
xSpeed = 0;
ySpeed = 0;
acceleration = 0.7;
gravity = 0.9;
friction = 0.94;
speedLimit = 10;
jumping = false;
onground = false;
falling = true;
jump = 20;
health = 80;
dying = false;
}
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this._visible = false;
if ((Key.isDown(39) && (!Key.isDown(17))) && (xSpeed < speedLimit)) {
xSpeed = xSpeed + acceleration;
}
if ((Key.isDown(37) && (!Key.isDown(17))) && (xSpeed > (-speedLimit))) {
xSpeed = xSpeed - acceleration;
}
if (Key.isDown(40) && (ySpeed < speedLimit)) {
ySpeed = ySpeed + acceleration;
}
if ((Key.isDown(32) && (!jumping)) && (onground == true)) {
jumping = true;
}
if (jumping) {
this._y = this._y - jump;
jump = jump - 1;
if (jump < 0) {
falling = true;
}
if (jump < -15) {
jump = 20;
}
} else {
falling = true;
}
if (falling == true) {
ySpeed = ySpeed + gravity;
onground = false;
}
xSpeed = xSpeed * friction;
ySpeed = ySpeed * friction;
this._x = this._x + xSpeed;
this._y = this._y + ySpeed;
top = this._y - (this._height / 2);
bottom = this._y + (this._height / 2);
right = this._x + (this._width / 2);
left = this._x - (this._width / 2);
if (((((_root.map.hitTest(this._x, top, true) || (_root.map.hitTest(this._x, bottom, true))) || (_root.map.hitTest(left + 1, bottom, true))) || (_root.map.hitTest(right - 1, bottom, true))) || (_root.map.hitTest(left + 1, top, true))) || (_root.map.hitTest(right - 1, top, true))) {
ySpeed = 0;
this._y = oldYPosition;
jumping = false;
jump = 20;
}
if ((_root.map.hitTest(this._x, bottom, true) || (_root.map.hitTest(left, bottom, true))) || (_root.map.hitTest(right, bottom, true))) {
onground = true;
}
if (((((_root.map.hitTest(left, this._y, true) || (_root.map.hitTest(right, this._y, true))) || (_root.map.hitTest(left, top, true))) || (_root.map.hitTest(right, top, true))) || (_root.map.hitTest(left, bottom - 3, true))) || (_root.map.hitTest(right, bottom - 3, true))) {
xSpeed = 0;
this._x = oldXPosition;
_root.map._x = _root.map.oldXPosition;
_root.map.xSpeed = 0;
}
if ((_root.map.hitTest(left, this._y, true) || (_root.map.hitTest(left, top, true))) || (_root.map.hitTest(left, bottom - 3, true))) {
_root.map._x = _root.map.oldXPosition;
_root.map._x = _root.map._x - 1;
}
if ((_root.map.hitTest(right, this._y, true) || (_root.map.hitTest(right, top, true))) || (_root.map.hitTest(right, bottom - 3, true))) {
_root.map._x = _root.map.oldXPosition;
_root.map._x = _root.map._x + 1;
}
oldYPosition = this._y;
oldXPosition = this._x;
if ((xSpeed < 0.1) && (xSpeed > -0.1)) {
xSpeed = 0;
}
if ((ySpeed < 0.1) && (ySpeed > -0.1)) {
ySpeed = 0;
}
if (this._x < 200) {
this._x = 200;
}
if (this._x > 440) {
this._x = 440;
}
if ((this._y > 480) && (poop == 1)) {
this._y = 480;
_root.rolfgraphic.gotoAndStop(9);
health = 0;
poop = 2;
dying = true;
} else {
poop = 1;
}
}
}
Instance of Symbol 192 MovieClip "rolfgraphic" in Frame 13
onClipEvent (load) {
lastkey = 1;
}
onClipEvent (enterFrame) {
if (_root.dostuff == true) {
this._x = _root.rolf._x;
this._y = _root.rolf._y;
if (((Key.isDown(39) && (!Key.isDown(90))) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(1);
lastkey = 1;
}
if (((Key.isDown(37) && (!Key.isDown(90))) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(2);
lastkey = 2;
}
if (((Key.isDown(90) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) && (lastkey == 1)) {
this.gotoAndStop(10);
_root.rolf.attacking = true;
}
if (((Key.isDown(90) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) && (lastkey == 2)) {
this.gotoAndStop(11);
_root.rolf.attacking = true;
}
if ((((((_root.rolf.attacking == false) && (!Key.isDown(39))) && (!Key.isDown(37))) && (lastkey == 1)) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(3);
}
if ((((((_root.rolf.attacking == false) && (!Key.isDown(39))) && (!Key.isDown(37))) && (lastkey == 2)) && (_root.rolf.jumping == false)) && (_root.rolf.dying == false)) {
this.gotoAndStop(4);
}
if (((_root.rolf.jumping == true) && (lastkey == 1)) && (_root.rolf.dying == false)) {
this.gotoAndStop(5);
}
if (((_root.rolf.jumping == true) && (lastkey == 2)) && (_root.rolf.dying == false)) {
this.gotoAndStop(6);
}
}
}
Instance of Symbol 194 MovieClip in Frame 13
onClipEvent (enterFrame) {
if ((Key.isDown(16) && (count == 1)) && (_root.dostuff == true)) {
_root.dostuff = false;
count = 2;
}
if ((Key.isDown(16) && (count == 1)) && (_root.dostuff == false)) {
_root.dostuff = true;
count = 2;
}
if (!Key.isDown(16)) {
count = 1;
}
}
Instance of Symbol 199 MovieClip "map" in Frame 13
onClipEvent (enterFrame) {
this._visible = false;
if (_root.dostuff == true) {
this.stop();
if (_root.rolf._x >= 440) {
this._x = this._x - _root.rolf.xSpeed;
}
if (_root.rolf._x <= 200) {
this._x = this._x - _root.rolf.xSpeed;
}
}
oldYPosition = this._y;
oldXPosition = this._x;
}
Instance of Symbol 282 MovieClip "stuff" in Frame 13
onClipEvent (enterFrame) {
this._x = _root.map._x;
}
Instance of Symbol 320 MovieClip in Frame 13
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if (_root.crap > 10) {
this._visible = true;
}
if (_root.crap > 15) {
_root.nextFrame();
}
}
Instance of Symbol 291 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (_root.uniac.lives == 3) {
this.no1._visible = true;
this.no2._visible = true;
this.no3._visible = true;
}
if (_root.uniac.lives == 2) {
this.no1._visible = true;
this.no2._visible = true;
this.no3._visible = false;
}
if (_root.uniac.lives == 1) {
this.no1._visible = true;
this.no2._visible = false;
this.no3._visible = false;
}
if (_root.uniac.lives == 0) {
this.no1._visible = false;
this.no2._visible = false;
this.no3._visible = false;
}
}
Frame 14
play();
Frame 32
stop();
Instance of Symbol 58 MovieClip in Frame 32
on (release) {
getURL ("http://www.pixelpopulace.com", "_blank");
}
Frame 33
_root.rolf.health = 100;
_root.uniac.lives = _root.uniac.lives + 1;
Instance of Symbol 341 MovieClip in Frame 33
onClipEvent (load) {
if (_root.lastlev == 1) {
_root.gotoAndPlay("lev1");
}
if (_root.lastlev == 2) {
_root.gotoAndPlay("lev2");
}
if (_root.lastlev == 3) {
_root.gotoAndPlay("lev3");
}
if (_root.lastlev == 4) {
_root.gotoAndPlay("lev4");
}
}
Instance of Symbol 60 MovieClip "uniac" in Frame 34
onClipEvent (load) {
lives = 3;
}
Symbol 71 MovieClip Frame 184
stop();
_root.play();
Symbol 95 Button
on (release) {
_root.gotoAndPlay(6);
_root.uniac.lives = 3;
}
Symbol 118 Button
on (release) {
if (_root.lastlevel == 1) {
_root.gotoAndPlay(6);
}
if (_root.lastlevel == 2) {
_root.gotoAndPlay(8);
}
if (_root.lastlevel == 3) {
_root.gotoAndPlay(10);
}
if (_root.lastlevel == 4) {
_root.gotoAndPlay(12);
}
}
Symbol 160 MovieClip Frame 30
stop();
Symbol 164 MovieClip Frame 10
stop();
Symbol 169 MovieClip Frame 5
_root.gotoAndPlay("IB");
_root.stopAllSounds();
Symbol 183 MovieClip Frame 11
_root.rolf.attacking == false;
_root.rolfgraphic.gotoAndStop(3);
Symbol 191 MovieClip Frame 11
_root.rolf.attacking == false;
_root.rolfgraphic.gotoAndStop(4);
Symbol 192 MovieClip Frame 1
_root.rolf.attacking = false;
stop();
Instance of Symbol 129 MovieClip "rolftouch" in Symbol 192 MovieClip Frame 1
onClipEvent (enterFrame) {
this._visible = false;
}
Symbol 192 MovieClip Frame 2
stop();
Symbol 192 MovieClip Frame 3
stop();
Symbol 192 MovieClip Frame 4
stop();
Symbol 192 MovieClip Frame 5
stop();
Symbol 192 MovieClip Frame 6
stop();
Symbol 192 MovieClip Frame 7
stop();
Symbol 192 MovieClip Frame 8
stop();
Symbol 192 MovieClip Frame 9
stop();
Symbol 192 MovieClip Frame 10
stop();
_root.rolf.attacking = true;
Instance of Symbol 129 MovieClip "rolftouch" in Symbol 192 MovieClip Frame 10
onClipEvent (enterFrame) {
this._visible = false;
}
Symbol 192 MovieClip Frame 11
stop();
_root.rolf.attacking = true;
Symbol 199 MovieClip Frame 1
stop();
Symbol 199 MovieClip Frame 2
stop();
Symbol 199 MovieClip Frame 3
stop();
Symbol 199 MovieClip Frame 4
stop();
Symbol 220 MovieClip Frame 34
gotoAndPlay (1);
Symbol 220 MovieClip Frame 35
stop();
Symbol 243 MovieClip Frame 13
_root.stuff.dude.gotoAndPlay(1);
_parent._parent.unloadMovie();
Instance of Symbol 242 MovieClip in Symbol 243 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.plane.health <= 0) {
_root.dead.gotoAndStop(1);
_root.plane.gotoAndStop(5);
}
}
Instance of Symbol 224 MovieClip in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolf)) {
_root.rolf.health = _root.rolf.health - 4;
}
}
Instance of Symbol 226 MovieClip in Symbol 245 MovieClip Frame 1
onClipEvent (load) {
count = 1;
}
onClipEvent (enterFrame) {
if ((this.hitTest(_root.rolfgraphic.attack.rolfkill) || (this.hitTest(_root.rolfgraphic.attack2.rolfkill))) && (count == 1)) {
this._parent.gotoAndPlay(13);
count = 2;
} else {
count == 1;
}
}
Symbol 245 MovieClip Frame 12
gotoAndPlay (1);
Symbol 245 MovieClip Frame 13
stop();
_root.crap = _root.crap + 1;
Symbol 256 MovieClip Frame 13
this._parent.unloadMovie();
Instance of Symbol 242 MovieClip in Symbol 256 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.plane.health <= 0) {
_root.dead.gotoAndStop(1);
_root.plane.gotoAndStop(5);
}
}
Instance of Symbol 224 MovieClip in Symbol 257 MovieClip Frame 1
onClipEvent (load) {
count = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolf)) {
_root.rolf.health = _root.rolf.health - 4;
}
if ((this.hitTest(_root.rolfgraphic.attack.rolfkill) || (this.hitTest(_root.rolfgraphic.attack2.rolfkill))) && (count == 1)) {
this._parent.gotoAndPlay(58);
count = 2;
} else {
count == 1;
}
}
Instance of Symbol 224 MovieClip in Symbol 257 MovieClip Frame 5
onClipEvent (load) {
count = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolf)) {
_root.rolf.health = _root.rolf.health - 4;
}
if ((this.hitTest(_root.rolfgraphic.attack.rolfkill) || (this.hitTest(_root.rolfgraphic.attack2.rolfkill))) && (count == 1)) {
this._parent.gotoAndPlay(58);
count = 2;
} else {
count == 1;
}
}
Instance of Symbol 224 MovieClip in Symbol 257 MovieClip Frame 25
onClipEvent (load) {
count = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolf)) {
_root.rolf.health = _root.rolf.health - 4;
}
if ((this.hitTest(_root.rolfgraphic.attack.rolfkill) || (this.hitTest(_root.rolfgraphic.attack2.rolfkill))) && (count == 1)) {
this._parent.gotoAndPlay(58);
count = 2;
} else {
count == 1;
}
}
Instance of Symbol 224 MovieClip in Symbol 257 MovieClip Frame 53
onClipEvent (load) {
count = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolf)) {
_root.rolf.health = _root.rolf.health - 2;
}
if ((this.hitTest(_root.rolfgraphic.attack.rolfkill) || (this.hitTest(_root.rolfgraphic.attack2.rolfkill))) && (count == 1)) {
this._parent.gotoAndPlay(58);
count = 2;
} else {
count == 1;
}
}
Symbol 257 MovieClip Frame 57
gotoAndPlay (1);
Instance of Symbol 224 MovieClip in Symbol 257 MovieClip Frame 57
onClipEvent (load) {
count = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolf)) {
_root.rolf.health = _root.rolf.health - 4;
}
if ((this.hitTest(_root.rolfgraphic.attack.rolfkill) || (this.hitTest(_root.rolfgraphic.attack2.rolfkill))) && (count == 1)) {
this._parent.gotoAndPlay(58);
count = 2;
} else {
count == 1;
}
}
Symbol 257 MovieClip Frame 58
stop();
Symbol 282 MovieClip Frame 1
stop();
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.unloadMovie();
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 222 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolf)) {
_root.rolf.xSpeed = _root.rolf.xSpeed + 3;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 222 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolf)) {
_root.rolf.xSpeed = _root.rolf.xSpeed + 3;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.unloadMovie();
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 259 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (enterFrame) {
this._visible = false;
if (this.hitTest(_root.rolf)) {
_root.nextFrame();
}
}
Symbol 282 MovieClip Frame 2
stop();
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.unloadMovie();
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 265 MovieClip in Symbol 282 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolf)) {
_root.rolf.xSpeed = _root.rolf.xSpeed + 3;
}
}
Symbol 282 MovieClip Frame 3
stop();
Instance of Symbol 222 MovieClip in Symbol 282 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolf)) {
_root.rolf.xSpeed = _root.rolf.xSpeed + 3;
}
}
Instance of Symbol 220 MovieClip in Symbol 282 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolfgraphic.rolftouch)) {
this.gotoAndPlay("get");
_root.bananacount = _root.bananacount + 1;
}
}
Instance of Symbol 222 MovieClip in Symbol 282 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolf)) {
_root.rolf.xSpeed = _root.rolf.xSpeed + 3;
}
}
Instance of Symbol 265 MovieClip in Symbol 282 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolf)) {
_root.rolf.xSpeed = _root.rolf.xSpeed + 3;
}
}
Instance of Symbol 265 MovieClip in Symbol 282 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolf)) {
_root.rolf.xSpeed = _root.rolf.xSpeed + 3;
}
}
Instance of Symbol 265 MovieClip in Symbol 282 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.rolf)) {
_root.rolf.xSpeed = _root.rolf.xSpeed + 3;
}
}
Symbol 282 MovieClip Frame 4
stop();
Instance of Symbol 284 MovieClip in Symbol 286 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this._width > ((176.3 * (_root.rolf.health / 100)) - 1)) {
this._width = this._width - 1;
}
if (this._width < ((176.3 * (_root.rolf.health / 100)) - 1)) {
this._width = this._width + 1;
}
if (this._width >= 175.3) {
this._width = 175.3;
}
if (_root.rolf.health >= 100) {
_root.rolf.health = 100;
}
if (_root.rolf.health <= 0) {
if (_root.uniac.lives <= 0) {
_root.gotoAndPlay(3);
}
_root.uniac.lives = _root.uniac.lives - 1;
_root.rolf.health = 100;
}
}
Symbol 304 Button
on (release) {
nextFrame();
}
Symbol 339 Button
on (release) {
_root.gotoAndPlay(2);
}