Frame 1
stop();
Mouse.hide();
var NoMenu = new ContextMenu();
NoMenu.hideBuiltInItems();
this.menu = NoMenu;
Frame 2
stop();
Mouse.hide();
_quality = "low";
Instance of Symbol 41 MovieClip in Frame 2
onClipEvent (mouseDown) {
getURL ("http://www.cl-17.com", _blank);
}
Frame 3
stop();
mysound = new Sound();
mysound.attachSound("si");
_root.mysound.start(0, 9999);
Instance of Symbol 118 MovieClip in Frame 3
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag(true);
}
Frame 4
stop();
Frame 5
function dupespike() {
duplicateMovieClip (_root.spike, "spike" + i, i + 2000);
i++;
if (_root.i > 5) {
_root.i = 1;
}
}
function addtime() {
_root.timer = _root.timer + 1;
}
stop();
var health = 100;
var timer = 0;
var repair = 100;
var spikenum = 0;
var rempty = false;
_root.mysound.stop();
gamesound = new Sound();
gamesound.attachSound("rl");
gamesound.start(0, 9999);
_root.onEnterFrame = function () {
if (health <= 0) {
_root.chassis.play();
health = 0;
clearInterval(dupe1);
clearInterval(time1);
}
if (_root.i > 5) {
_root.i = 1;
}
if (_root.health > 100) {
_root.health = 100;
}
if (Key.isDown(16) && (_root.rempty == false)) {
_root.repair = _root.repair - 1;
_root.health = _root.health + 2;
}
if (_root.repair < 0) {
_root.repair = 0;
_root.rempty = true;
}
};
i = 1;
dupe1 = setInterval(dupespike, 5000);
time1 = setInterval(addtime, 1);
Math.round(timer);
Instance of Symbol 45 MovieClip "chassis" in Frame 5
onClipEvent (load) {
xs = 0;
ys = 0;
acc = 1;
fric = 1;
}
onClipEvent (enterFrame) {
_x = (_x + xs);
_y = (_y + ys);
if (Key.isDown(65)) {
xs = xs - acc;
}
if (Key.isDown(68)) {
xs = xs + acc;
}
if (Key.isDown(87)) {
ys = ys - acc;
}
if (Key.isDown(83)) {
ys = ys + acc;
}
if (xs > 7) {
xs = 7;
}
if (xs < -7) {
xs = -7;
}
if (ys > 7) {
ys = 7;
}
if (ys < -7) {
ys = -7;
}
if (this.hitTest(_root.spikewall1)) {
_root.chassis.play();
_root.health = 0;
}
if (this.hitTest(_root.spikewall2)) {
_root.chassis.play();
_root.health = 0;
}
if (this.hitTest(_root.spikewall3)) {
_root.chassis.play();
_root.health = 0;
}
if (this.hitTest(_root.spikewall4)) {
_root.chassis.play();
_root.health = 0;
}
}
Instance of Symbol 47 MovieClip "gun" in Frame 5
onClipEvent (load) {
shotcount = 1;
}
onClipEvent (enterFrame) {
this._x = _root.chassis._x;
this._y = _root.chassis._y;
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
this._rotation = myDegrees + 90;
}
onClipEvent (mouseDown) {
_root.shot.duplicateMovieClip("shot" + shotcount, shotcount + 7000);
_root["shot" + shotcount]._visible = true;
shotcount++;
if (shotcount > 100) {
shotcount = 1;
}
}
Instance of Symbol 129 MovieClip "shot" in Frame 5
onClipEvent (load) {
if (this._name == "shot") {
this._visible = false;
} else {
this._visible = true;
}
ys = 10;
xs = 10;
this._x = _root.gun._x;
this._y = _root.gun._y;
this._rotation = _root.gun._rotation;
out = false;
}
onClipEvent (enterFrame) {
shotxspeed = xs * Math.sin(this._rotation * (Math.PI/180));
shotyspeed = ys * Math.cos(this._rotation * (Math.PI/180));
this._x = this._x + shotxspeed;
this._y = this._y - shotyspeed;
if (((this._x > 550) && (this._rotation < 180)) && (this._rotation > 0)) {
xs = -10;
out = true;
}
if (((this._x < 0) && (this._rotation < 180)) && (this._rotation > 0)) {
xs = 10;
out = true;
}
if (((this._x > 550) && (this._rotation < 0)) && (this._rotation > -180)) {
xs = 10;
out = true;
}
if (((this._x < 0) && (this._rotation < 0)) && (this._rotation > -180)) {
xs = -10;
out = true;
}
if (((this._y > 400) && (this._rotation < 180)) && (this._rotation > 0)) {
ys = -10;
out = true;
}
if (((this._y < 0) && (this._rotation < 180)) && (this._rotation > 0)) {
ys = 10;
out = true;
}
if (((this._y > 400) && (this._rotation < 0)) && (this._rotation > -180)) {
ys = 10;
out = true;
}
if (((this._y < 0) && (this._rotation < 0)) && (this._rotation > -180)) {
ys = -10;
out = true;
}
if (_root.spike1.hitTest(_x, _y, true)) {
this.play();
_root.spike1.sphealth = _root.spike1.sphealth - 1;
xs = 0;
ys = 0;
}
if (_root.spike2.hitTest(_x, _y, true)) {
this.play();
_root.spike2.sphealth = _root.spike2.sphealth - 1;
xs = 0;
ys = 0;
}
if (_root.spike3.hitTest(_x, _y, true)) {
this.play();
_root.spike3.sphealth = _root.spike3.sphealth - 1;
xs = 0;
ys = 0;
}
if (_root.spike4.hitTest(_x, _y, true)) {
this.play();
_root.spike4.sphealth = _root.spike4.sphealth - 1;
xs = 0;
ys = 0;
}
if (_root.spike5.hitTest(_x, _y, true)) {
this.play();
_root.spike5.sphealth = _root.spike5.sphealth - 1;
xs = 0;
ys = 0;
}
if (_root.spike.hitTest(_x, _y, true)) {
this.play();
_root.spike.sphealth = _root.spike.sphealth - 1;
xs = 0;
ys = 0;
}
if (_root.chassis.hitTest(_x, _y, true) && (out == true)) {
this.play();
_root.health = _root.health - 0.5;
xs = 0;
ys = 0;
}
if (_root._currentframe == 4) {
this.removeMovieClip();
}
if (_root.health <= 0) {
this.removeMovieClip();
}
}
Instance of Symbol 10 MovieClip [spike] "spike" in Frame 5
onClipEvent (load) {
this._x = -134.5;
this._y = 65.9;
}
Instance of Symbol 70 MovieClip "health" in Frame 5
onClipEvent (enterFrame) {
this._width = _root.health;
}
Instance of Symbol 70 MovieClip "repair" in Frame 5
onClipEvent (enterFrame) {
this._width = _root.repair;
}
Frame 7
stop();
_root.timer2 = _root.timer;
_root.gamesound.stop();
_root.name1 = "Insert Name Here";
_root.repairleft = _root.repair;
prsound = new Sound();
prsound.attachSound("pl");
prsound.start(0, 9999);
_root.killFunction = true;
_root.spike.removeMovieClip();
_root.spike1.removeMovieClip();
_root.spike2.removeMovieClip();
_root.spike3.removeMovieClip();
_root.spike4.removeMovieClip();
_root.spike5.removeMovieClip();
_root.repair1.removeMovieClip();
_root.onEnterFrame = function () {
if (_root.timer2 > 40000) {
var _local2 = SharedObject.getLocal("file1");
_local2.data.a1 = true;
_local2.flush();
_root.acha.gotoAndStop(2);
}
if (_root.timer2 < 95) {
var _local2 = SharedObject.getLocal("file1");
_local2.data.a2 = true;
_local2.flush();
_root.acha.gotoAndStop(2);
}
if ((_root.timer2 > 35000) && (repairleft > 99)) {
var _local2 = SharedObject.getLocal("file1");
_local2.data.a3 = true;
_local2.flush();
_root.acha.gotoAndStop(2);
}
if (_root.spikenum >= 5) {
var _local2 = SharedObject.getLocal("file1");
_local2.data.a4 = true;
_local2.flush();
_root.acha.gotoAndStop(2);
}
};
Instance of Symbol 118 MovieClip in Frame 7
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag(true);
}
Frame 8
function __rankz_send__(par1, par2, par3, par4) {
par227 = new LoadVars();
par228 = new LoadVars();
par227.flashkey = par2;
par227.SU0249 = par1;
par227.bmFtZTE = ab3.rankz.Armor_Bot_30_En_AS1.Encode(par3);
par227.c2NvcmUx = ab3.rankz.Armor_Bot_30_En_AS1.Encode(par4 + "j%e%a%n%s");
par227.flashkey = par227.flashkey.split("=").join("");
par227.SU0249 = par227.SU0249.split("=").join("");
par228.onLoad = function (success) {
if (success) {
trace(par228.msg);
} else {
trace(par228.loaded);
}
};
par227.sendAndLoad("http://rankz.armorbot.com/submit/", par228, "POST");
}
stop();
_root.timer3 = _root.timer2;
_root.name2 = _root.name1;
_root.gamesound.stop();
_root.killFunction = true;
_root.spike.removeMovieClip();
_root.spike1.removeMovieClip();
_root.spike2.removeMovieClip();
_root.spike3.removeMovieClip();
_root.spike4.removeMovieClip();
_root.spike5.removeMovieClip();
bXlnYW1lX25hbWVfdmFyaWFibGU = name2;
bXlnYW1lX3Njb3JlX3ZhcmlhYmxl = _root.timer3;
__rankz_send__("Mjc3NmolZSVhJW4lcw==", "dmVVWXJmZHg=", bXlnYW1lX25hbWVfdmFyaWFibGU, bXlnYW1lX3Njb3JlX3ZhcmlhYmxl);
Symbol 10 MovieClip [spike] Frame 1
stop();
acceleration = 10;
sphealth = 100;
newpos = function () {
ranx = Math.round(Math.random() * 550);
rany = Math.round(Math.random() * 400);
};
newpos();
this.onEnterFrame = function () {
this._x = this._x + ((ranx - this._x) / acceleration);
this._y = this._y + ((rany - this._y) / acceleration);
if ((Math.round(this._x) == ranx) || (Math.round(this._y) == rany)) {
newpos();
}
if (this.hitTest(_root.chassis._x, _root.chassis._y, true)) {
_root.health = _root.health - 0.5;
}
if (this.hitTest(_root.chassis._x - (_root.chassis._width / 2), _root.chassis._y, true)) {
_root.health = _root.health - 0.5;
}
if (this.hitTest(_root.chassis._x + (_root.chassis._width / 2), _root.chassis._y, true)) {
_root.health = _root.health - 0.5;
}
if (this.hitTest(_root.chassis._x, _root.chassis._y + (_root.chassis._height / 2), true)) {
_root.health = _root.health - 0.5;
}
if (this.hitTest(_root.chassis._x, _root.chassis._y - (_root.chassis._height / 2), true)) {
_root.health = _root.health - 0.5;
}
if (sphealth <= 0) {
this.gotoAndStop(13);
}
spbar._width = sphealth / 2;
};
Symbol 10 MovieClip [spike] Frame 13
stop();
_root.spikenum = _root.spikenum + 1;
_root.timer = _root.timer + 7000;
this.removeMovieClip();
Symbol 32 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndPlay ("loaded");
}
_root.percent = _root.PercentLoaded;
Symbol 32 MovieClip Frame 2
gotoAndPlay (1);
Symbol 32 MovieClip Frame 30
_root.play();
Symbol 152 MovieClip [__Packages.ab3.rankz.Armor_Bot_30_En_AS1] Frame 0
class ab3.rankz.Armor_Bot_30_En_AS1 extends Object
{
static var _CharsReverseLookup;
var _Armor_Bot_30_En_AS1Str, _Armor_Bot_30_En_AS1Count;
function Armor_Bot_30_En_AS1 () {
super();
}
static function Encode(str) {
var _local1 = new ab3.rankz.Armor_Bot_30_En_AS1();
return(_local1.encodeArmor_Bot_30_En_AS1(str));
}
static function Decode(str) {
var _local1 = new ab3.rankz.Armor_Bot_30_En_AS1();
return(_local1.decodeArmor_Bot_30_En_AS1(str));
}
static function StringReplaceAll(source, find, replacement) {
return(source.split(find).join(replacement));
}
static function InitReverseChars() {
_CharsReverseLookup = new Array();
var _local1 = 0;
while (_local1 < _Chars.length) {
_CharsReverseLookup[_Chars[_local1]] = _local1;
_local1++;
}
return(true);
}
static function UrlDecode(str) {
str = StringReplaceAll(str, "\\", " ");
str = unescape(str);
return(str);
}
static function UrlEncode(str) {
str = escape(str);
str = StringReplaceAll(str, "\\", "%2B");
str = StringReplaceAll(str, "%20", "+");
return(str);
}
function setArmor_Bot_30_En_AS1Str(str) {
_Armor_Bot_30_En_AS1Str = str;
_Armor_Bot_30_En_AS1Count = 0;
}
function readArmor_Bot_30_En_AS1() {
if (!_Armor_Bot_30_En_AS1Str) {
return(_EndOfInput);
}
if (_Armor_Bot_30_En_AS1Count >= _Armor_Bot_30_En_AS1Str.length) {
return(_EndOfInput);
}
var _local2 = _Armor_Bot_30_En_AS1Str.charCodeAt(_Armor_Bot_30_En_AS1Count) & 255;
_Armor_Bot_30_En_AS1Count++;
return(_local2);
}
function encodeArmor_Bot_30_En_AS1(str) {
setArmor_Bot_30_En_AS1Str(str);
var _local3 = "";
var _local2 = new Array(3);
var _local5 = 0;
var _local4 = false;
while ((!_local4) && (((_local2[0] = readArmor_Bot_30_En_AS1())) != _EndOfInput)) {
_local2[1] = readArmor_Bot_30_En_AS1();
_local2[2] = readArmor_Bot_30_En_AS1();
_local3 = _local3 + _Chars[_local2[0] >> 2];
if (_local2[1] != _EndOfInput) {
_local3 = _local3 + _Chars[((_local2[0] << 4) & 48) | (_local2[1] >> 4)];
if (_local2[2] != _EndOfInput) {
_local3 = _local3 + _Chars[((_local2[1] << 2) & 60) | (_local2[2] >> 6)];
_local3 = _local3 + _Chars[_local2[2] & 63];
} else {
_local3 = _local3 + _Chars[(_local2[1] << 2) & 60];
_local3 = _local3 + "=";
_local4 = true;
}
} else {
_local3 = _local3 + _Chars[(_local2[0] << 4) & 48];
_local3 = _local3 + "=";
_local3 = _local3 + "=";
_local4 = true;
}
_local5 = _local5 + 4;
if (_local5 >= 76) {
_local3 = _local3 + newline;
_local5 = 0;
}
}
return(_local3);
}
function readReverseArmor_Bot_30_En_AS1() {
if (!_Armor_Bot_30_En_AS1Str) {
return(_EndOfInput);
}
while (true) {
if (_Armor_Bot_30_En_AS1Count >= _Armor_Bot_30_En_AS1Str.length) {
return(_EndOfInput);
}
var _local2 = _Armor_Bot_30_En_AS1Str.charAt(_Armor_Bot_30_En_AS1Count);
_Armor_Bot_30_En_AS1Count++;
if (_CharsReverseLookup[_local2]) {
return(_CharsReverseLookup[_local2]);
}
if (_local2 == "A") {
return(0);
}
}
}
function ntos(n) {
var _local1 = n.toString(16);
if (_local1.length == 1) {
_local1 = "0" + _local1;
}
_local1 = "%" + _local1;
return(unescape(_local1));
}
function decodeArmor_Bot_30_En_AS1(str) {
setArmor_Bot_30_En_AS1Str(str);
var _local3 = "";
var _local2 = new Array(4);
var _local4 = false;
while (((!_local4) && (((_local2[0] = readReverseArmor_Bot_30_En_AS1())) != _EndOfInput)) && (((_local2[1] = readReverseArmor_Bot_30_En_AS1())) != _EndOfInput)) {
_local2[2] = readReverseArmor_Bot_30_En_AS1();
_local2[3] = readReverseArmor_Bot_30_En_AS1();
_local3 = _local3 + ntos(((_local2[0] << 2) & 255) | (_local2[1] >> 4));
if (_local2[2] != _EndOfInput) {
_local3 = _local3 + ntos(((_local2[1] << 4) & 255) | (_local2[2] >> 2));
if (_local2[3] != _EndOfInput) {
_local3 = _local3 + ntos(((_local2[2] << 6) & 255) | _local2[3]);
} else {
_local4 = true;
}
} else {
_local4 = true;
}
}
return(_local3);
}
function toHex(n) {
var _local4 = "";
var _local3 = true;
var _local1 = 32;
while (_local1 > 0) {
_local1 = _local1 - 4;
var _local2 = (n >> _local1) & 15;
if ((!_local3) || (_local2 != 0)) {
_local3 = false;
_local4 = _local4 + _Digits[_local2];
}
}
return(((_local4 == "") ? "0" : (_local4)));
}
function pad(str, len, pad) {
var _local2 = str;
var _local1 = str.length;
while (_local1 < len) {
_local2 = pad + _local2;
_local1++;
}
return(_local2);
}
function encodeHex(str) {
var _local4 = "";
var _local2 = 0;
while (_local2 < str.length) {
_local4 = _local4 + pad(toHex(str.charCodeAt(_local2) & 255), 2, "0");
_local2++;
}
return(_local4);
}
function decodeHex(str) {
var _local5 = "";
var _local3 = "";
var _local2 = 0;
while (_local2 < str.length) {
_local3 = _local3 + str.charAt(_local2);
if (_local3.length == 2) {
_local5 = _local5 + ntos(parseInt("0x" + _local3));
_local3 = "";
}
_local2++;
}
return(_local5);
}
static var _EndOfInput = -1;
static var _Chars = new Array("A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "+", "/");
static var _CharsReverseLookupInited = InitReverseChars();
static var _Digits = new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f");
}
Symbol 41 MovieClip Frame 60
_root.play();
Symbol 45 MovieClip Frame 1
stop();
Symbol 45 MovieClip Frame 15
_root.gotoAndStop("surgameover");
Symbol 48 MovieClip Frame 15
stop();
Instance of Symbol 47 MovieClip in Symbol 48 MovieClip Frame 15
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
this._rotation = myDegrees + 90;
}
Symbol 55 Button
on (press) {
_root.sc.play();
}
Symbol 57 Button
on (press) {
play();
}
Symbol 59 Button
on (press) {
_root.a.play();
}
Symbol 61 Button
on (press) {
getURL ("http://www.cl-17.com/", _blank);
}
Symbol 63 Button
on (press) {
getURL ("http://rankz.armorbot.com/rubbertank/", _blank);
}
Symbol 67 Button
on (press) {
nextFrame();
}
Symbol 69 Button
on (press) {
prevFrame();
}
Symbol 83 MovieClip Frame 1
stop();
Symbol 83 MovieClip Frame 2
stop();
Symbol 83 MovieClip Frame 3
stop();
Symbol 83 MovieClip Frame 4
stop();
Symbol 83 MovieClip Frame 5
stop();
var savefile = SharedObject.getLocal("file1");
savefile.data.a5 = true;
savefile.flush();
Symbol 85 Button
on (press) {
play();
}
Symbol 86 Button
on (press) {
_root.gotoAndStop("sur");
}
Symbol 88 MovieClip Frame 1
stop();
Symbol 88 MovieClip Frame 10
stop();
Symbol 98 MovieClip Frame 1
stop();
Symbol 98 MovieClip Frame 2
stop();
Instance of Symbol 98 MovieClip in Symbol 100 MovieClip Frame 1
onClipEvent (enterFrame) {
saveinfo = SharedObject.getLocal("file1");
ach1 = saveinfo.data.a1;
if (ach1 == true) {
this.gotoAndStop(2);
}
}
Instance of Symbol 98 MovieClip in Symbol 100 MovieClip Frame 1
onClipEvent (enterFrame) {
saveinfo = SharedObject.getLocal("file1");
ach2 = saveinfo.data.a2;
if (ach2 == true) {
this.gotoAndStop(2);
}
}
Instance of Symbol 98 MovieClip in Symbol 100 MovieClip Frame 1
onClipEvent (enterFrame) {
saveinfo = SharedObject.getLocal("file1");
ach3 = saveinfo.data.a3;
if (ach3 == true) {
this.gotoAndStop(2);
}
}
Instance of Symbol 98 MovieClip in Symbol 100 MovieClip Frame 1
onClipEvent (enterFrame) {
saveinfo = SharedObject.getLocal("file1");
ach4 = saveinfo.data.a4;
if (ach4 == true) {
this.gotoAndStop(2);
}
}
Instance of Symbol 98 MovieClip in Symbol 100 MovieClip Frame 1
onClipEvent (enterFrame) {
saveinfo = SharedObject.getLocal("file1");
ach5 = saveinfo.data.a5;
if (ach5 == true) {
this.gotoAndStop(2);
}
}
Instance of Symbol 98 MovieClip in Symbol 100 MovieClip Frame 1
onClipEvent (enterFrame) {
saveinfo = SharedObject.getLocal("file1");
ach1 = saveinfo.data.a1;
ach2 = saveinfo.data.a2;
ach3 = saveinfo.data.a3;
ach4 = saveinfo.data.a4;
ach5 = saveinfo.data.a5;
if (((((ach1 == true) && (ach2 == true)) && (ach3 == true)) && (ach4 == true)) && (ach5 == true)) {
this.gotoAndStop(2);
}
}
Symbol 101 MovieClip Frame 1
stop();
Symbol 101 MovieClip Frame 20
stop();
Symbol 103 MovieClip Frame 1
stop();
Symbol 103 MovieClip Frame 7
_root.gotoAndStop("sur");
Symbol 106 Button
on (press) {
saveinfo = SharedObject.getLocal("file1");
saveinfo.clear();
saveinfo.flush();
}
Symbol 109 Button
on (press) {
_root._quality = "low";
}
Symbol 114 Button
on (press) {
_root._quality = "high";
}
Symbol 124 MovieClip Frame 1
stop();
Symbol 124 MovieClip Frame 9
stop();
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Instance of Symbol 124 MovieClip in Symbol 125 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.chassis.hitTest(this)) {
_root.chassis.play();
this.play();
_root.health = 0;
}
}
Symbol 127 MovieClip Frame 7
_root.play();
Symbol 129 MovieClip Frame 1
stop();
Symbol 129 MovieClip Frame 21
this.removeMovieClip();
Symbol 132 MovieClip Frame 35
stop();
Symbol 139 Button
on (press) {
gotoAndStop ("sur");
_root.pl.stop();
}
Symbol 141 Button
on (press) {
_root.play();
}
Symbol 145 Button
on (press) {
gotoAndStop ("menu");
_root.prsound.stop();
}
Symbol 147 MovieClip Frame 1
stop();
Symbol 147 MovieClip Frame 2
stop();
Symbol 151 Button
on (press) {
gotoAndStop ("menu");
}