Frame 1
stop();
gold = 0;
Instance of Symbol 3 MovieClip in Frame 1
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 13 MovieClip in Frame 1
onClipEvent (enterFrame) {
if (_root._framesloaded == _root._totalframes) {
this.gotoAndStop(9);
}
}
Frame 4
stop();
gold = 0;
Instance of Symbol 3 MovieClip in Frame 4
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 31 MovieClip in Frame 4
on (keyPress "<Space>") {
_root.nextFrame();
}
Frame 5
stop();
Frame 10
stopAllSounds();
Frame 21
play();
Frame 63
stop();
Instance of Symbol 114 MovieClip in Frame 86
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 117 MovieClip in Frame 86
onClipEvent (load) {
startx = this._x;
xspeed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_root.char.moving == true)) {
xspeed = xspeed + (_root.char.xspeed / 10);
}
if (Key.isDown(37) && (_root.char.moving == true)) {
xspeed = xspeed - (_root.char.xspeed / 10);
}
xspeed = xspeed * 0.88;
this._x = this._x + xspeed;
}
Frame 102
stop();
Instance of Symbol 31 MovieClip in Frame 102
on (keyPress "<Space>") {
_root.nextFrame();
}
Frame 106
_root.gotoAndStop("play");
Instance of Symbol 129 MovieClip "camera" in Frame 106
onClipEvent (load) {
vx = 0;
vy = 0;
ax = 0;
ay = 0;
grow = false;
count = 1;
growspeed = 0;
targetsize = 0;
amount = 5;
}
onClipEvent (enterFrame) {
ax = (_root.char._x - this._x) / 10;
ay = (_root.char._y - this._y) / 10;
vy = vy + ay;
vx = vx + ax;
vx = vx * 0.8;
vy = vy * 0.8;
this._x = this._x + vx;
}
Instance of Symbol 131 MovieClip in Frame 113
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndStop("dead2");
}
}
Instance of Symbol 133 MovieClip "char" in Frame 113
onClipEvent (load) {
gravity = 0.5;
yspeed = 0;
xspeed = 8;
jumping = 0;
moving = false;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this._xscale = -100;
if (!_root.terrain.hitTest(_x - (_width / 2), _y + (_height / 4), true)) {
_x = (_x - xspeed);
moving = true;
} else {
moving = false;
}
this.gotoAndStop(2);
}
if (Key.isDown(39)) {
this._xscale = 100;
if (!_root.terrain.hitTest(_x + (_width / 2), _y + (_height / 4), true)) {
_x = (_x + xspeed);
moving = true;
} else {
moving = false;
}
this.gotoAndStop(2);
}
if (Key.isDown(32) and (!jumping)) {
yspeed = -12;
jumping = 1;
}
if (jumping == 1) {
this.gotoAndStop(3);
}
yspeed = yspeed + gravity;
while (_root.terrain.hitTest(_x, _y + (_height / 2), true)) {
_y = (_y - 0.1);
yspeed = 0;
jumping = 0;
}
if (((!Key.isDown(39)) && (!Key.isDown(37))) && (jumping == false)) {
this.gotoAndStop(1);
}
if ((!_root.terrain.hitTest(_x, (_y + (_height / 2)) + 1, true)) or (yspeed < 0)) {
_y = (_y + yspeed);
} else {
yspeed = 0;
jumping = 0;
}
}
Instance of Symbol 137 MovieClip in Frame 113
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 140 MovieClip in Frame 114
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 114
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 114
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 114
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 114
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 114
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 114
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 114
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 114
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 114
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 96 MovieClip in Frame 114
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.nextFrame();
}
}
Instance of Symbol 145 MovieClip in Frame 114
onClipEvent (enterFrame) {
this._x = _root.camera._x - 280;
}
Instance of Symbol 147 MovieClip "timer" in Frame 114
onClipEvent (load) {
time = 30;
things = 0;
}
onClipEvent (enterFrame) {
this._x = _root.camera._x + 180;
things++;
if (things == 25) {
things = 0;
time--;
}
if (time < 0) {
_root.gotoAndStop("notime");
}
}
Frame 115
stopAllSounds();
Instance of Symbol 31 MovieClip in Frame 115
on (keyPress "<Space>") {
_root.nextFrame();
}
Instance of Symbol 151 MovieClip in Frame 116
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 161 MovieClip in Frame 117
onClipEvent (load) {
startx = this._x;
xspeed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_root.char.moving == true)) {
xspeed = xspeed + (_root.char.xspeed / 10);
}
if (Key.isDown(37) && (_root.char.moving == true)) {
xspeed = xspeed - (_root.char.xspeed / 10);
}
xspeed = xspeed * 0.88;
this._x = this._x + xspeed;
}
Instance of Symbol 167 MovieClip "char" in Frame 117
onClipEvent (load) {
gravity = 0.5;
yspeed = 0;
xspeed = 8;
jumping = 0;
moving = false;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this._xscale = -100;
if (!_root.terrain.hitTest(_x - (_width / 2), _y + (_height / 4), true)) {
_x = (_x - xspeed);
moving = true;
} else {
moving = false;
}
this.gotoAndStop(2);
}
if (Key.isDown(39)) {
this._xscale = 100;
if (!_root.terrain.hitTest(_x + (_width / 2), _y + (_height / 4), true)) {
_x = (_x + xspeed);
moving = true;
} else {
moving = false;
}
this.gotoAndStop(2);
}
if (Key.isDown(32) and (!jumping)) {
yspeed = -12;
jumping = 1;
}
if (jumping == 1) {
this.gotoAndStop(3);
}
yspeed = yspeed + gravity;
while (_root.terrain.hitTest(_x, _y + (_height / 2), true)) {
_y = (_y - 0.1);
yspeed = 0;
jumping = 0;
}
if (((!Key.isDown(39)) && (!Key.isDown(37))) && (jumping == false)) {
this.gotoAndStop(1);
}
if ((!_root.terrain.hitTest(_x, (_y + (_height / 2)) + 1, true)) or (yspeed < 0)) {
_y = (_y + yspeed);
} else {
yspeed = 0;
jumping = 0;
}
}
Instance of Symbol 129 MovieClip "camera" in Frame 117
onClipEvent (load) {
vx = 0;
vy = 0;
ax = 0;
ay = 0;
grow = false;
count = 1;
growspeed = 0;
targetsize = 0;
amount = 5;
}
onClipEvent (enterFrame) {
ax = (_root.char._x - this._x) / 10;
ay = (_root.char._y - this._y) / 10;
vy = vy + ay;
vx = vx + ax;
vx = vx * 0.8;
vy = vy * 0.8;
this._x = this._x + vx;
}
Instance of Symbol 175 MovieClip in Frame 117
onClipEvent (enterFrame) {
this._x = this._x - 4;
}
Instance of Symbol 140 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 96 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.nextFrame();
}
}
Instance of Symbol 145 MovieClip in Frame 117
onClipEvent (enterFrame) {
this._x = _root.camera._x - 280;
}
Instance of Symbol 147 MovieClip "timer" in Frame 117
onClipEvent (load) {
time = 30;
things = 0;
}
onClipEvent (enterFrame) {
this._x = _root.camera._x + 180;
things++;
if (things == 25) {
things = 0;
time--;
}
if (time < 0) {
_root.gotoAndStop("notime");
}
}
Instance of Symbol 137 MovieClip in Frame 117
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Frame 118
stopAllSounds();
Instance of Symbol 3 MovieClip in Frame 118
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 177 MovieClip in Frame 118
onClipEvent (load) {
startx = this._x;
xspeed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_root.char.moving == true)) {
xspeed = xspeed + (_root.char.xspeed / 10);
}
if (Key.isDown(37) && (_root.char.moving == true)) {
xspeed = xspeed - (_root.char.xspeed / 10);
}
xspeed = xspeed * 0.88;
this._x = this._x + xspeed;
}
Instance of Symbol 140 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Instance of Symbol 140 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gold++;
this.unloadMovie();
}
}
Frame 132
stop();
Instance of Symbol 31 MovieClip in Frame 132
on (keyPress "<Space>") {
_root.nextFrame();
}
Frame 137
play();
Frame 147
stop();
Instance of Symbol 31 MovieClip in Frame 147
on (keyPress "<Space>") {
_root.nextFrame();
}
Instance of Symbol 194 MovieClip in Frame 148
onClipEvent (enterFrame) {
this._x = this._x - 4;
}
Instance of Symbol 204 MovieClip "char" in Frame 148
onClipEvent (load) {
gravity = 0.5;
yspeed = 0;
xspeed = 8;
jumping = 0;
moving = false;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this._xscale = -100;
if (!_root.terrain.hitTest(_x - (_width / 2), _y + (_height / 4), true)) {
_x = (_x - xspeed);
moving = true;
} else {
moving = false;
}
this.gotoAndStop(2);
}
if (Key.isDown(39)) {
this._xscale = 100;
if (!_root.terrain.hitTest(_x + (_width / 2), _y + (_height / 4), true)) {
_x = (_x + xspeed);
moving = true;
} else {
moving = false;
}
this.gotoAndStop(2);
}
if (Key.isDown(32) and (!jumping)) {
yspeed = -12;
jumping = 1;
}
if (jumping == 1) {
this.gotoAndStop(3);
}
yspeed = yspeed + gravity;
while (_root.terrain.hitTest(_x, _y + (_height / 2), true)) {
_y = (_y - 0.1);
yspeed = 0;
jumping = 0;
}
if (((!Key.isDown(39)) && (!Key.isDown(37))) && (jumping == false)) {
this.gotoAndStop(1);
}
if ((!_root.terrain.hitTest(_x, (_y + (_height / 2)) + 1, true)) or (yspeed < 0)) {
_y = (_y + yspeed);
} else {
yspeed = 0;
jumping = 0;
}
}
Instance of Symbol 129 MovieClip "camera" in Frame 148
onClipEvent (load) {
vx = 0;
vy = 0;
ax = 0;
ay = 0;
grow = false;
count = 1;
growspeed = 0;
targetsize = 0;
amount = 5;
}
onClipEvent (enterFrame) {
ax = (_root.char._x - this._x) / 10;
ay = (_root.char._y - this._y) / 10;
vy = vy + ay;
vx = vx + ax;
vx = vx * 0.8;
vy = vy * 0.8;
this._x = this._x + vx;
}
Instance of Symbol 145 MovieClip in Frame 148
onClipEvent (enterFrame) {
this._x = _root.camera._x - 280;
}
Instance of Symbol 147 MovieClip "timer" in Frame 148
onClipEvent (load) {
time = 30;
things = 0;
}
onClipEvent (enterFrame) {
this._x = _root.camera._x + 180;
things++;
if (things == 25) {
things = 0;
time--;
}
if (time < 0) {
_root.gotoAndStop("notime");
}
}
Instance of Symbol 208 MovieClip in Frame 148
onClipEvent (enterFrame) {
this._x = this._x + 6;
if (this.hitTest(_root.char)) {
_root.gotoAndStop("last");
}
}
Instance of Symbol 137 MovieClip in Frame 148
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Frame 149
stopAllSounds();
Instance of Symbol 31 MovieClip in Frame 149
on (keyPress "<Space>") {
_root.nextFrame();
}
Instance of Symbol 31 MovieClip in Frame 154
on (keyPress "<Space>") {
_root.nextFrame();
}
Instance of Symbol 31 MovieClip in Frame 154
on (keyPress "<Space>") {
_root.nextFrame();
}
Frame 157
stopAllSounds();
Frame 158
stop();
Frame 365
stop();
stopAllSounds();
Instance of Symbol 240 MovieClip in Frame 365
onClipEvent (load) {
allow = false;
}
onClipEvent (enterFrame) {
if (!Key.isDown(32)) {
allow = true;
}
}
on (keyPress "<Space>") {
if (allow == true) {
_root.gotoAndStop("menu");
}
}
Frame 366
stop();
stopAllSounds();
Instance of Symbol 240 MovieClip in Frame 366
onClipEvent (load) {
allow = false;
}
onClipEvent (enterFrame) {
if (!Key.isDown(32)) {
allow = true;
}
}
on (keyPress "<Space>") {
if (allow == true) {
_root.gotoAndStop("cowboydan");
}
}
Frame 367
stop();
stopAllSounds();
Instance of Symbol 240 MovieClip in Frame 367
onClipEvent (load) {
allow = false;
}
onClipEvent (enterFrame) {
if (!Key.isDown(32)) {
allow = true;
}
}
on (keyPress "<Space>") {
if (allow == true) {
_root.gotoAndStop("play");
}
}
Frame 368
stop();
stopAllSounds();
Instance of Symbol 240 MovieClip in Frame 368
onClipEvent (load) {
allow = false;
}
onClipEvent (enterFrame) {
if (!Key.isDown(32)) {
allow = true;
}
}
on (keyPress "<Space>") {
if (allow == true) {
_root.gotoAndStop("level3");
}
}
Symbol 12 Button
on (keyPress "<Space>") {
_root.gotoAndPlay("menu");
}
Symbol 13 MovieClip Frame 8
gotoAndPlay (1);
Symbol 19 Button
on (release) {
getURL ("http://www.galacticflashgames.com/index.html", "_blank");
}
Symbol 26 Button
on (release) {
getURL ("http://www.galacticflashgames.com/all.html", "_blank");
}
Symbol 36 MovieClip Frame 85
_root.nextFrame();
Symbol 43 MovieClip Frame 93
stop();
Symbol 44 MovieClip Frame 25
stop();
Symbol 48 MovieClip Frame 35
stop();
Symbol 68 MovieClip Frame 15
stop();
Symbol 78 MovieClip Frame 23
stop();
Symbol 83 MovieClip Frame 60
stop();
Symbol 87 MovieClip Frame 45
stop();
Symbol 98 MovieClip Frame 13
stop();
Symbol 112 MovieClip Frame 27
stop();
_root.gotoAndStop("level1");
Symbol 120 MovieClip Frame 1
stopAllSounds();
Symbol 120 MovieClip Frame 24
stop();
_root.play();
Instance of Symbol 121 MovieClip in Symbol 122 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
}
Symbol 122 MovieClip Frame 39
stop();
Symbol 129 MovieClip Frame 1
function camControl() {
parentColor.setTransform(camColor.getTransform());
var _local4 = sX / this._width;
var _local3 = sY / this._height;
_parent._x = cX - (this._x * _local4);
_parent._y = cY - (this._y * _local3);
_parent._xscale = 100 * _local4;
_parent._yscale = 100 * _local3;
}
function resetStage() {
var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
parentColor.setTransform(_local2);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = "exactFit";
var cX = (Stage.width / 2);
var cY = (Stage.height / 2);
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
Symbol 135 MovieClip Frame 27
_root.nextFrame();
Symbol 149 MovieClip Frame 24
stop();
Symbol 169 MovieClip Frame 47
stop();
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 174 MovieClip in Symbol 175 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead");
}
}
Instance of Symbol 190 MovieClip in Symbol 193 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndPlay("dead4");
}
}
Symbol 206 MovieClip Frame 43
stop();
Symbol 210 MovieClip Frame 24
stop();
_root.nextFrame();
Symbol 235 MovieClip Frame 464
_root.gotoAndStop("menu");
Symbol 242 Button
on (release) {
getURL ("http://www.galacticflashgames.com/all.html", "_blank");
}
Symbol 245 Button
on (release) {
getURL ("http://www.galacticflashgames.com/all.html", "_blank");
}