Frame 1
function __com_mochibot__(swfid, mc, lv, trk) {
var x;
var g;
var s;
var fv;
var sb;
var u;
var res;
var mb;
var mbc;
mb = "__mochibot__";
mbc = "mochibot.com";
g = (_global ? (_global) : (_level0._root));
if (g[mb + swfid]) {
return(g[mb + swfid]);
}
s = System.security;
x = mc._root.getSWFVersion;
fv = (x ? (mc.getSWFVersion()) : ((_global ? 6 : 5)));
if (!s) {
s = {};
}
sb = s.sandboxType;
if (sb == "localWithFile") {
return(null);
}
x = s.allowDomain;
if (x) {
s.allowDomain(mbc);
}
x = s.allowInsecureDomain;
if (x) {
s.allowInsecureDomain(mbc);
}
u = (((((((((((("http://" + mbc) + "/my/core.swf?mv=7&fv=") + fv) + "&v=") + escape(getVersion())) + "&swfid=") + escape(swfid)) + "&l=") + lv) + "&f=") + mc) + (sb ? ("&sb=" + sb) : "")) + (trk ? "&t=1" : "");
lv = ((fv > 6) ? (mc.getNextHighestDepth()) : ((g[mb + "level"] ? (g[mb + "level"] + 1) : (lv))));
g[mb + "level"] = lv;
if (fv == 5) {
res = "_level" + lv;
if (!eval (res)) {
loadMovieNum (u, lv);
}
} else {
res = mc.createEmptyMovieClip(mb + swfid, lv);
res.loadMovie(u);
}
return(res);
}
__com_mochibot__("42ef4f76", this, 10301, true);
function itemHandler0(obj, item) {
getURL ("http://st1k.newgrounds.com", _blank);
myMenu.customItems[0].enabled = true;
myMenu.customItems[1].enabled = true;
}
function itemHandler1(obj, item) {
getURL ("http://el-presidente.newgrounds.com", _blank);
myMenu.customItems[0].enabled = true;
myMenu.customItems[1].enabled = true;
}
var myMenu = new ContextMenu();
myMenu.hideBuiltInItems();
myMenu.customItems.push(new ContextMenuItem("St1k", itemHandler0));
myMenu.customItems.push(new ContextMenuItem("El-Presidente", itemHandler1));
myMenu.customItems[1].separatorBefore = true;
_root.menu = myMenu;
Frame 2
stop();
Frame 3
stop();
Instance of Symbol 149 MovieClip in Frame 3
on (release) {
_currentframe = (_currentframe + 1);
this.gotoAndPlay(_currentframe + 1);
}
Instance of Symbol 154 MovieClip in Frame 4
on (rollOver) {
this.gotoAndPlay(2);
}
on (rollOut) {
this.gotoAndPlay(11);
}
on (release) {
_root.gotoAndStop("menu");
}
Frame 5
function tap(keytap, keycode) {
if (keytap == 1) {
if (Key.isDown(keycode)) {
return(2);
}
return(1);
}
if (keytap == 2) {
return(3);
}
if (!Key.isDown(keycode)) {
return(1);
}
if (keytap == 3) {
return(3);
}
}
stop();
ukeytap = 1;
ukeycode = 38;
lkeytap = 1;
lkeycode = 37;
rkeytap = 1;
rkeycode = 39;
dkeytap = 1;
dkeycode = 40;
scrollSpeed = 0;
yscrollSpeed = 0;
hero.yspd = 0;
hero.xspd = 0;
hero.grav = 0.5;
hero.doubleJump = 1;
hero.gotoAndStop(1);
_root.stillplay = true;
b = 0;
amount = 30;
timer = 60;
second = 40;
_root.score = 0;
onEnterFrame = function () {
if (timer < 5) {
amount = 6;
} else if (timer < 10) {
amount = 10;
} else if (timer < 20) {
amount = 15;
} else if (timer < 30) {
amount = 22;
} else if (timer < 40) {
amount = 34;
} else if (time < 55) {
amount = 38;
} else {
amount = 40;
}
_root.timertxt.text = "Time: " + timer;
_root.timertxt._x = _root.vcam._x - 275;
_root.timertxt._y = _root.vcam._y - 205;
_root.scoretxt.text = "Score: " + _root.score;
_root.scoretxt._x = _root.vcam._x - 275;
_root.scoretxt._y = _root.vcam._y - 183;
second = second - 1;
if (random(amount) == 1) {
_root.corn.duplicateMovieClip("corn" + b, _root.getNextHighestDepth());
_root["corn" + b]._x = (_root.hero._x + random(400)) - 200;
_root["corn" + b]._y = -40;
_root["corn" + b]._rotation = random(360);
_root["corn" + b]._xscale = _root["corn" + b]._xscale * ((random(3) + 5) / 10);
_root["corn" + b]._yscale = _root["corn" + b]._xscale;
_root["corn" + b].b = b;
b = b + 1;
}
if (second == 0) {
second = 40;
timer = timer - 1;
}
if (timer < 0) {
timer = 0;
_root.gotoAndStop("gameover");
_root.stillplay = false;
}
ukeytap = tap(ukeytap, ukeycode);
lkeytap = tap(lkeytap, lkeycode);
rkeytap = tap(rkeytap, rkeycode);
dkeytap = tap(dkeytap, dkeycode);
};
hero.onEnterFrame = function () {
this._x = this._x + this.xspd;
this._y = this._y + this.yspd;
this.yspd = this.yspd + this.grav;
this.xspd = this.xspd - (((this.xspd > 0) * 0.25) - ((this.xspd < 0) * 0.25));
this._xscale = (100 * Math.abs(this.xspd)) / this.xspd;
if (ground.hitTest(this._x, this._y, true)) {
while (ground.hitTest(this._x, this._y - 1, true)) {
this._y--;
}
this.yspd = 0;
this.doubleJump = 1;
if (Key.isDown(37)) {
if (this.xspd > -6) {
this.xspd = this.xspd + -2;
}
} else if (Key.isDown(39)) {
if (this.xspd < 6) {
this.xspd = this.xspd + 2;
}
}
if (ukeytap == 2) {
if (_root.ground.hitTest(_x, _y + 5, true)) {
} else {
this.gotoAndStop(3);
}
this.yspd = this.yspd - 10;
}
if (hero.blow._currentframe < 2) {
if (dkeytap == 2) {
hero.blow.gotoAndPlay(2);
}
}
while (ground.hitTest(this._x + (this._width / 3), this._y - ((this._height * 3) / 4), true) || (ground.hitTest(this._x + (this._width / 3), this._y - (this._height / 4), true))) {
this._x--;
this.xspd = 0;
}
while (ground.hitTest(this._x - (this._width / 2), this._y - ((this._height * 3) / 4), true) || (ground.hitTest(this._x - (this._width / 2), this._y - (this._height / 4), true))) {
this._x++;
this.xspd = 0;
}
if (Math.abs(this.xspd) > 2) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
if (ground.hitTest(this._x, this._y + 30, true)) {
hero.gotoAndStop(2);
} else {
hero.gotoAndStop(3);
}
if (Key.isDown(37)) {
if (this.xspd >= -5) {
this.xspd = this.xspd - 0.5;
}
} else if (Key.isDown(39)) {
if (this.xspd <= 5) {
this.xspd = this.xspd + 0.5;
}
}
if ((ukeytap == 2) && (this.doubleJump == 1)) {
if (this.yspd < 0) {
this.yspd = this.yspd - 7;
} else {
this.yspd = -7;
}
this.doubleJump++;
}
if (ground.hitTest(this._x - (this._width / 3), this._y - ((this._height * 3) / 4), true) || (ground.hitTest(this._x - (this._width / 3), this._y - (this._height / 4), true))) {
while (ground.hitTest(this._x - (this._width / 3), this._y - ((this._height * 3) / 4), true) || (ground.hitTest(this._x - (this._width / 3), this._y - (this._height / 4), true))) {
this._x++;
}
this.xspd = 0;
hero.gotoAndStop(4);
} else if (ground.hitTest(this._x + (this._width / 3), this._y - ((this._height * 3) / 4), true) || (ground.hitTest(this._x + (this._width / 3), this._y - (this._height / 4), true))) {
while (ground.hitTest(this._x + (this._width / 3), this._y - ((this._height * 3) / 4), true) || (ground.hitTest(this._x + (this._width / 3), this._y - (this._height / 4), true))) {
this._x--;
}
this.xspd = 0;
hero.gotoAndStop(4);
}
}
if (ground.hitTest(this._x, (this._y - this._height) + 5, true)) {
while (ground.hitTest(this._x, (this._y - this._height) + 5, true)) {
this._y++;
}
this.yspd = 0;
}
_root.scoretxt.swapDepths(_root.getNextHighestDepth());
_root.timertxt.swapDepths(_root.getNextHighestDepth());
};
Instance of Symbol 182 MovieClip "corn" in Frame 5
onClipEvent (load) {
a = 0;
grav = 0;
randspd = (random(4) + 2) / 10;
_rotation = (_rotation + randspd);
xspd = random(20);
}
onClipEvent (enterFrame) {
if (this._name == "corn") {
this._x = 1000;
this._y = 1000;
} else {
a = a + 1;
if (a > 60) {
if (Math.abs(this._x - _root.hero._x) > 400) {
this.removeMovieClip();
}
}
this._x = this._x + xspd;
xspd = xspd * 0.93;
_rotation = (_rotation + xspd);
if (xspd < 0) {
xspd = 0;
}
this._y = this._y + grav;
if (_root.ground.hitTest(_x, _y, true)) {
grav = Math.round(Math.abs(grav) * -0.5);
} else {
grav = grav + randspd;
}
if (_root.hero.blow._currentframe > 5) {
if (_root.hero.blow._currentframe < 8) {
if (this.hitTest(_root.herothing)) {
_root.cornblow.duplicateMovieClip("cornblow" + b, _root.getNextHighestDepth());
_root["cornblow" + b]._x = this._x;
_root["cornblow" + b]._y = this._y;
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
}
if (_root.stillplay == false) {
this.removeMovieClip();
}
}
}
Instance of Symbol 184 MovieClip "herothing" in Frame 5
onClipEvent (enterFrame) {
this._y = _root.hero._y;
if (_root.hero._xscale > 0) {
this._x = _root.hero._x + 60;
} else {
this._x = _root.hero._x - 60;
}
this._visible = false;
}
Instance of Symbol 11 MovieClip "vcam" in Frame 5
onClipEvent (load) {
_x = _root.hero._x;
_y = (_root.hero._y - 50);
}
onClipEvent (enterFrame) {
if (_root.hero.xspd > 0) {
if ((this._x - _root.hero._x) < -40) {
this._x = this._x + _root.hero.xspd;
}
}
if (_root.hero.xspd < 0) {
if ((this._x - _root.hero._x) > 40) {
this._x = this._x + _root.hero.xspd;
}
}
}
Frame 6
stop();
namee = "Enter Name";
timer = 60;
Instance of Symbol 208 MovieClip in Frame 6
on (rollOver) {
this.gotoAndPlay(2);
}
on (rollOut) {
this.gotoAndPlay(11);
}
on (press) {
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");
}
bXlnYW1lX25hbWVfdmFyaWFibGU = _root.namee;
bXlnYW1lX3Njb3JlX3ZhcmlhYmxl = _root.score;
__rankz_send__("MTkyOGolZSVhJW4lcw==", "Z1NMSE1LdU4=", bXlnYW1lX25hbWVfdmFyaWFibGU, bXlnYW1lX3Njb3JlX3ZhcmlhYmxl);
getURL ("http://rankz.armorbot.com/turkeyfeeder/", _blank);
_root.gotoAndStop(3);
}
Instance of Symbol 212 MovieClip in Frame 6
on (rollOver) {
this.gotoAndPlay(2);
}
on (rollOut) {
this.gotoAndPlay(11);
}
on (press) {
_root.gotoAndStop(3);
}
Instance of Symbol 86 MovieClip in Frame 6
on (rollOver) {
this.gotoAndPlay(2);
}
on (rollOut) {
this.gotoAndPlay(11);
}
on (release) {
_root.getURL("http://www.armorgames.com");
}
Instance of Symbol 2 MovieClip in Symbol 3 MovieClip [cornblow] Frame 1
onClipEvent (load) {
grav = 0;
yspeed = random(10) - 5;
xspeed = random(10) - 5;
_alpha = 100;
activategravity = false;
timer = 8;
}
onClipEvent (enterFrame) {
if (_parent._name == "cornblow") {
this._x = 1000;
this._y = 1000;
} else {
_rotation = (_rotation + 1);
timer--;
_alpha = (_alpha - 1);
if (timer < 0) {
activategravity = true;
}
if (activategravity == true) {
grav--;
_y = (_y - grav);
}
this._x = this._x + xspeed;
this._y = this._y + yspeed;
if (_alpha < 0) {
_parent.swapDepths(_root.getNextHighestDepth());
_parent.removeMovieClip();
this.swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
}
Instance of Symbol 2 MovieClip in Symbol 3 MovieClip [cornblow] Frame 1
onClipEvent (load) {
grav = 0;
yspeed = random(10) - 5;
xspeed = random(10) - 5;
_alpha = 100;
activategravity = false;
timer = 8;
}
onClipEvent (enterFrame) {
if (_parent._name == "cornblow") {
this._x = 1000;
this._y = 1000;
} else {
_rotation = (_rotation + 1);
timer--;
_alpha = (_alpha - 1);
if (timer < 0) {
activategravity = true;
}
if (activategravity == true) {
grav--;
_y = (_y - grav);
}
this._x = this._x + xspeed;
this._y = this._y + yspeed;
if (_alpha < 0) {
_parent.swapDepths(_root.getNextHighestDepth());
_parent.removeMovieClip();
this.swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
}
Instance of Symbol 2 MovieClip in Symbol 3 MovieClip [cornblow] Frame 1
onClipEvent (load) {
grav = 0;
yspeed = random(10) - 5;
xspeed = random(10) - 5;
_alpha = 100;
activategravity = false;
timer = 8;
}
onClipEvent (enterFrame) {
if (_parent._name == "cornblow") {
this._x = 1000;
this._y = 1000;
} else {
_rotation = (_rotation + 1);
timer--;
_alpha = (_alpha - 1);
if (timer < 0) {
activategravity = true;
}
if (activategravity == true) {
grav--;
_y = (_y - grav);
}
this._x = this._x + xspeed;
this._y = this._y + yspeed;
if (_alpha < 0) {
_parent.swapDepths(_root.getNextHighestDepth());
_parent.removeMovieClip();
this.swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
}
Instance of Symbol 2 MovieClip in Symbol 3 MovieClip [cornblow] Frame 1
onClipEvent (load) {
grav = 0;
yspeed = random(10) - 5;
xspeed = random(10) - 5;
_alpha = 100;
activategravity = false;
timer = 8;
}
onClipEvent (enterFrame) {
if (_parent._name == "cornblow") {
this._x = 1000;
this._y = 1000;
} else {
_rotation = (_rotation + 1);
timer--;
_alpha = (_alpha - 1);
if (timer < 0) {
activategravity = true;
}
if (activategravity == true) {
grav--;
_y = (_y - grav);
}
this._x = this._x + xspeed;
this._y = this._y + yspeed;
if (_alpha < 0) {
_parent.swapDepths(_root.getNextHighestDepth());
_parent.removeMovieClip();
this.swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
}
Instance of Symbol 2 MovieClip in Symbol 3 MovieClip [cornblow] Frame 1
onClipEvent (load) {
grav = 0;
yspeed = random(10) - 5;
xspeed = random(10) - 5;
_alpha = 100;
activategravity = false;
timer = 8;
}
onClipEvent (enterFrame) {
if (_parent._name == "cornblow") {
this._x = 1000;
this._y = 1000;
} else {
_rotation = (_rotation + 1);
timer--;
_alpha = (_alpha - 1);
if (timer < 0) {
activategravity = true;
}
if (activategravity == true) {
grav--;
_y = (_y - grav);
}
this._x = this._x + xspeed;
this._y = this._y + yspeed;
if (_alpha < 0) {
_parent.swapDepths(_root.getNextHighestDepth());
_parent.removeMovieClip();
this.swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
}
Instance of Symbol 2 MovieClip in Symbol 3 MovieClip [cornblow] Frame 1
onClipEvent (load) {
grav = 0;
yspeed = random(10) - 5;
xspeed = random(10) - 5;
_alpha = 100;
activategravity = false;
timer = 8;
}
onClipEvent (enterFrame) {
if (_parent._name == "cornblow") {
this._x = 1000;
this._y = 1000;
} else {
_rotation = (_rotation + 1);
timer--;
_alpha = (_alpha - 1);
if (timer < 0) {
activategravity = true;
}
if (activategravity == true) {
grav--;
_y = (_y - grav);
}
this._x = this._x + xspeed;
this._y = this._y + yspeed;
if (_alpha < 0) {
_parent.swapDepths(_root.getNextHighestDepth());
_parent.removeMovieClip();
this.swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
}
Instance of Symbol 2 MovieClip in Symbol 3 MovieClip [cornblow] Frame 1
onClipEvent (load) {
grav = 0;
yspeed = random(10) - 5;
xspeed = random(10) - 5;
_alpha = 100;
activategravity = false;
timer = 8;
}
onClipEvent (enterFrame) {
if (_parent._name == "cornblow") {
this._x = 1000;
this._y = 1000;
} else {
_rotation = (_rotation + 1);
timer--;
_alpha = (_alpha - 1);
if (timer < 0) {
activategravity = true;
}
if (activategravity == true) {
grav--;
_y = (_y - grav);
}
this._x = this._x + xspeed;
this._y = this._y + yspeed;
if (_alpha < 0) {
_parent.swapDepths(_root.getNextHighestDepth());
_parent.removeMovieClip();
this.swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
}
Symbol 11 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 217 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 29 Button
on (release) {
getURL ("http://www.armorgames.com", "blank");
}
Symbol 36 MovieClip Frame 136
_root.play();
Symbol 52 MovieClip Frame 1
stop();
Symbol 71 MovieClip Frame 1
stop();
Symbol 78 MovieClip Frame 1
stop();
Symbol 78 MovieClip Frame 10
stop();
Symbol 82 MovieClip Frame 1
stop();
Symbol 82 MovieClip Frame 10
stop();
Symbol 86 MovieClip Frame 1
stop();
Symbol 86 MovieClip Frame 10
stop();
Instance of Symbol 78 MovieClip in Symbol 87 MovieClip Frame 1
on (rollOver) {
this.gotoAndPlay(2);
}
on (rollOut) {
this.gotoAndPlay(11);
}
on (release) {
_root.gotoAndStop("game");
}
Instance of Symbol 82 MovieClip in Symbol 87 MovieClip Frame 1
on (rollOver) {
this.gotoAndPlay(2);
}
on (rollOut) {
this.gotoAndPlay(11);
}
on (release) {
_root.gotoAndStop("rules");
}
Instance of Symbol 86 MovieClip in Symbol 87 MovieClip Frame 1
on (rollOver) {
this.gotoAndPlay(2);
}
on (rollOut) {
this.gotoAndPlay(11);
}
on (release) {
_root.getURL("http://www.armorgames.com");
}
Symbol 87 MovieClip Frame 50
stop();
Instance of Symbol 96 MovieClip in Symbol 144 MovieClip Frame 1
on (release) {
_root.getURL("http://www.armorgames.com");
}
Instance of Symbol 143 MovieClip in Symbol 144 MovieClip Frame 1
on (release) {
_root.getURL("http://www.newgrounds.com/collection/thanksgiving");
}
Symbol 145 MovieClip Frame 25
stop();
Symbol 149 MovieClip Frame 1
stop();
Symbol 149 MovieClip Frame 2
stop();
Symbol 154 MovieClip Frame 1
stop();
Symbol 154 MovieClip Frame 10
stop();
Symbol 167 MovieClip Frame 50
stop();
Symbol 189 MovieClip Frame 1
stop();
Symbol 208 MovieClip Frame 1
stop();
Symbol 208 MovieClip Frame 10
stop();
Symbol 212 MovieClip Frame 1
stop();
Symbol 212 MovieClip Frame 10
stop();