Frame 1 (8 B)
stop();
Frame 2 (8 B)
stop();
Instance of Symbol 14 MovieClip in Frame 2 (52 B)
on (press) {
getURL ("http://www.gamegecko.com");
}
Frame 4 (638 B)
function doSomething() {
}
function doSomething2() {
getURL ("http://www.cremationproductions.com", _blank);
}
function doSomething3() {
getURL ("http://www.gamegecko.com", _blank);
}
stop();
MENU.customItems.push(Functioned2);
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("Made by Eggy", doSomething);
Functioned2 = new ContextMenuItem("Visit Cremation Productions", doSomething2);
Functioned3 = new ContextMenuItem("Visit Gecko Games", doSomething3);
MENU.customItems.push(Functioned);
MENU.customItems.push(Functioned2);
MENU.customItems.push(Functioned3);
_root.menu = MENU;
Frame 5 (8 B)
stop();
Frame 6 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 7 (307 B)
stop();
bar = 100;
_root.onMouseDown = function () {
_root.ground.lineStyle(20, 0, 100);
_root.ground.moveTo(_xmouse, _ymouse);
this.onMouseMove = function () {
_root.ground.lineTo(_xmouse, _ymouse);
updateAfterEvent();
};
};
_root.onMouseUp = function () {
this.onMouseMove = null;
};
Instance of Symbol 79 MovieClip in Frame 7 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 95 MovieClip "char" in Frame 7 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 8 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 9 (8 B)
stop();
Instance of Symbol 79 MovieClip in Frame 9 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 95 MovieClip "char" in Frame 9 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 10 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 11 (8 B)
stop();
Instance of Symbol 79 MovieClip in Frame 11 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 95 MovieClip "char" in Frame 11 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 12 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 13 (8 B)
stop();
Instance of Symbol 79 MovieClip in Frame 13 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 115 MovieClip in Frame 13 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 13 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 123 MovieClip in Frame 13 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 115 MovieClip in Frame 13 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 13 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 95 MovieClip "char" in Frame 13 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 14 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 15 (8 B)
stop();
Instance of Symbol 79 MovieClip in Frame 15 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 115 MovieClip in Frame 15 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 15 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 15 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 15 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 15 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 15 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 15 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 15 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 15 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 15 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 15 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 15 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 95 MovieClip "char" in Frame 15 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 16 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 17 (8 B)
stop();
Instance of Symbol 79 MovieClip in Frame 17 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 123 MovieClip in Frame 17 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 123 MovieClip in Frame 17 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 123 MovieClip in Frame 17 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 95 MovieClip "char" in Frame 17 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 18 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 19 (8 B)
stop();
Instance of Symbol 79 MovieClip in Frame 19 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 115 MovieClip in Frame 19 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 19 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 19 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 19 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 19 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 19 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 19 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 95 MovieClip "char" in Frame 19 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 20 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 21 (8 B)
stop();
Instance of Symbol 79 MovieClip in Frame 21 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 135 MovieClip in Frame 21 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 135 MovieClip in Frame 21 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 115 MovieClip in Frame 21 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 21 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 95 MovieClip "char" in Frame 21 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 22 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 23 (20 B)
stop();
bar = 100;
Instance of Symbol 79 MovieClip in Frame 23 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 115 MovieClip in Frame 23 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 23 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 23 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 23 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 23 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 23 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 23 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 23 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 23 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 23 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 23 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 95 MovieClip "char" in Frame 23 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 24 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 25 (20 B)
stop();
bar = 100;
Instance of Symbol 79 MovieClip in Frame 25 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 95 MovieClip "char" in Frame 25 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 26 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 27 (8 B)
stop();
Instance of Symbol 79 MovieClip in Frame 27 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 115 MovieClip in Frame 27 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 95 MovieClip "char" in Frame 27 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Instance of Symbol 123 MovieClip in Frame 27 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 123 MovieClip in Frame 27 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 123 MovieClip in Frame 27 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 123 MovieClip in Frame 27 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 123 MovieClip in Frame 27 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Frame 28 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 29 (8 B)
stop();
Instance of Symbol 79 MovieClip in Frame 29 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 144 MovieClip in Frame 29 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 3;
}
Instance of Symbol 144 MovieClip in Frame 29 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 144 MovieClip in Frame 29 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 144 MovieClip in Frame 29 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 144 MovieClip in Frame 29 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 144 MovieClip in Frame 29 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 95 MovieClip "char" in Frame 29 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 30 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 31 (8 B)
stop();
Instance of Symbol 79 MovieClip in Frame 31 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 95 MovieClip "char" in Frame 31 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 32 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 33 (8 B)
stop();
Instance of Symbol 79 MovieClip in Frame 33 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 95 MovieClip "char" in Frame 33 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 33 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 33 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 33 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 33 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 33 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 33 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 33 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 33 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Frame 34 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 35 (8 B)
stop();
Instance of Symbol 79 MovieClip in Frame 35 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 95 MovieClip "char" in Frame 35 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 36 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 37 (295 B)
stop();
_root.onMouseDown = function () {
_root.ground.lineStyle(20, 0, 100);
_root.ground.moveTo(_xmouse, _ymouse);
this.onMouseMove = function () {
_root.ground.lineTo(_xmouse, _ymouse);
updateAfterEvent();
};
};
_root.onMouseUp = function () {
this.onMouseMove = null;
};
Instance of Symbol 79 MovieClip in Frame 37 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 37 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 95 MovieClip "char" in Frame 37 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 38 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 39 (307 B)
stop();
bar = 100;
_root.onMouseDown = function () {
_root.ground.lineStyle(20, 0, 100);
_root.ground.moveTo(_xmouse, _ymouse);
this.onMouseMove = function () {
_root.ground.lineTo(_xmouse, _ymouse);
updateAfterEvent();
};
};
_root.onMouseUp = function () {
this.onMouseMove = null;
};
Instance of Symbol 79 MovieClip in Frame 39 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 135 MovieClip in Frame 39 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 144 MovieClip in Frame 39 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 144 MovieClip in Frame 39 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 135 MovieClip in Frame 39 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 95 MovieClip "char" in Frame 39 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 40 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 41 (307 B)
stop();
bar = 100;
_root.onMouseDown = function () {
_root.ground.lineStyle(20, 0, 100);
_root.ground.moveTo(_xmouse, _ymouse);
this.onMouseMove = function () {
_root.ground.lineTo(_xmouse, _ymouse);
updateAfterEvent();
};
};
_root.onMouseUp = function () {
this.onMouseMove = null;
};
Instance of Symbol 79 MovieClip in Frame 41 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 115 MovieClip in Frame 41 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 41 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 41 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 41 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 41 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 41 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 41 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 41 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 41 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 41 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 115 MovieClip in Frame 41 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 95 MovieClip "char" in Frame 41 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 42 (42 B)
unloadMovie (_root.ground);
nextFrame();
Frame 43 (295 B)
stop();
_root.onMouseDown = function () {
_root.ground.lineStyle(20, 0, 100);
_root.ground.moveTo(_xmouse, _ymouse);
this.onMouseMove = function () {
_root.ground.lineTo(_xmouse, _ymouse);
updateAfterEvent();
};
};
_root.onMouseUp = function () {
this.onMouseMove = null;
};
Instance of Symbol 79 MovieClip in Frame 43 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
another = new Sound();
another.attachSound("ding", this);
another.start();
_root.play();
}
}
Instance of Symbol 135 MovieClip in Frame 43 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
}
Instance of Symbol 155 MovieClip in Frame 43 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation - 1;
}
Instance of Symbol 156 MovieClip in Frame 43 (66 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation - 1;
}
Instance of Symbol 95 MovieClip "char" in Frame 43 (1.83 KiB) ●
onClipEvent (load) {
grav = 0;
speed = 5;
jumpHeight = 12;
scale = _xscale;
yp = 0;
grounded = false;
timer = 0;
timer2 = 0;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(3);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(38))) {
this.gotoAndStop(3);
}
if ((((!Key.isDown(38)) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(40))) {
this.gotoAndStop(4);
}
if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this._y > 750) {
someSound = new Sound();
someSound.attachSound("scream", this);
someSound.start();
this._x = 30;
this._y = 547;
}
if (this._y < 0) {
this._x = 30;
this._y = 547;
}
if (this._x < -20) {
this._x = 30;
this._y = 547;
}
if (this._x > 810) {
this._x = 30;
this._y = 547;
}
}
Frame 44 (8 B)
stop();
Frame 45 (8 B)
stop();
Instance of Symbol 167 MovieClip in Frame 45 (63 B)
on (press) {
getURL ("http://www.cremationproductions.com");
}
Symbol 8 MovieClip Frame 1 (184 B)
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
_root.gotoAndPlay(2);
}
Symbol 8 MovieClip Frame 2 (17 B)
gotoAndPlay (1);
Symbol 14 MovieClip Frame 111 (22 B)
_root.gotoAndPlay(3);
Symbol 26 Button (37 B)
on (press) {
_root.gotoAndPlay(6);
}
Symbol 45 Button (37 B)
on (press) {
_root.gotoAndPlay(5);
}
Symbol 48 Button (33 B)
on (press) {
gotoAndStop (47);
}
Symbol 51 Button (52 B)
on (press) {
getURL ("http://www.gamegecko.com");
}
Symbol 54 Button (60 B)
on (press) {
getURL ("http://www.gamesforwebsites.com/");
}
Symbol 59 Button (52 B)
on (press) {
getURL ("http://www.gamegecko.com");
}
Symbol 66 Button (37 B)
on (press) {
_root.gotoAndPlay(3);
}
Symbol 94 MovieClip Frame 2 (8 B)
stop();
Symbol 95 MovieClip Frame 1 (8 B)
stop();
Symbol 95 MovieClip Frame 2 (8 B)
stop();
Symbol 95 MovieClip Frame 3 (8 B)
stop();
Symbol 95 MovieClip Frame 4 (8 B)
stop();
Symbol 103 Button (34 B)
on (press) {
_root.prevFrame();
}
Symbol 110 Button (37 B)
on (press) {
_root.gotoAndPlay(4);
}
Instance of Symbol 114 MovieClip in Symbol 115 MovieClip Frame 1 (165 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.penis._x = char._x;
_root.penis._y = char._y;
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 121 MovieClip in Symbol 122 MovieClip Frame 1 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 130 MovieClip in Symbol 131 MovieClip Frame 1 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 130 MovieClip in Symbol 140 MovieClip Frame 1 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 114 MovieClip in Symbol 150 MovieClip Frame 1 (165 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.penis._x = char._x;
_root.penis._y = char._y;
_root.char._x = 30;
_root.char._y = 547;
}
}
Instance of Symbol 150 MovieClip in Symbol 151 MovieClip Frame 1 (109 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.char._x = 30;
_root.char._y = 547;
}
}