Frame 1
b1 = _root.getBytesLoaded();
b2 = _root.getBytesTotal();
tgPrel = 1 + Math.round((b1 * 100) / b2);
prel.gotoAndStop(tgPrel);
if (b1 >= b2) {
gotoAndPlay ("intro");
}
Frame 4
if (Math.round(b1 / 1024) <= 35) {
gotoAndPlay ("loop1");
}
Frame 5
_root.b1 = _root.getBytesLoaded();
_root.b2 = _root.getBytesTotal();
_root.tgPrel = 1 + Math.round((b1 * 100) / b2);
_root.tg = _root.tgPrel - 2;
trace("_root.tg: " + _root.tg);
if (_root.tg <= 9) {
_root.procent = "0" + _root.tg;
} else {
_root.procent = _root.tg;
}
_root.prel.gotoAndStop(_root.tgPrel);
Frame 9
if (Math.round(b1 / 1024) <= 100) {
gotoAndPlay ("loop2");
}
Frame 11
_root.b1 = _root.getBytesLoaded();
_root.b2 = _root.getBytesTotal();
_root.tgPrel = 1 + Math.round((b1 * 100) / b2);
_root.tg = _root.tgPrel - 2;
trace("_root.TG: " + tgPrel);
if (_root.tgPrel <= 9) {
_root.procent = "0" + tg;
trace(_root.procent);
} else {
_root.procent = tg;
}
_root.prel.gotoAndStop(_root.tgPrel);
Frame 14
if (b1 < b2) {
gotoAndPlay ("loop3");
}
Frame 15
_root.procent = "--";
prel.gotoAndStop(100);
Frame 166
_root.locatie = _url;
if (_root.locatie.indexOf("www.freeonlinegames.com", 0) != -1) {
_root.play();
} else {
_root.gotoAndPlay("loop1");
}
Frame 174
_root.sunet = true;
_root.locatie = _url;
if (_root.locatie.indexOf("www.freeonlinegames.com", 0) != -1) {
_root.play();
} else {
_root.gotoAndPlay("loop1");
}
Frame 175
function Point(xx, yy) {
this.X = xx;
this.Y = yy;
}
function Line(x1, y1, x2, y2) {
this.beg = new Point(x1, y1);
this.end = new Point(x2, y2);
}
function Wall() {
}
function Wall_h() {
}
function Wall_v() {
}
function znak(num) {
if (znak < 0) {
return(-1);
}
return(1);
}
function setSound() {
_root.shotSound = new Sound(_root);
_root.shotSound.attachSound("shot.wav");
_root.shotSound.stop();
_root.lawSound = new Sound(_root);
_root.lawSound.attachSound("law.wav");
_root.lawSound.stop();
_root.shotgunSound = new Sound(_root);
_root.shotgunSound.attachSound("shotgun.wav");
_root.shotgunSound.stop();
_root.subbarrelSound = new Sound(_root);
_root.subbarrelSound.attachSound("subbarrel.wav");
_root.subbarrelSound.stop();
_root.dieSound = new Sound(_root);
_root.dieSound.attachSound("die.wav");
_root.dieSound.stop();
}
function Man() {
}
function Soldier() {
this.constr();
this.team = null;
this.weapon = null;
this.min_kick = _global.DIFFICULTLY;
this.kick = this.min_kick;
this.attacking = null;
this.gox = this._x;
this.goy = this._y;
this.patrolX = null;
this.patrolY = null;
this.lastSeenPlayerX = null;
this.lastSeenPlayerY = null;
}
function Player() {
this.constr();
this.team = 1;
this.currAction = null;
this.weapon = this.weap_3;
this.kurok = false;
this.min_kick = 0;
this.ammo = 5;
_root.addYou();
}
function Weapon() {
this._type = null;
this.link = null;
this.plus = null;
this.fire_rate = null;
this.damage = null;
this.speed = null;
this.ammo = null;
this.treat = null;
this.melee = null;
this.description = null;
}
function Bow() {
this._type = "bow";
this.link = "Bow";
this.plus = 1;
this.fire_rate = 22;
this.damage = 10;
this.speed = 15;
this.radius = 1000;
this.treat = 1;
this.melee = false;
this.description = "Hunter's bow";
}
function Sword() {
this._type = "sword";
this.link = "Sword";
this.plus = 2;
this.fire_rate = 15;
this.damage = 15;
this.speed = 15;
this.radius = 30;
this.treat = 0;
this.melee = true;
this.description = "Iron Sword";
}
function GoodBow() {
this._type = "bow";
this.link = "GoodBow";
this.plus = 1;
this.fire_rate = 22;
this.damage = 20;
this.speed = 15;
this.radius = 1000;
this.treat = 1;
this.melee = false;
this.description = "Battle bow";
}
function GoodSword() {
this._type = "sword";
this.link = "GoodSword";
this.plus = 2;
this.fire_rate = 15;
this.damage = 30;
this.speed = 15;
this.radius = 30;
this.treat = 0;
this.melee = true;
this.description = "Steel Sword";
}
function Spear() {
this._type = "spear";
this.link = "Spear";
this.plus = 2;
this.fire_rate = 25;
this.damage = 30;
this.speed = 15;
this.radius = 160;
this.treat = 0;
this.melee = true;
this.description = "Army Spear";
}
function MayorSword() {
this._type = "sword";
this.link = "MayorSword";
this.plus = 2;
this.fire_rate = 15;
this.damage = 90;
this.speed = 15;
this.radius = 40;
this.treat = 0;
this.melee = true;
this.description = "Mayor's Sword";
}
function Crossbow() {
this._type = "crossbow";
this.link = "Crossbow";
this.plus = 3;
this.fire_rate = 35;
this.damage = 80;
this.speed = 50;
this.radius = 1000;
this.treat = 1;
this.melee = false;
this.description = "Heavy Crossbow";
}
function Lance() {
this._type = "spear";
this.link = "Lance";
this.plus = 2;
this.fire_rate = 25;
this.damage = 50;
this.speed = 15;
this.radius = 160;
this.treat = 0;
this.melee = true;
this.description = "Elite Guard's Lance";
}
function Skimitar() {
this._type = "sword";
this.link = "Skimitar";
this.plus = 2;
this.fire_rate = 15;
this.damage = 70;
this.speed = 15;
this.radius = 40;
this.treat = 0;
this.melee = true;
this.description = "Skimitar";
}
function MultiBow() {
this._type = "bow";
this.link = "MultiBow";
this.plus = 1;
this.fire_rate = 22;
this.damage = 50;
this.speed = 30;
this.radius = 1000;
this.treat = 3;
this.melee = false;
this.description = "Triple Bow";
}
function KingSword() {
this._type = "sword";
this.link = "KingSword";
this.plus = 2;
this.fire_rate = 15;
this.damage = 120;
this.radius = 40;
this.treat = 0;
this.melee = true;
this.description = "King's Sword";
}
function Bolt() {
this.speed = 15;
this.damage = 20;
this.moving = true;
}
function NextLevel() {
}
function EndLevel() {
}
function Cursor() {
}
function Slash() {
this._visible = false;
this.owner = this._parent._parent._parent._parent;
}
function Medkit() {
}
function Medkit_20() {
this.heal_power = 20;
}
function Medkit_40() {
this.heal_power = 40;
}
function Medkit_60() {
this.heal_power = 60;
}
function Medkit_80() {
this.heal_power = 80;
}
function Armor() {
}
function Armor_20() {
this.heal_power = 20;
}
function Armor_40() {
this.heal_power = 40;
}
function Arrows() {
}
function Arrows_20() {
this.power = 20;
}
function Arrows_40() {
this.power = 40;
}
function Crate() {
this.HP = 100;
this.puzo = 20;
this.team = 2;
this._xscale = 80;
this._yscale = 80;
this.prize = null;
this.ln1 = null;
this.ln2 = null;
}
Point.prototype = new Object();
Point.prototype.write = function () {
return(((("(" + this.X) + ", ") + this.Y) + ")");
};
Point.prototype.dist = function (pt) {
return(Math.sqrt(((this.X - pt.X) * (this.X - pt.X)) + ((this.Y - pt.Y) * (this.Y - pt.Y))));
};
Line.prototype = new Object();
Line.prototype.isVertical = function () {
return((this.beg.X - this.end.X) == 0);
};
Line.prototype.isHorizontal = function () {
return((this.beg.X - this.end.X) == 0);
};
Line.prototype.inArea = function (pt) {
return((((Math.round(pt.X) >= Math.round(Math.min(this.beg.X, this.end.X))) && (Math.round(pt.X) <= Math.round(Math.max(this.beg.X, this.end.X)))) && (Math.round(pt.Y) >= Math.round(Math.min(this.beg.Y, this.end.Y)))) && (Math.round(pt.Y) <= Math.round(Math.max(this.beg.Y, this.end.Y))));
};
Line.prototype.cantBeCrossedWith = function (line) {
var _local10 = Math.max(this.beg.X, this.end.X);
var _local8 = Math.max(this.beg.Y, this.end.Y);
var _local9 = Math.max(line.beg.X, line.end.X);
var _local7 = Math.max(line.beg.Y.line.end.Y);
var _local6 = Math.min(this.beg.X, this.end.X);
var _local4 = Math.min(this.beg.Y, this.end.Y);
var _local5 = Math.min(line.beg.X, line.end.X);
var _local3 = Math.min(line.beg.Y, line.end.Y);
return((((_local10 < _local5) || (_local9 < _local6)) || (_local8 < _local3)) || (_local7 < _local4));
};
Line.prototype.cross = function (line) {
if (!this.cantBeCrossedWith(line)) {
var _local2 = new Point();
if (!line.isVertical()) {
var _local4 = (line.beg.Y - line.end.Y) / (line.beg.X - line.end.X);
}
if (!this.isVertical()) {
var _local5 = (this.beg.Y - this.end.Y) / (this.beg.X - this.end.X);
}
if (_local4 == _local5) {
return(null);
}
var _local6 = line.beg.Y - (_local4 * line.beg.X);
var _local7 = this.beg.Y - (_local5 * this.beg.X);
if (line.isVertical() && (!this.isVertical())) {
_local2.X = line.beg.X;
_local2.Y = (_local5 * line.beg.X) + _local7;
} else if ((!line.isVertical()) && (this.isVertical())) {
_local2.X = this.beg.X;
_local2.Y = (_local4 * this.beg.X) + _local6;
} else {
_local2.X = (_local7 - _local6) / (_local4 - _local5);
_local2.Y = (_local4 * _local2.X) + _local6;
}
if (line.inArea(_local2) && (this.inArea(_local2))) {
return(new Point(_local2.X, _local2.Y));
}
}
return(null);
};
Line.prototype.write = function () {
return((this.beg.write() + " - ") + this.end.write());
};
Line.prototype.wall = function () {
var _local3 = null;
var _local5 = null;
var _local6 = null;
var _local7 = 20000;
var _local4 = 0;
while (_local4 < _global.walls.length) {
_local3 = _global.walls[_local4].cross(this);
if (_local3 != null) {
_local6 = Math.sqrt(((_local3.X - this.beg.X) * (_local3.X - this.beg.X)) + ((_local3.Y - this.beg.Y) * (_local3.Y - this.beg.Y)));
if ((_local5 == null) || (_local6 < _local7)) {
_local5 = _local3;
_local7 = _local6;
}
}
_local4++;
}
return(_local5);
};
Wall.prototype = new MovieClip();
Wall.prototype.onLoad = function () {
var _local4 = {x:0, y:0};
var _local3 = {x:80, y:80};
this.localToGlobal(_local4);
this.localToGlobal(_local3);
_global.walls[_global.walls.length] = new Line(_local4.x, _local4.y, _local3.x, _local3.y);
this._visible = _global.WALLS_VISIBLE;
};
Object.registerClass("Wall", Wall);
Wall_h.prototype = new MovieClip();
Wall_h.prototype.onLoad = function () {
var _local4 = {x:0, y:0};
var _local3 = {x:80, y:0};
this.localToGlobal(_local4);
this.localToGlobal(_local3);
_global.walls[_global.walls.length] = new Line(_local4.x, _local4.y, _local3.x, _local3.y);
this._visible = _global.WALLS_VISIBLE;
};
Object.registerClass("Wall_h", Wall_h);
Wall_v.prototype = new MovieClip();
Wall_v.prototype.onLoad = function () {
var _local4 = {x:0, y:0};
var _local3 = {x:0, y:80};
this.localToGlobal(_local4);
this.localToGlobal(_local3);
_global.walls[_global.walls.length] = new Line(_local4.x, _local4.y, _local3.x, _local3.y);
this._visible = _global.WALLS_VISIBLE;
};
Object.registerClass("Wall_v", Wall_v);
setDefaults = function () {
_global.times = 0;
_global.WALLS_VISIBLE = false;
_global.CHANGE_WEAPONS = true;
_global.KEYBOARD_SENSIVITY = 800;
_global.BLOW_RADIUS = 80;
_global.BLOW_DAMAGE = 120;
_global.HE_DAMAGE = 150;
_global.FRAG_DAMAGE = 250;
_global.hold_time = 0;
_global.d_blood = 101;
_global.down_depth = 8001;
_global.d_creature = 65001;
_global.free_depth = 65536;
_global.hero = 1;
_root.vehicle = null;
};
loadDefaults = function () {
var _local2 = SharedObject.getLocal("RobinHood");
var _local3 = false;
for (var _local4 in _local2.data) {
_local3 = true;
break;
}
if (_local3) {
_global.WOUND_FLASH = _local2.data.WOUND_FLASH;
_global.BLOOD = _local2.data.BLOOD;
_global.SHELLS = _local2.data.SHELLS;
_global.CORPSES = _local2.data.CORPSES;
_global.DIFFICULTLY = _local2.data.DIFFICULTLY;
_global.OLD_BULLETS = _local2.data.OLD_BULLETS;
_global.SAVED_QUALITY = _local2.data.SAVED_QUALITY;
_global.LEVELS_UNLOCKED = _local2.data.LEVELS_UNLOCKED;
} else {
_global.WOUND_FLASH = true;
_global.BLOOD = true;
_global.SHELLS = true;
_global.CORPSES = true;
_global.DIFFICULTLY = 2;
_global.OLD_BULLETS = true;
_global.SAVED_QUALITY = "MEDIUM";
_global.LEVELS_UNLOCKED = 1;
}
};
saveDefaults = function () {
var _local2 = SharedObject.getLocal("RobinHood");
_local2.data.WOUND_FLASH = _global.WOUND_FLASH;
_local2.data.BLOOD = _global.BLOOD;
_local2.data.SHELLS = _global.SHELLS;
_local2.data.CORPSES = _global.CORPSES;
_local2.data.DIFFICULTLY = _global.DIFFICULTLY;
_local2.data.OLD_BULLETS = _global.OLD_BULLETS;
_local2.data.SAVED_QUALITY = _global.SAVED_QUALITY;
_local2.data.LEVELS_UNLOCKED = _global.LEVELS_UNLOCKED;
_local2.flush();
};
min = function (a, b) {
if (a > b) {
return(b);
}
return(a);
};
max = function (a, b) {
if (b > a) {
return(b);
}
return(a);
};
d = function (dice) {
return(Math.floor(Math.random() * dice) + 1);
};
xdy = function (x, y) {
temp = 0;
ijk = 1;
while (ijk <= x) {
temp = temp + d(y);
ijk++;
}
return(temp);
};
percent = function (x) {
return(d(100) <= x);
};
degToRad = function (deg) {
rad = (Math.PI * deg) / 180;
return(rad);
};
radToDeg = function (rad) {
deg = (rad * 180) / Math.PI;
return(deg);
};
plot = function (deg, radius) {
radians = degToRad(deg);
yCoor = radius * Math.sin(radians);
xCoor = radius * Math.cos(radians);
p = new Object({x:xCoor, y:yCoor});
return(p);
};
degs = function (degree) {
degree = Math.floor(((degree + 22.5) % 360) / 45);
return(degree * 45);
};
theDistance = function (obj1, obj2) {
return(Math.sqrt(((obj1._x - obj2._x) * (obj1._x - obj2._x)) + ((obj1._y - obj2._y) * (obj1._y - obj2._y))));
};
thatDistance = function (obj1, obj2, x, y) {
return(Math.sqrt((((obj1._x + x) - obj2._x) * ((obj1._x + x) - obj2._x)) + (((obj1._y + y) - obj2._y) * ((obj1._y + y) - obj2._y))));
};
addPlayer = function (x, y, rot, skin, wpn, melee, rng, subtype) {
_root.attachMovie("Player", "hero0", 65000, {_x:x, _y:y, _rotation:rot});
_root.hero0.sideView(skin);
_root.hero0.setGun(wpn, melee, rng);
if (subtype != "no") {
_root.hero0[subtype]();
}
_root.hero0.SKIN = skin;
};
addSoldier = function (x, y, rot, skin, wpn, melee, rng, subtype, go_x, go_y, team, patrol) {
_root.attachMovie("Hero", "hero" + _global.hero, _global.d_creature, {_x:x, _y:y, _rotation:rot});
_root["hero" + _global.hero].team = team;
_root["hero" + _global.hero].sideView(skin);
_root["hero" + _global.hero].setGun(wpn, melee, rng);
if (go_x != 0) {
_root["hero" + _global.hero].gox = go_x;
}
if (go_y != 0) {
_root["hero" + _global.hero].goy = go_y;
}
if (patrol) {
_root["hero" + _global.hero].patrolX = x;
_root["hero" + _global.hero].patrolY = y;
}
if (subtype != "no") {
_root["hero" + _global.hero][subtype]();
}
_root["hero" + _global.hero].SKIN = skin;
_global.d_creature++;
_global.hero++;
};
addBolt = function (x, y, rot, dmg, spd, own) {
var _local4 = x + (10 * Math.cos(degToRad(rot - 90)));
var _local3 = y + (10 * Math.sin(degToRad(rot - 90)));
var _local6 = new Line(x, y, _local4, _local3);
if (_local6.wall() == null) {
_root.attachMovie("Bolt", "bullet_" + _global.free_depth, _global.free_depth, {_x:_local4, _y:_local3, _rotation:rot});
_root["bullet_" + _global.free_depth].damage = dmg;
_root["bullet_" + _global.free_depth].owner = own;
_root["bullet_" + _global.free_depth].speed = spd;
}
_global.free_depth = _global.free_depth + ((_global.free_depth < 99999) ? 1 : -34000);
};
addFlame = function (x, y, rot, dmg) {
var _local4 = x + (80 * Math.cos(degToRad(rot - 90)));
var _local3 = y + (80 * Math.sin(degToRad(rot - 90)));
var _local6 = new Line(x, y, _local4, _local3);
if (_local6.wall() == null) {
_root.attachMovie("Flame", "bullet_" + _global.free_depth, _global.free_depth, {_x:_local4, _y:_local3, _rotation:rot});
_root["bullet_" + _global.free_depth].damage = dmg;
}
_global.free_depth = _global.free_depth + ((_global.free_depth < 99999) ? 1 : -34000);
};
addBlood = function (x, y) {
_root.attachMovie("Blood_" + d(3), "bl_" + _global.free_depth, _global.free_depth, {_x:x, _y:y, _xscale:200, _yscale:200, _rotation:d(360)});
_global.free_depth = _global.free_depth + ((_global.free_depth < 99999) ? 1 : -34000);
};
drawBlood = function (xx, yy) {
_level2.attachMovie("BloodFountain" + d(2), "eff" + _global.d_effect, _global.d_effect, {_x:xx, _y:yy + (d(11) - 6)});
if (_global.d_effect < 45000) {
_global.d_effect++;
} else {
_global.d_effect = 36001;
}
};
unloadAll = function () {
var _local3 = 0;
while (_local3 < _global.hero) {
_root["hero" + _local3].removeMovieClip();
_local3++;
}
_global.hero = 1;
_local3 = 65536;
while (_local3 < _global.free_depth) {
_root["bl_" + _local3].removeMovieClip();
_root["shell_" + _local3].removeMovieClip();
_root["bullet_" + _local3].removeMovieClip();
_local3++;
}
_local3 = 8001;
while (_local3 < _global.down_depth) {
_root["wpn_" + _local3].removeMovieClip();
_local3++;
}
_root.scr.removeMovieClip();
_global.d_blood = 101;
_global.down_depth = 8001;
_global.d_creature = 65001;
_global.free_depth = 65536;
_root.attachMovie("ArrowCursor", "_cursor", 150000, {_x:_xmouse, _y:_ymouse});
_root._quality = "HIGH";
};
unloadMap = function () {
var _local3 = 1;
while (_local3 < _global.hero) {
_root["hero" + _local3].removeMovieClip();
_local3++;
}
_global.hero = 1;
_local3 = 65536;
while (_local3 < _global.free_depth) {
_root["bl_" + _local3].removeMovieClip();
_root["shell_" + _local3].removeMovieClip();
_root["bullet_" + _local3].removeMovieClip();
_local3++;
}
_local3 = 8001;
while (_local3 < _global.down_depth) {
_root["wpn_" + _local3].removeMovieClip();
_local3++;
}
_root.scr.removeMovieClip();
_global.d_blood = 101;
_global.down_depth = 8001;
_global.d_creature = 65002;
_global.free_depth = 65536;
_root.attachMovie("ArrowCursor", "_cursor", 150000, {_x:_xmouse, _y:_ymouse});
_root._quality = "HIGH";
};
loadMap = function (map) {
delete eval (_global.walls());
_global.walls = new Array();
_root.attachMovie("BattleCursor", "_cursor", 150000, {_x:_xmouse, _y:_ymouse});
_root.attachMovie("Screen", "scr", 149000, {_x:0, _y:450});
_root.gotoAndStop(map + 3);
_root.attachMovie("map_" + map, "walls", 11, {_x:0, _y:0});
_root._quality = _global.SAVED_QUALITY;
if (_root.hero0.HP > 0) {
_global.SV_HP = _root.hero0.HP;
_global.SV_AC = _root.hero0.AC;
_global.SV_ammo = _root.hero0.ammo;
_global.SV_SKIN = _root.hero0.SKIN;
}
};
gameLoad = function (map) {
unloadMap();
_root.WhatToLoad = map;
_root.gotoAndPlay("GAME_LOAD");
};
toMenu = function () {
gotoAndStop (175);
};
toEngine = function () {
gotoAndPlay (175);
};
addYou = function () {
_root.attachMovie("YOU", "you", 100001, {_x:_root.hero0._x, _y:_root.hero0._y});
};
_root.onEnterFrame = function () {
if (_global.times >= 30) {
_global.times = 0;
} else {
_global.times++;
}
};
Man.prototype = new MovieClip();
Man.prototype.constr = function () {
this.setSound();
this.MAX_HP = 100;
this.HP = 100;
this.hp_mod = 1;
this.AC = 100;
this.leg_r.gotoAndPlay(8);
this.puzo = 20;
this.step = 4;
this.burning = false;
this._xscale = 80;
this._yscale = 80;
this.weap_1 = null;
this.weap_2 = null;
this.weap_3 = null;
this.ammo = 0;
this.ch_weap = 0;
this.shot_timer = 0;
this.ln1 = null;
this.ln2 = null;
this.SKIN = null;
};
Man.prototype.stdFrame = function () {
if (this.shot_timer > 0) {
this.shot_timer--;
}
};
Man.prototype.sideView = function (skin) {
this.hands.arm_l.attachMovie("L_Arm_" + skin, "al", 1);
this.hands.hand_l.attachMovie("L_Hand_" + skin, "hl", 1);
this.hands.arm_r.attachMovie("R_Arm_" + skin, "ar", 1);
this.hands.hand_r.attachMovie("R_Hand_" + skin, "hr", 1);
this.hands.forma.attachMovie("Uniform_" + skin, "fr", 1);
this.hands.kaska.attachMovie("Head_" + skin, "ks", 1);
};
Man.prototype.setGun = function (wpn, melee, rng) {
mlee = new _root[melee]();
mlee.equip(this);
ranged = new _root[wpn]();
ranged.equip(this);
heavy = new _root[rng]();
heavy.equip(this);
};
Man.prototype.stdLoad = function (tm, side, rang) {
this.team = tm;
var _local2 = Number(this._name.substr(4));
this.swapDepths();
this.sideView(side, rang);
};
Man.prototype.lineHit = function (line) {
var _local3 = this.ln1.cross(line);
var _local2 = this.ln2.cross(line);
return((_local3 != null) || (_local2 != null));
};
Man.prototype.lineCross = function (line) {
var _local2 = this.ln1.cross(line);
var _local3 = this.ln2.cross(line);
if (_local2 != null) {
return(_local2);
}
return(_local3);
};
Man.prototype.getLines = function (x, y) {
this.ln1 = new Line((this._x + x) - 12, (this._y + y) - 12, (this._x + x) + 12, (this._y + y) + 12);
this.ln2 = new Line((this._x + x) - 12, (this._y + y) + 12, (this._x + x) + 12, (this._y + y) - 12);
};
Man.prototype.canGo = function (x, y) {
if (_root.un.hitTest(this._x + x, this._y + y, true)) {
return(false);
}
this.getLines(x, y);
var _local5 = true;
var _local4 = 0;
while (_local4 < _global.walls.length) {
if (this.lineHit(_global.walls[_local4])) {
_local5 = false;
break;
}
_local4++;
}
return(_local5 && (this.notHit(x, y)));
};
Man.prototype.changeWeapons = function (link) {
this.ch_weap = link;
this.weapon = link;
this.hands.gotoAndPlay("change");
if (this._name == "hero0") {
_root.scr.gun_txt.text = link.description;
if (link.alt_use) {
_root.scr.gotoAndStop(2);
} else {
_root.scr.gotoAndStop(1);
if (link.alternate) {
_root.scr.alt_descr_txt.text = link.alt_description;
} else {
_root.scr.alt_descr_txt.text = "";
}
}
}
};
Man.prototype.getShot = function (damage) {
if (this.HP > 0) {
var _local4 = Math.floor((0.8 * (this.AC / 100)) * damage);
this.HP = this.HP - (damage - _local4);
if (this.HP < 0) {
this.HP = 0;
}
this.AC = this.AC - Math.floor(_local4 / 2);
if (this.AC < 0) {
this.AC = 0;
}
_root.addBlood(this._x, this._y);
if (_global.WOUND_FLASH && (this._name == "hero0")) {
_root.scr.wound_flash.gotoAndPlay(2);
}
}
};
Man.prototype.getKicked = function () {
if ((this.kick + this.weapon.kickback) < this.weapon.max_kick) {
this.kick = this.kick + this.weapon.kickback;
} else {
this.kick = this.weapon.max_kick;
}
};
Man.prototype.kickMore = function (num) {
if (this.kick < this.weapon.max_kick) {
this.kick = this.kick + num;
} else {
this.kick = this.weapon.max_kick;
}
};
Man.prototype.plusClip = function () {
if ((this.weapon.ammo + this.weapon.clip) >= this.weapon.max_clip) {
this.weapon.ammo = this.weapon.ammo + (this.weapon.clip - this.weapon.max_clip);
this.weapon.clip = this.weapon.max_clip;
} else {
this.weapon.clip = this.weapon.clip + this.weapon.ammo;
this.weapon.ammo = 0;
}
};
Man.prototype.plusAltClip = function () {
if ((this.weapon.alt_ammo + this.weapon.alt_clip) >= this.weapon.alt_maxclip) {
this.weapon.alt_ammo = this.weapon.alt_ammo + (this.weapon.alt_clip - this.weapon.alt_maxclip);
this.weapon.alt_clip = this.weapon.alt_maxclip;
} else {
this.weapon.alt_clip = this.weapon.alt_clip + this._parent.weapon.alt_ammo;
this.weapon.alt_ammo = 0;
}
};
Man.prototype.setSound = function () {
this.boltSound = new Sound(this);
this.boltSound.attachSound("bolt.wav");
this.boltSound.stop();
this.swingSound = new Sound(this);
this.swingSound.attachSound("swing.wav");
this.swingSound.stop();
this.hitSound = new Sound(this);
this.hitSound.attachSound("hit.wav");
this.hitSound.stop();
this.dieSound = new Sound(this);
this.dieSound.attachSound("die.wav");
this.dieSound.stop();
};
Man.prototype.addFlame = function (rot) {
_root.addFlame(this._x, this._y, rot, this.weapon.damage);
};
Man.prototype.bolt = function () {
if (_root.sunet == true) {
this.boltSound.start();
}
var _local4 = this._x + ((this.puzo + 20) * Math.cos(degToRad(this._rotation - 90)));
var _local3 = this._y + ((this.puzo + 20) * Math.sin(degToRad(this._rotation - 90)));
var _local5 = new Line(this._x, this._y, _local4, _local3);
if (_local5.wall() == null) {
_root.addBolt(_local4, _local3, this._rotation, this.weapon.damage, this.weapon.speed, this._name);
}
};
Man.prototype.multiBolt = function () {
if (_root.sunet == true) {
this.boltSound.start();
}
var _local5 = this._x + ((this.puzo + 20) * Math.cos(degToRad(this._rotation - 90)));
var _local4 = this._y + ((this.puzo + 20) * Math.sin(degToRad(this._rotation - 90)));
var _local6 = new Line(this._x, this._y, _local5, _local4);
if (_local6.wall() == null) {
var _local3 = -3;
while (_local3 <= 3) {
_root.addBolt(_local5, _local4, this._rotation + _local3, this.weapon.damage, this.weapon.speed, this._name);
_local3 = _local3 + 3;
}
}
};
Man.prototype.knifeSlash = function (rad, dmg) {
if (_root.sunet == true) {
this.swingSound.start();
}
var _local4 = 0;
while (_local4 < _global.hero) {
if (("hero" + _local4) != this._name) {
if (theDistance(this, _root["hero" + _local4]) <= ((rad + this.puzo) + _root["hero" + _local4].puzo)) {
_root["hero" + _local4].kick = _root["hero" + _local4].kick + 30;
_root["hero" + _local4].getShot(dmg);
}
}
_local4++;
}
};
Man.prototype.tRobin = function () {
this.AC = 100;
this.HP = 100;
this.MAX_HP = 100;
};
Man.prototype.tRobinNoArmor = function () {
this.AC = 0;
this.HP = 100;
this.MAX_HP = 100;
};
Man.prototype.tSwordsman = function () {
this.AC = 0;
this.HP = 30;
};
Man.prototype.tBowman = function () {
this.AC = 0;
this.HP = 30;
this.ammo = 2000;
};
Man.prototype.tGuardian = function () {
this.AC = 50;
this.HP = 40;
};
Man.prototype.tRanger = function () {
this.AC = 40;
this.HP = 30;
this.ammo = 2000;
};
Man.prototype.tSpearman = function () {
this.AC = 70;
this.HP = 50;
this.step = 3;
};
Man.prototype.tMajorGuardian = function () {
this.AC = 50;
this.HP = 70;
};
Man.prototype.tMonk = function () {
this.AC = 50;
this.HP = 50;
this.ammo = 2000;
};
Man.prototype.tMajorSpearman = function () {
this.AC = 80;
this.HP = 100;
this.step = 2;
};
Man.prototype.tMayor = function () {
this.AC = 100;
this.HP = 350;
this.step = 3;
};
Man.prototype.tKnight = function () {
this.step = 3;
this.AC = 80;
this.HP = 200;
};
Man.prototype.tBerserker = function () {
this.AC = 0;
this.HP = 150;
this.step = 7;
};
Man.prototype.tCouncillor = function () {
this.AC = 100;
this.HP = 600;
this.ammo = 2000;
};
Man.prototype.tMajorMonk = function () {
this.AC = 100;
this.HP = 300;
this.ammo = 2000;
};
Man.prototype.tMajorKnight = function () {
this.AC = 100;
this.HP = 330;
this.step = 3;
};
Man.prototype.tKing = function () {
this.AC = 100;
this.HP = 1200;
this.step = 3;
};
Soldier.prototype = new Man();
Soldier.prototype.turn = function (deg) {
deg = deg - 90;
while (deg < -180) {
deg = deg + 360;
}
while (deg > 180) {
deg = deg - 360;
}
var _local2 = this._rotation;
while (_local2 < -180) {
_local2 = _local2 + 360;
}
while (_local2 > 180) {
_local2 = _local2 - 360;
}
var _local4 = deg - _local2;
if (Math.abs(_local4) > 180) {
if (deg > _local2) {
_local4 = _local4 - 360;
} else {
_local4 = _local4 + 360;
}
}
if (_local4 < -4) {
this._rotation = this._rotation - 7;
} else if (_local4 > 4) {
this._rotation = this._rotation + 7;
} else {
this._rotation = deg;
return(true);
}
return(false);
};
Soldier.prototype.goto = function (x, y) {
var _local4 = radToDeg(Math.atan2(this._y - this.goy, this._x - this.gox));
var _local2 = null;
var _local3 = 0;
while (_local3 <= 80) {
_local2 = plot(_local4 + _local3, this.step);
if (this.canGo(-_local2.x, -_local2.y)) {
this._x = this._x - _local2.x;
this._y = this._y - _local2.y;
this.turn(radToDeg(Math.atan2(_local2.y, _local2.x)));
return(true);
}
_local2 = plot(_local4 - _local3, this.step);
if (this.canGo(-_local2.x, -_local2.y)) {
this._x = this._x - _local2.x;
this._y = this._y - _local2.y;
this.turn(radToDeg(Math.atan2(_local2.y, _local2.x)));
return(true);
}
_local3 = _local3 + 10;
}
return(false);
};
Soldier.prototype.moveOn = function (range) {
if (this.weapon.melee && (this.attacking != null)) {
this.gox = this.attacking._x;
this.goy = this.attacking._y;
}
if ((Math.abs(this._x - this.gox) > range) || (Math.abs(this._y - this.goy) > range)) {
this.leg_l.play();
this.leg_r.play();
if (!this.goto(this.gox, this.goy)) {
if (this.weapon.melee) {
this.gox = _root.d(650);
this.goy = _root.d(450);
this.attacking = null;
} else {
this.gox = this._x;
this.goy = this._y;
}
}
} else if (((this.attacking == null) && (this.patrolX != null)) && (this.patrolY != null)) {
var _local4 = this.gox;
var _local3 = this.goy;
this.gox = this.patrolX;
this.goy = this.patrolY;
this.patrolX = _local4;
this.patrolY = _local3;
} else {
this.leg_l.stop();
this.leg_r.stop();
}
};
Soldier.prototype.onEnterFrame = function () {
if (_root.pauza == false) {
if (this.HP > 0) {
this.stdFrame();
this.findEnemy();
this.attack();
this.panic();
this.moveOn(this.puzo * 2);
}
}
this.isDead();
};
Soldier.prototype.atkRange = function () {
return(_root.theDistance(this, this.attacking) <= ((this.weapon.radius + this.puzo) + this.attacking.puzo));
};
Soldier.prototype.attack = function () {
if (this.attacking.HP <= 0) {
this.attacking = null;
}
if (this.attacking != null) {
if (this.turn(radToDeg(Math.atan2(this._y - this.attacking._y, this._x - this.attacking._x))) && (this.hands._currentframe < 98)) {
if (!this.atkRange()) {
this.gox = this.attacking._x;
this.goy = this.attacking._y;
} else if ((_global.times % this.weapon.fire_rate) == 0) {
this.fireNow();
}
}
if (_global.times == 0) {
if (!this.inSight()) {
this.gox = this.lastSeenPlayerX;
this.goy = this.lastSeenPlayerY;
this.lastSeenPlayerX = null;
this.lastSeenPlayerY = null;
this.attacking = null;
} else {
this.lastSeenPlayerX = this.attacking._x;
this.lastSeenPlayerY = this.attacking._y;
if (!this.weapon.melee) {
this.gox = this._x;
this.goy = this._y;
}
}
}
}
};
Soldier.prototype.panic = function () {
if ((this.burning && (this.gox == this._x)) && (this.goy == this._y)) {
var _local4 = _root.d(_global.hero) - 1;
if (_root["hero" + _local4] == this) {
_local4--;
}
this.gox = _root["hero" + _local4]._x;
this.goy = _root["hero" + _local4]._y;
}
};
Soldier.prototype.inSight = function () {
var _local5 = new Line(this.attacking._x, this.attacking._y, this._x, this._y);
var _local3 = 0;
while (_local3 < _global.walls.length) {
var _local4 = _global.walls[_local3].cross(_local5);
if (_local4 != null) {
return(false);
}
_local3++;
}
return(true);
};
Soldier.prototype.fireNow = function () {
if ((this.ammo - this.weapon.treat) >= 0) {
this.hands.weapon.wpn.gotoAndPlay(2);
this.ammo = this.ammo - this.weapon.treat;
} else {
this.changeWeapons(this.weap_2);
}
};
Soldier.prototype.isDead = function () {
if ((this.HP <= 0) && (this._currentframe == 1)) {
this.hands.weapon.wpn.removeMovieClip();
if (_root.sunet == true) {
this.dieSound.start();
}
this.gotoAndPlay("death");
_root.score = _root.score + 50;
this.swapDepths(_global.d_blood);
_global.d_blood = _global.d_blood + ((_global.d_blood <= 8000) ? 1 : -6000);
}
};
Soldier.prototype.notHit = function (x, y) {
var _local4 = 0;
while (_local4 < _global.hero) {
if (((("hero" + _local4) != this._name) && (_root["hero" + _local4].HP > 0)) && (_root.thatDistance(this, _root["hero" + _local4], x, y) < (this.puzo + _root["hero" + _local4].puzo))) {
return(false);
}
_local4++;
}
return(true);
};
Soldier.prototype.findEnemy = function () {
if ((this.HP > 0) && (_global.times == 0)) {
if (this.attacking == null) {
var _local4 = 0;
while (_local4 < _global.hero) {
if ((_root["hero" + _local4].HP > 0) && (_root["hero" + _local4].team != this.team)) {
this.attacking = _root["hero" + _local4];
if (this.inSight()) {
return(undefined);
}
this.attacking = null;
}
_local4++;
}
} else if (this.attacking.HP < 0) {
this.attacking = null;
}
}
};
Soldier.prototype.addGrenade = function (err) {
_root.addGrenade(this._x, this._y, this._rotation, err, this.attacking._x, this.attacking._y, this.weapon.alt_type);
};
Soldier.prototype.throwIt = function () {
_root.addHandGrenade(this._x, this._y, this._rotation, this.attacking._x, this.attacking._y, this.weapon.link);
};
Object.registerClass("Hero", Soldier);
Player.prototype = new Man();
Player.prototype.turn = function () {
this._rotation = 90 + _root.radToDeg(Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x));
};
Player.prototype.moveOn = function (range) {
var _local3 = 0;
var _local2 = 0;
if (Key.isDown(87)) {
_local2 = _local2 - this.step;
}
if (Key.isDown(83)) {
_local2 = _local2 + this.step;
}
if (Key.isDown(65)) {
_local3 = _local3 - this.step;
}
if (Key.isDown(68)) {
_local3 = _local3 + this.step;
}
if (((_local3 != 0) || (_local2 != 0)) && (this.canGo(_local3, _local2))) {
this._x = this._x + _local3;
this._y = this._y + _local2;
this.leg_l.play();
this.leg_r.play();
} else {
this.leg_l.stop();
this.leg_r.stop();
}
};
Player.prototype.onEnterFrame = function () {
if (_root.pauza == false) {
if (this.HP > 0) {
this.turn();
this.stdFrame();
this.attack();
this.moveOn();
this.anotherKeys();
}
this.lookCheats();
this.writeAll();
this.isDead();
}
};
Player.prototype.onMouseDown = function () {
this.kurok = true;
};
Player.prototype.onMouseUp = function () {
this.kurok = false;
};
Player.prototype.attack = function () {
if (this.kurok) {
if ((this.shot_timer == 0) && (this.hands._currentframe < 98)) {
this.shot_timer = this.weapon.fire_rate;
this.fireNow();
}
}
};
Player.prototype.fireNow = function () {
if (this.ammo >= this.weapon.treat) {
this.hands.weapon.wpn.gotoAndPlay(2);
this.ammo = this.ammo - this.weapon.treat;
}
};
Player.prototype.isDead = function () {
if ((this.HP <= 0) && (this._currentframe == 1)) {
if (_root.sunet == true) {
this.dieSound.start();
}
this.gotoAndPlay("death");
_root.attachMovie("again_question", "again", 100001, {_x:163, _y:40});
_root.scr.meniu._visible = false;
}
};
Player.prototype.notHit = function (x, y) {
var _local4 = 1;
while (_local4 < _global.hero) {
if ((_root["hero" + _local4].HP > 0) && (_root.thatDistance(this, _root["hero" + _local4], x, y) < (this.puzo + _root["hero" + _local4].puzo))) {
return(false);
}
_local4++;
}
return(true);
};
Player.prototype.writeAll = function () {
_root._cursor.ammo_txt.text = this.ammo;
_root._cursor.mouse_pointer._rotation = this._rotation;
_root.scr.ammo_txt.text = this.ammo;
_root.scr.HP_bar._xscale = this.HP / this.hp_mod;
_root.scr.hp_txt.text = "Health " + this.HP;
_root.scr.AC_bar._xscale = this.AC;
if (this.AC > 0) {
_root.scr.ac_txt.text = "Armor " + this.AC;
} else {
_root.scr.ac_txt.text = "";
}
};
Player.prototype.anotherKeys = function () {
if ((Key.isDown(49) && (this.weapon.plus != 1)) && (this.weap_1 != null)) {
this.changeWeapons(this.weap_1);
} else if ((Key.isDown(50) && (this.weapon.plus != 2)) && (this.weap_2 != null)) {
this.changeWeapons(this.weap_2);
} else if ((Key.isDown(51) && (this.weapon.plus != 3)) && (this.weap_3 != null)) {
this.changeWeapons(this.weap_3);
}
};
Object.registerClass("Player", Player);
Weapon.prototype = new Object();
Weapon.prototype.equip = function (character) {
this.owner = character;
character["weap_" + this.plus] = this;
if (_global.CHANGE_WEAPONS) {
character.changeWeapons(this);
}
if (character._name == "hero0") {
if (this.alt_use) {
_root.scr.gotoAndStop(2);
} else {
_root.scr.gotoAndStop(1);
if (this.alternate) {
_root.scr.alt_descr_txt.text = this.alt_description;
} else {
_root.scr.alt_descr_txt.text = "";
}
}
}
};
Bow.prototype = new Weapon();
Sword.prototype = new Weapon();
GoodBow.prototype = new Weapon();
GoodSword.prototype = new Weapon();
Spear.prototype = new Weapon();
MayorSword.prototype = new Weapon();
Crossbow.prototype = new Weapon();
Lance.prototype = new Weapon();
Skimitar.prototype = new Weapon();
MultiBow.prototype = new Weapon();
KingSword.prototype = new Weapon();
Bolt.prototype = new MovieClip();
Bolt.prototype.onEnterFrame = function () {
if (this.moving) {
if ((((this._x < (-_root._x)) || (this._y < (-_root._y))) || (this._x > (650 - _root._x))) || (this._y > (500 - _root._y))) {
this.removeMovieClip();
}
var _local6 = plot(this._rotation - 90, this.speed);
var _local8 = new Line(this._x, this._y, this._x + _local6.x, this._y + _local6.y);
var _local7 = _local8.wall();
if (_local7 == null) {
this._x = this._x + _local6.x;
this._y = this._y + _local6.y;
} else {
this._x = _local7.X;
this._y = _local7.Y;
this.moving = false;
return(undefined);
}
var _local4 = 0;
while (_local4 < _global.hero) {
if (((this.owner != ("hero" + _local4)) && (_root["hero" + _local4].HP > 0)) && (_root["hero" + _local4].hitTest(this._x, this._y, false))) {
var _local5 = new Line(this._x, this._y, _root["hero" + _local4]._x, _root["hero" + _local4]._y);
if (_local5.wall() == null) {
_root["hero" + _local4].getShot(this.damage);
this.removeMovieClip();
}
}
_local4++;
}
}
};
Object.registerClass("Bolt", Bolt);
NextLevel.prototype = new MovieClip();
NextLevel.prototype.onEnterFrame = function () {
if (this.hitTest(_root.hero0._x, _root.hero0._y, false)) {
_root.gameLoad(_root._currentframe - 2);
}
};
Object.registerClass("NextLevel", NextLevel);
EndLevel.prototype = new MovieClip();
EndLevel.prototype.onEnterFrame = function () {
if (this.hitTest(_root.hero0._x, _root.hero0._y, false)) {
_root.unloadAll();
if (_root._currentframe <= 185) {
_root.gotoAndStop("EPISODE_2");
} else if (_root._currentframe <= 193) {
_root.gotoAndStop("EPISODE_3");
} else if (_root._currentframe <= 201) {
_root.gotoAndStop("EPISODE_4");
} else if (_root._currentframe <= 209) {
_root.gotoAndStop("EPISODE_5");
} else {
_root.gotoAndStop("END_GAME");
}
}
};
Object.registerClass("EndLevel", EndLevel);
Cursor.prototype = new MovieClip();
Cursor.prototype.onEnterFrame = function () {
this._x = _root._xmouse;
this._y = _root._ymouse;
updateAfterEvent();
};
Object.registerClass("ArrowCursor", Cursor);
Object.registerClass("BattleCursor", Cursor);
Mouse.hide();
_root.attachMovie("ArrowCursor", "_cursor", 150000);
Slash.prototype = new MovieClip();
Slash.prototype.hit = function (dmg) {
if (_root.sunet == true) {
this.owner.swingSound.start();
}
var _local4 = 0;
while (_local4 < _global.hero) {
if (("hero" + _local4) != this.owner._name) {
if (this.hitTest(_root["hero" + _local4])) {
if (_root.theDistance(this.owner, _root["hero" + _local4]) <= ((this.owner.weapon.radius + this.owner.puzo) + _root["hero" + _local4].puzo)) {
var _local5 = new Line(_root["hero" + _local4]._x, _root["hero" + _local4]._y, this.owner._x, this.owner._y);
var _local6 = _local5.wall();
if (_local6 == null) {
if (_root.sunet == true) {
this.owner.hitSound.start();
}
if (dmg == undefined) {
_root["hero" + _local4].getShot(this.owner.weapon.damage);
} else {
_root["hero" + _local4].getShot(dmg);
}
}
}
}
}
_local4++;
}
};
Object.registerClass("Slash", Slash);
Medkit.prototype = new MovieClip();
Medkit.prototype.onEnterFrame = function () {
if (this.hitTest(_root.hero0._x, _root.hero0._y, false)) {
if (_root.hero0.HP < _root.hero0.MAX_HP) {
_root.hero0.HP = _root.hero0.HP + this.heal_power;
if (_root.hero0.HP > _root.hero0.MAX_HP) {
_root.hero0.HP = _root.hero0.MAX_HP;
}
this.removeMovieClip();
}
}
};
Medkit_20.prototype = new Medkit();
Object.registerClass("Medkit_20", Medkit_20);
Medkit_40.prototype = new Medkit();
Object.registerClass("Medkit_40", Medkit_40);
Medkit_60.prototype = new Medkit();
Object.registerClass("Medkit_60", Medkit_60);
Medkit_80.prototype = new Medkit();
Object.registerClass("Medkit_80", Medkit_80);
Armor.prototype = new MovieClip();
Armor.prototype.onEnterFrame = function () {
if (this.hitTest(_root.hero0._x, _root.hero0._y, false)) {
if (_root.hero0.AC < 100) {
_root.hero0.AC = _root.hero0.AC + this.heal_power;
if (_root.hero0.AC > 100) {
_root.hero0.AC = 100;
}
this.removeMovieClip();
}
}
};
Armor_20.prototype = new Armor();
Object.registerClass("Armor_20", Armor_20);
Armor_40.prototype = new Armor();
Object.registerClass("Armor_40", Armor_40);
Arrows.prototype = new MovieClip();
Arrows.prototype.onEnterFrame = function () {
if (this.hitTest(_root.hero0._x, _root.hero0._y, false)) {
_root.hero0.ammo = _root.hero0.ammo + this.power;
this.removeMovieClip();
}
};
Arrows_20.prototype = new Arrows();
Object.registerClass("Arrows_20", Arrows_20);
Arrows_40.prototype = new Arrows();
Object.registerClass("Arrows_40", Arrows_40);
Crate.prototype = new MovieClip();
Crate.prototype.lineHit = function (line) {
var _local3 = this.ln1.cross(line);
var _local2 = this.ln2.cross(line);
return((_local3 != null) || (_local2 != null));
};
Crate.prototype.lineCross = function (line) {
var _local2 = this.ln1.cross(line);
var _local3 = this.ln2.cross(line);
if (_local2 != null) {
return(_local2);
}
return(_local3);
};
Crate.prototype.getLines = function (x, y) {
this.ln1 = new Line((this._x + x) - 15, (this._y + y) - 15, (this._x + x) + 15, (this._y + y) + 15);
this.ln2 = new Line((this._x + x) - 15, (this._y + y) + 15, (this._x + x) + 15, (this._y + y) - 15);
};
Crate.prototype.getShot = function (damage) {
if (this.HP > 0) {
this.HP = this.HP - damage;
if (this.HP <= 0) {
this.gotoAndPlay("die");
}
}
};
Crate.prototype.addPrize = function () {
if (this.prize != "no") {
_root.attachMovie(this.prize, "wpn_" + _global.down_depth, _global.down_depth, {_x:this._x, _y:this._y});
_global.down_depth++;
}
};
Crate.prototype.tBarrel = function () {
this.HP = 25;
};
Object.registerClass("Barrel", Crate);
_root.you._y = _root.you._y - 150;
fscommand ("showmenu", false);
fscommand ("fullscreen", false);
_root.pauza = false;
_root.wood_breakx = new Sound();
_root.wood_breakx.attachSound("wood_breakx");
_global.walls = new Array();
_root.setDefaults();
_root.loadDefaults();
Frame 176
_root.you._y = _root.you._y - 150;
MOVIE_PLAYED = false;
Frame 177
_root.score = 0;
_root.you._y = _root.you._y - 150;
stop();
Instance of Symbol 723 MovieClip in Frame 178
//component parameters
onClipEvent (construct) {
who = "Player";
team = 1;
skin = "RobinNoArmor";
wpn = "GoodBow";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 178
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_20";
}
Instance of Symbol 725 MovieClip in Frame 178
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_20";
}
Instance of Symbol 725 MovieClip in Frame 178
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_20";
}
Frame 178
if (false) {
}
Instance of Symbol 723 MovieClip in Frame 179
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 179
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_20";
}
Instance of Symbol 737 MovieClip in Frame 179
//component parameters
onClipEvent (construct) {
myvar = "default";
}
Frame 179
if (false) {
}
Instance of Symbol 723 MovieClip in Frame 180
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 180
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 180
if (false) {
}
Instance of Symbol 723 MovieClip in Frame 181
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 181
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_40";
}
Instance of Symbol 723 MovieClip in Frame 181
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 181
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 181
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 182
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_40";
}
Instance of Symbol 723 MovieClip in Frame 182
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
go_x = 0;
go_y = 0;
}
Instance of Symbol 737 MovieClip in Frame 182
//component parameters
onClipEvent (construct) {
myvar = "default";
}
Instance of Symbol 723 MovieClip in Frame 182
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 182
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "no";
}
Instance of Symbol 725 MovieClip in Frame 182
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_40";
}
Instance of Symbol 723 MovieClip in Frame 182
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 182
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
go_x = 0;
go_y = 0;
}
Frame 182
if (false) {
}
Instance of Symbol 723 MovieClip in Frame 183
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 183
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "no";
}
Instance of Symbol 737 MovieClip in Frame 183
//component parameters
onClipEvent (construct) {
myvar = "default";
}
Instance of Symbol 723 MovieClip in Frame 183
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 183
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_40";
}
Instance of Symbol 725 MovieClip in Frame 183
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "no";
}
Instance of Symbol 723 MovieClip in Frame 183
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 183
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 183
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
go_x = 0;
go_y = 0;
}
Frame 183
if (false) {
}
Instance of Symbol 723 MovieClip in Frame 184
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 184
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 184
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_20";
}
Instance of Symbol 725 MovieClip in Frame 184
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "no";
}
Instance of Symbol 723 MovieClip in Frame 184
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 184
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "no";
}
Instance of Symbol 723 MovieClip in Frame 184
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 184
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 184
if (false) {
}
Instance of Symbol 723 MovieClip in Frame 185
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 185
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "no";
}
Instance of Symbol 723 MovieClip in Frame 185
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 185
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_20";
}
Instance of Symbol 725 MovieClip in Frame 185
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_20";
}
Instance of Symbol 723 MovieClip in Frame 185
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 185
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
go_x = 0;
go_y = 0;
}
Frame 185
if (false) {
}
Instance of Symbol 723 MovieClip in Frame 186
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Guardian";
wpn = "no";
melee = "GoodSword";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 186
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_20";
}
Instance of Symbol 723 MovieClip in Frame 186
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 186
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_20";
}
Instance of Symbol 723 MovieClip in Frame 186
//component parameters
onClipEvent (construct) {
who = "Player";
team = 1;
skin = "Robin";
wpn = "GoodBow";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 186
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Spearman";
wpn = "no";
melee = "Spear";
go_x = 0;
go_y = 0;
}
Frame 186
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 187
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_40";
}
Instance of Symbol 723 MovieClip in Frame 187
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 187
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Armor_20";
}
Instance of Symbol 737 MovieClip in Frame 187
//component parameters
onClipEvent (construct) {
myvar = "default";
}
Instance of Symbol 723 MovieClip in Frame 187
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Spearman";
wpn = "no";
melee = "Spear";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 187
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Spearman";
wpn = "no";
melee = "Spear";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 187
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Guardian";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 187
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_40";
}
Frame 187
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 188
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_20";
}
Instance of Symbol 723 MovieClip in Frame 188
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 188
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 189
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_40";
}
Instance of Symbol 725 MovieClip in Frame 189
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Armor_20";
}
Instance of Symbol 737 MovieClip in Frame 189
//component parameters
onClipEvent (construct) {
myvar = "default";
}
Instance of Symbol 723 MovieClip in Frame 189
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Guardian";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 189
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Spearman";
wpn = "no";
melee = "Spear";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 189
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Guardian";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 189
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_40";
}
Instance of Symbol 725 MovieClip in Frame 189
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_20";
}
Frame 189
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 190
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Armor_40";
}
Instance of Symbol 723 MovieClip in Frame 190
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Guardian";
wpn = "no";
melee = "GoodSword";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 190
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_20";
}
Instance of Symbol 723 MovieClip in Frame 190
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 190
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 190
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 190
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Guardian";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 190
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 191
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_80";
}
Instance of Symbol 725 MovieClip in Frame 191
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_20";
}
Instance of Symbol 723 MovieClip in Frame 191
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Guardian";
wpn = "no";
melee = "GoodSword";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 191
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Armor_40";
}
Instance of Symbol 723 MovieClip in Frame 191
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 191
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Spearman";
wpn = "no";
melee = "Spear";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 191
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Guardian";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 191
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 192
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_40";
}
Instance of Symbol 737 MovieClip in Frame 192
//component parameters
onClipEvent (construct) {
myvar = "default";
}
Instance of Symbol 723 MovieClip in Frame 192
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Guardian";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 192
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Guardian";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 192
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 192
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 192
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Spearman";
wpn = "no";
melee = "Spear";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 192
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Armor_40";
}
Instance of Symbol 725 MovieClip in Frame 192
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_20";
}
Frame 192
if (false) {
}
Instance of Symbol 723 MovieClip in Frame 193
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 193
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Spearman";
wpn = "no";
melee = "Spear";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 193
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 193
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 193
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 193
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Spearman";
wpn = "no";
melee = "Spear";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 193
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Spearman";
wpn = "no";
melee = "Spear";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 193
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Spearman";
wpn = "no";
melee = "Spear";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 193
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_40";
}
Frame 193
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 194
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_20";
}
Instance of Symbol 723 MovieClip in Frame 194
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 194
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 194
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorGuardian";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 194
//component parameters
onClipEvent (construct) {
who = "Player";
team = 1;
skin = "Robin";
wpn = "GoodBow";
melee = "GoodSword";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 194
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 194
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 194
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 195
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_40";
}
Instance of Symbol 723 MovieClip in Frame 195
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorSpearman";
wpn = "no";
melee = "Lance";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 737 MovieClip in Frame 195
//component parameters
onClipEvent (construct) {
myvar = "default";
}
Instance of Symbol 723 MovieClip in Frame 195
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 195
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorSpearman";
wpn = "no";
melee = "Lance";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 195
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_20";
}
Frame 195
if (false) {
}
Instance of Symbol 723 MovieClip in Frame 196
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorSpearman";
wpn = "no";
melee = "Lance";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 737 MovieClip in Frame 196
//component parameters
onClipEvent (construct) {
myvar = "default";
}
Instance of Symbol 723 MovieClip in Frame 196
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorSpearman";
wpn = "no";
melee = "Lance";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 196
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_40";
}
Instance of Symbol 723 MovieClip in Frame 196
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 196
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 196
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 197
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_20";
}
Instance of Symbol 737 MovieClip in Frame 197
//component parameters
onClipEvent (construct) {
myvar = "default";
}
Instance of Symbol 725 MovieClip in Frame 197
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Armor_40";
}
Instance of Symbol 723 MovieClip in Frame 197
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 197
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 197
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 197
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 197
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorGuardian";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 197
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorGuardian";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 197
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Bowman";
wpn = "Bow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 197
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 198
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Armor_20";
}
Instance of Symbol 723 MovieClip in Frame 198
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 198
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 198
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 198
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 198
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 198
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 198
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 198
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 198
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 198
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 198
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Swordsman";
wpn = "no";
melee = "Sword";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 198
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 199
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_40";
}
Instance of Symbol 723 MovieClip in Frame 199
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorSpearman";
wpn = "no";
melee = "Lance";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 199
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorSpearman";
wpn = "no";
melee = "Lance";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 199
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorSpearman";
wpn = "no";
melee = "Lance";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 199
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorSpearman";
wpn = "no";
melee = "Lance";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 199
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 199
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 199
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorGuardian";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 199
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_20";
}
Instance of Symbol 725 MovieClip in Frame 199
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_20";
}
Frame 199
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 200
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Armor_40";
}
Instance of Symbol 723 MovieClip in Frame 200
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 200
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 200
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 200
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 200
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 200
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorGuardian";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 200
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorGuardian";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 200
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_40";
}
Frame 200
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 201
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_20";
}
Instance of Symbol 723 MovieClip in Frame 201
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 201
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 201
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 201
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 201
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Mayor";
wpn = "no";
melee = "MayorSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 201
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 202
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_20";
}
Instance of Symbol 725 MovieClip in Frame 202
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_20";
}
Instance of Symbol 723 MovieClip in Frame 202
//component parameters
onClipEvent (construct) {
who = "Player";
team = 1;
skin = "Robin";
wpn = "GoodBow";
melee = "MayorSword";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 202
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Knight";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 202
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorGuardian";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 202
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorGuardian";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 202
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 203
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Medkit_40";
}
Instance of Symbol 725 MovieClip in Frame 203
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Armor_20";
}
Instance of Symbol 723 MovieClip in Frame 203
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Berserker";
wpn = "no";
melee = "Skimitar";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 737 MovieClip in Frame 203
//component parameters
onClipEvent (construct) {
myvar = "default";
}
Instance of Symbol 723 MovieClip in Frame 203
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 203
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Berserker";
wpn = "no";
melee = "Skimitar";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 203
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Berserker";
wpn = "no";
melee = "Skimitar";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 203
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 204
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Armor_40";
}
Instance of Symbol 737 MovieClip in Frame 204
//component parameters
onClipEvent (construct) {
myvar = "default";
}
Instance of Symbol 723 MovieClip in Frame 204
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 204
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 204
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 204
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 204
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 204
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 204
//component parameters
onClipEvent (construct) {
tp = "Barrel";
prz = "Arrows_40";
}
Instance of Symbol 723 MovieClip in Frame 204
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorSpearman";
wpn = "no";
melee = "Lance";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 204
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorSpearman";
wpn = "no";
melee = "Lance";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 204
if (false) {
}
Instance of Symbol 723 MovieClip in Frame 205
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorSpearman";
wpn = "no";
melee = "Lance";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 205
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorSpearman";
wpn = "no";
melee = "Lance";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 205
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorSpearman";
wpn = "no";
melee = "Lance";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 205
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 725 MovieClip in Frame 205
//component parameters
onClipEvent (construct) {
!!!ERROR
Frame 205
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 206
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 723 MovieClip in Frame 206
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 206
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 206
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 206
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 206
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Frame 206
if (false) {
}
Instance of Symbol 723 MovieClip in Frame 207
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 207
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 207
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 207
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 207
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Knight";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 207
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Knight";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 207
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 208
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 723 MovieClip in Frame 208
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Berserker";
wpn = "no";
melee = "Skimitar";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 208
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 208
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 208
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 208
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Berserker";
wpn = "no";
melee = "Skimitar";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 208
if (false) {
}
Instance of Symbol 723 MovieClip in Frame 209
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorSpearman";
wpn = "no";
melee = "Lance";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 209
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorSpearman";
wpn = "no";
melee = "Lance";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 209
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 209
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Councillor";
wpn = "MultiBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 209
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 723 MovieClip in Frame 209
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Monk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 209
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 209
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 209
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 209
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 210
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 723 MovieClip in Frame 210
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorKnight";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 210
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 725 MovieClip in Frame 210
//component parameters
onClipEvent (construct) {
!!!ERROR
Frame 210
if (false) {
}
Instance of Symbol 737 MovieClip in Frame 211
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 725 MovieClip in Frame 211
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 723 MovieClip in Frame 211
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorMonk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 211
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorMonk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 211
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorMonk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 211
//component parameters
onClipEvent (construct) {
!!!ERROR
Frame 211
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 212
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 725 MovieClip in Frame 212
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 723 MovieClip in Frame 212
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorKnight";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 212
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorKnight";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 212
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 213
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 723 MovieClip in Frame 213
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorKnight";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 213
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorKnight";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 213
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 725 MovieClip in Frame 213
//component parameters
onClipEvent (construct) {
!!!ERROR
Frame 213
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 214
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 725 MovieClip in Frame 214
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 723 MovieClip in Frame 214
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorMonk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 214
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorMonk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 214
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorMonk";
wpn = "no";
melee = "no";
rng = "Crossbow";
go_x = 0;
go_y = 0;
}
Frame 214
if (false) {
}
Instance of Symbol 723 MovieClip in Frame 215
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorKnight";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 215
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorKnight";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 215
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 215
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 215
//component parameters
onClipEvent (construct) {
!!!ERROR
Frame 215
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 216
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 723 MovieClip in Frame 216
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 216
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 216
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 216
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Ranger";
wpn = "GoodBow";
melee = "no";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 725 MovieClip in Frame 216
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 725 MovieClip in Frame 216
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 723 MovieClip in Frame 216
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Berserker";
wpn = "no";
melee = "Skimitar";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 216
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "Berserker";
wpn = "no";
melee = "Skimitar";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 216
if (false) {
}
Instance of Symbol 725 MovieClip in Frame 217
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 725 MovieClip in Frame 217
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 723 MovieClip in Frame 217
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorKnight";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 217
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "MajorKnight";
wpn = "no";
melee = "GoodSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Instance of Symbol 723 MovieClip in Frame 217
//component parameters
onClipEvent (construct) {
who = "Soldier";
team = 2;
skin = "King";
wpn = "no";
melee = "KingSword";
rng = "no";
go_x = 0;
go_y = 0;
}
Frame 217
if (false) {
}
Frame 218
!!!ERROR
Frame 219
if (false) {
}
Frame 220
if (_global.LEVELS_UNLOCKED < 2) {
_global.LEVELS_UNLOCKED = 2;
}
_root.saveDefaults();
Frame 221
if (_global.LEVELS_UNLOCKED < 3) {
_global.LEVELS_UNLOCKED = 3;
}
_root.saveDefaults();
Frame 222
if (_global.LEVELS_UNLOCKED < 4) {
_global.LEVELS_UNLOCKED = 4;
}
_root.saveDefaults();
Frame 223
if (_global.LEVELS_UNLOCKED < 5) {
_global.LEVELS_UNLOCKED = 5;
}
_root.saveDefaults();
Frame 224
!!!ERROR
Instance of Symbol 592 MovieClip in Frame 224
//component parameters
onClipEvent (construct) {
!!!ERROR
Frame 225
var i = 1;
while (i <= 5) {
if (i > _global.LEVELS_UNLOCKED) {
_root[("lv" + i) + "_btn"].enabled = false;
_root[("lv" + i) + "_txt"].textColor = 11307613 /* 0xAC8A5D */;
} else {
_root[("lv" + i) + "_btn"].enabled = true;
_root[("lv" + i) + "_txt"].textColor = 0;
}
i++;
}
_root.scr.meniu._visible = false;
Frame 226
trace("SCOR :" + _root.score);
removeMovieClip(_root.xxc1);
removeMovieClip(_root.xxc2);
removeMovieClip(_root.xxc3);
removeMovieClip(_root.xxc4);
Frame 227
_root.menu.removeMovieClip();
_root.gameid = "TheLegendOfRobinHood";
_root.best = _root.score;
_root.score = 0;
_root.updated = 0;
_root.done = 0;
done = 0;
i = 1;
while (i <= 100) {
_root["score" + i] = null;
_root["name" + i] = null;
_root["escore" + i] = null;
_root["ename" + i] = null;
i++;
}
Frame 229
cale = "http://www.freeonlinegames.com/scoreboard/score.php?game=" + _root.gameid;
loadVariablesNum (cale, 0, "POST");
Frame 230
if (false) {
}
Frame 237
!!!ERROR
Frame 241
monthnume = new Array();
monthscor = new Array();
i = 1;
while (i <= 100) {
monthnume[i] = _root["name" + i];
monthscor[i] = Number(_root["score" + i].slice(0, _root["score" + i].length - 1));
i++;
}
evernume = new Array();
everscor = new Array();
i = 1;
while (i <= 100) {
evernume[i] = _root["ename" + i];
everscor[i] = Number(_root["escore" + i].slice(0, _root["escore" + i].length - 1));
i++;
}
Frame 242
stop();
if (_root.best > everscor[100]) {
scoreWind.gotoAndStop("submitScoreYes");
} else {
scoreWind.gotoAndStop("submitScoreNo");
}
if (_root.xdada == 1) {
scoreWind.gotoAndStop("topEver");
}
Symbol 2 MovieClip [FUIComponentSymbol] Frame 1
#initclip 1
function FUIComponentClass() {
this.init();
}
FUIComponentClass.prototype = new MovieClip();
FUIComponentClass.prototype.init = function () {
this.enable = true;
this.focused = false;
this.useHandCursor = false;
this._accImpl = new Object();
this._accImpl.stub = true;
this.styleTable = new Array();
if (_global.globalStyleFormat == undefined) {
_global.globalStyleFormat = new FStyleFormat();
globalStyleFormat.isGlobal = true;
_global._focusControl = new Object();
_global._focusControl.onSetFocus = function (oldFocus, newFocus) {
oldFocus.myOnKillFocus();
newFocus.myOnSetFocus();
};
Selection.addListener(_global._focusControl);
}
if (this._name != undefined) {
this._focusrect = false;
this.tabEnabled = true;
this.focusEnabled = true;
this.tabChildren = false;
this.tabFocused = true;
if (this.hostStyle == undefined) {
globalStyleFormat.addListener(this);
} else {
this.styleTable = this.hostStyle;
}
this.deadPreview._visible = false;
this.deadPreview._width = (this.deadPreview._height = 1);
this.methodTable = new Object();
this.keyListener = new Object();
this.keyListener.controller = this;
this.keyListener.onKeyDown = function () {
this.controller.myOnKeyDown();
};
this.keyListener.onKeyUp = function () {
this.controller.myOnKeyUp();
};
for (var _local3 in this.styleFormat_prm) {
this.setStyleProperty(_local3, this.styleFormat_prm[_local3]);
}
}
};
FUIComponentClass.prototype.setEnabled = function (enabledFlag) {
this.enable = ((arguments.length > 0) ? (enabledFlag) : true);
this.tabEnabled = (this.focusEnabled = enabledFlag);
if ((!this.enable) && (this.focused)) {
Selection.setFocus(undefined);
}
};
FUIComponentClass.prototype.getEnabled = function () {
return(this.enable);
};
FUIComponentClass.prototype.setSize = function (w, h) {
this.width = w;
this.height = h;
this.focusRect.removeMovieClip();
};
FUIComponentClass.prototype.setChangeHandler = function (chng, obj) {
this.handlerObj = ((obj == undefined) ? (this._parent) : (obj));
this.changeHandler = chng;
};
FUIComponentClass.prototype.invalidate = function (methodName) {
this.methodTable[methodName] = true;
this.onEnterFrame = this.cleanUI;
};
FUIComponentClass.prototype.cleanUI = function () {
if (this.methodTable.setSize) {
this.setSize(this.width, this.height);
} else {
this.cleanUINotSize();
}
this.methodTable = new Object();
delete this.onEnterFrame;
};
FUIComponentClass.prototype.cleanUINotSize = function () {
for (var _local2 in this.methodTable) {
this[_local2]();
}
};
FUIComponentClass.prototype.drawRect = function (x, y, w, h) {
var _local4 = this.styleTable.focusRectInner.value;
var _local5 = this.styleTable.focusRectOuter.value;
if (_local4 == undefined) {
_local4 = 16777215 /* 0xFFFFFF */;
}
if (_local5 == undefined) {
_local5 = 0;
}
this.createEmptyMovieClip("focusRect", 1000);
this.focusRect.controller = this;
this.focusRect.lineStyle(1, _local5);
this.focusRect.moveTo(x, y);
this.focusRect.lineTo(x + w, y);
this.focusRect.lineTo(x + w, y + h);
this.focusRect.lineTo(x, y + h);
this.focusRect.lineTo(x, y);
this.focusRect.lineStyle(1, _local4);
this.focusRect.moveTo(x + 1, y + 1);
this.focusRect.lineTo((x + w) - 1, y + 1);
this.focusRect.lineTo((x + w) - 1, (y + h) - 1);
this.focusRect.lineTo(x + 1, (y + h) - 1);
this.focusRect.lineTo(x + 1, y + 1);
};
FUIComponentClass.prototype.pressFocus = function () {
this.tabFocused = false;
this.focusRect.removeMovieClip();
Selection.setFocus(this);
};
FUIComponentClass.prototype.drawFocusRect = function () {
this.drawRect(-2, -2, this.width + 4, this.height + 4);
};
FUIComponentClass.prototype.myOnSetFocus = function () {
this.focused = true;
Key.addListener(this.keyListener);
if (this.tabFocused) {
this.drawFocusRect();
}
};
FUIComponentClass.prototype.myOnKillFocus = function () {
this.tabFocused = true;
this.focused = false;
this.focusRect.removeMovieClip();
Key.removeListener(this.keyListener);
};
FUIComponentClass.prototype.executeCallBack = function () {
this.handlerObj[this.changeHandler](this);
};
FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) {
this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal);
};
FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) {
if (value == "") {
return(undefined);
}
var _local17 = parseInt(value);
if (!isNaN(_local17)) {
value = _local17;
}
var _local16 = ((arguments.length > 2) ? (isGlobal) : false);
if (this.styleTable[propName] == undefined) {
this.styleTable[propName] = new Object();
this.styleTable[propName].useGlobal = true;
}
if (this.styleTable[propName].useGlobal || (!_local16)) {
this.styleTable[propName].value = value;
if (this.setCustomStyleProperty(propName, value)) {
} else if (propName == "embedFonts") {
this.invalidate("setSize");
} else if (propName.subString(0, 4) == "text") {
if (this.textStyle == undefined) {
this.textStyle = new TextFormat();
}
var _local18 = propName.subString(4, propName.length);
this.textStyle[_local18] = value;
this.invalidate("setSize");
} else {
for (var _local15 in this.styleTable[propName].coloredMCs) {
var _local4 = new Color(this.styleTable[propName].coloredMCs[_local15]);
if (this.styleTable[propName].value == undefined) {
var _local5 = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"};
_local4.setTransform(_local5);
} else {
_local4.setRGB(value);
}
}
}
this.styleTable[propName].useGlobal = _local16;
}
};
FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) {
if (this.styleTable[propName] == undefined) {
this.styleTable[propName] = new Object();
this.styleTable[propName].useGlobal = true;
}
if (this.styleTable[propName].coloredMCs == undefined) {
this.styleTable[propName].coloredMCs = new Object();
}
this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef;
if (this.styleTable[propName].value != undefined) {
var _local4 = new Color(skinMCRef);
_local4.setRGB(this.styleTable[propName].value);
}
};
_global.FStyleFormat = function () {
this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true};
this.listeners = new Object();
this.isGlobal = false;
if (arguments.length > 0) {
for (var _local3 in arguments[0]) {
this[_local3] = arguments[0][_local3];
}
}
};
_global.FStyleFormat.prototype = new Object();
FStyleFormat.prototype.addListener = function () {
var _local3 = 0;
while (_local3 < arguments.length) {
var _local4 = arguments[_local3];
this.listeners[arguments[_local3]] = _local4;
for (var _local5 in this) {
if (this.isAStyle(_local5)) {
_local4.updateStyleProperty(this, _local5.toString());
}
}
_local3++;
}
};
FStyleFormat.prototype.removeListener = function (component) {
this.listeners[component] = undefined;
for (var _local4 in this) {
if (this.isAStyle(_local4)) {
if (component.styleTable[_local4].useGlobal == this.isGlobal) {
component.styleTable[_local4].useGlobal = true;
var _local3 = (this.isGlobal ? undefined : (globalStyleFormat[_local4]));
component.setStyleProperty(_local4, _local3, true);
}
}
}
};
FStyleFormat.prototype.applyChanges = function () {
var _local6 = 0;
for (var _local5 in this.listeners) {
var _local3 = this.listeners[_local5];
if (arguments.length > 0) {
var _local4 = 0;
while (_local4 < arguments.length) {
if (this.isAStyle(arguments[_local4])) {
_local3.updateStyleProperty(this, arguments[_local4]);
}
_local4++;
}
} else {
for (var _local4 in this) {
if (this.isAStyle(_local4)) {
_local3.updateStyleProperty(this, _local4.toString());
}
}
}
}
};
FStyleFormat.prototype.isAStyle = function (name) {
return((this.nonStyles[name] ? false : true));
};
#endinitclip
!!!ERROR
Symbol 15 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 24 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 33 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "foregroundDisabled");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 34 MovieClip [UpArrow] Frame 1
!!!ERROR
Symbol 34 MovieClip [UpArrow] Frame 2
!!!ERROR
Symbol 34 MovieClip [UpArrow] Frame 3
!!!ERROR
Symbol 40 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 49 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 54 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(highlight3D_mc, "highlight3D");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
Symbol 55 MovieClip [ScrollThumb] Frame 1
!!!ERROR
Symbol 63 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 71 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 79 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "foregroundDisabled");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 80 MovieClip [DownArrow] Frame 1
!!!ERROR
Symbol 80 MovieClip [DownArrow] Frame 2
!!!ERROR
Symbol 80 MovieClip [DownArrow] Frame 3
!!!ERROR
Symbol 83 MovieClip [Smoke] Frame 45
!!!ERROR
Symbol 88 MovieClip [Options] Frame 1
!!!ERROR
Symbol 133 MovieClip Frame 1
var component = _parent;
component.registerSkinElement(track_mc, "scrollTrack");
Symbol 134 MovieClip [FScrollBarSymbol] Frame 1
#initclip 2
FScrollBarClass = function () {
if (this._height == 4) {
return(undefined);
}
this.init();
this.minPos = (this.maxPos = (this.pageSize = (this.largeScroll = 0)));
this.smallScroll = 1;
this.width = (this.horizontal ? (this._width) : (this._height));
this._xscale = (this._yscale = 100);
this.setScrollPosition(0);
this.tabEnabled = false;
if (this._targetInstanceName.length > 0) {
this.setScrollTarget(this._parent[this._targetInstanceName]);
}
this.tabChildren = false;
this.setSize(this.width);
};
FScrollBarClass.prototype = new FUIComponentClass();
FScrollBarClass.prototype.setHorizontal = function (flag) {
if (this.horizontal && (!flag)) {
this._xscale = 100;
this._rotation = 0;
} else if (flag && (!this.horizontal)) {
this._xscale = -100;
this._rotation = -90;
}
this.horizontal = flag;
};
FScrollBarClass.prototype.setScrollProperties = function (pSize, mnPos, mxPos) {
if (!this.enable) {
return(undefined);
}
this.pageSize = pSize;
this.minPos = Math.max(mnPos, 0);
this.maxPos = Math.max(mxPos, 0);
this.scrollPosition = Math.max(this.minPos, this.scrollPosition);
this.scrollPosition = Math.min(this.maxPos, this.scrollPosition);
if ((this.maxPos - this.minPos) <= 0) {
this.scrollThumb_mc.removeMovieClip();
this.upArrow_mc.gotoAndStop(3);
this.downArrow_mc.gotoAndStop(3);
this.downArrow_mc.onPress = (this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = null));
this.upArrow_mc.onPress = (this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = null));
this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onRelease = null);
this.scrollTrack_mc.onDragOut = (this.scrollTrack_mc.onRollOut = null);
this.scrollTrack_mc.useHandCursor = false;
} else {
var _local2 = this.getScrollPosition();
this.upArrow_mc.gotoAndStop(1);
this.downArrow_mc.gotoAndStop(1);
this.upArrow_mc.onPress = (this.upArrow_mc.onDragOver = this.startUpScroller);
this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = this.stopScrolling);
this.downArrow_mc.onPress = (this.downArrow_mc.onDragOver = this.startDownScroller);
this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = this.stopScrolling);
this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onDragOver = this.startTrackScroller);
this.scrollTrack_mc.onRelease = this.stopScrolling;
this.scrollTrack_mc.onDragOut = this.stopScrolling;
this.scrollTrack_mc.onRollOut = this.stopScrolling;
this.scrollTrack_mc.useHandCursor = false;
this.attachMovie("ScrollThumb", "scrollThumb_mc", 3);
this.scrollThumb_mc._x = 0;
this.scrollThumb_mc._y = this.upArrow_mc._height;
this.scrollThumb_mc.onPress = this.startDragThumb;
this.scrollThumb_mc.controller = this;
this.scrollThumb_mc.onRelease = (this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb);
this.scrollThumb_mc.useHandCursor = false;
this.thumbHeight = (this.pageSize / ((this.maxPos - this.minPos) + this.pageSize)) * this.trackSize;
this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid;
this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop;
this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot;
this.thumbHeight = Math.max(this.thumbHeight, 6);
this.midHeight = (this.thumbHeight - this.thumbTop_mc._height) - this.thumbBot_mc._height;
this.thumbMid_mc._yScale = (this.midHeight * 100) / this.thumbMid_mc._height;
this.thumbMid_mc._y = this.thumbTop_mc._height;
this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight;
this.scrollTop = this.scrollThumb_mc._y;
this.trackHeight = this.trackSize - this.thumbHeight;
this.scrollBot = this.trackHeight + this.scrollTop;
_local2 = Math.min(_local2, this.maxPos);
this.setScrollPosition(Math.max(_local2, this.minPos));
}
};
FScrollBarClass.prototype.getScrollPosition = function () {
return(this.scrollPosition);
};
FScrollBarClass.prototype.setScrollPosition = function (pos) {
this.scrollPosition = pos;
if (this.scrollThumb_mc != undefined) {
pos = Math.min(pos, this.maxPos);
pos = Math.max(pos, this.minPos);
}
this.scrollThumb_mc._y = (((pos - this.minPos) * this.trackHeight) / (this.maxPos - this.minPos)) + this.scrollTop;
this.executeCallBack();
};
FScrollBarClass.prototype.setLargeScroll = function (lScroll) {
this.largeScroll = lScroll;
};
FScrollBarClass.prototype.setSmallScroll = function (sScroll) {
this.smallScroll = sScroll;
};
FScrollBarClass.prototype.setEnabled = function (enabledFlag) {
var _local3 = this.enable;
if (enabledFlag && (!_local3)) {
this.enable = enabledFlag;
if (this.textField != undefined) {
this.setScrollTarget(this.textField);
} else {
this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos);
this.setScrollPosition(this.cachedPos);
}
this.clickFilter = undefined;
} else if ((!enabledFlag) && (_local3)) {
this.textField.removeListener(this);
this.cachedPos = this.getScrollPosition();
this.cachedMinPos = this.minPos;
this.cachedMaxPos = this.maxPos;
if (this.clickFilter == undefined) {
this.setScrollProperties(this.pageSize, 0, 0);
} else {
this.clickFilter = true;
}
this.enable = enabledFlag;
}
};
FScrollBarClass.prototype.setSize = function (hgt) {
if (this._height == 1) {
return(undefined);
}
this.width = hgt;
this.scrollTrack_mc._yscale = 100;
this.scrollTrack_mc._yscale = (100 * this.width) / this.scrollTrack_mc._height;
if (this.upArrow_mc == undefined) {
this.attachMovie("UpArrow", "upArrow_mc", 1);
this.attachMovie("DownArrow", "downArrow_mc", 2);
this.downArrow_mc.controller = (this.upArrow_mc.controller = this);
this.upArrow_mc.useHandCursor = (this.downArrow_mc.useHandCursor = false);
this.upArrow_mc._x = (this.upArrow_mc._y = 0);
this.downArrow_mc._x = 0;
}
this.scrollTrack_mc.controller = this;
this.downArrow_mc._y = this.width - this.downArrow_mc._height;
this.trackSize = this.width - (2 * this.downArrow_mc._height);
if (this.textField != undefined) {
this.onTextChanged();
} else {
this.setScrollProperties(this.pageSize, this.minPos, this.maxPos);
}
};
FScrollBarClass.prototype.scrollIt = function (inc, mode) {
var _local3 = this.smallScroll;
if (inc != "one") {
_local3 = ((this.largeScroll == 0) ? (this.pageSize) : (this.largeScroll));
}
var _local2 = this.getScrollPosition() + (mode * _local3);
if (_local2 > this.maxPos) {
_local2 = this.maxPos;
} else if (_local2 < this.minPos) {
_local2 = this.minPos;
}
this.setScrollPosition(_local2);
};
FScrollBarClass.prototype.startDragThumb = function () {
this.lastY = this._ymouse;
this.onMouseMove = this.controller.dragThumb;
};
FScrollBarClass.prototype.dragThumb = function () {
this.scrollMove = this._ymouse - this.lastY;
this.scrollMove = this.scrollMove + this._y;
if (this.scrollMove < this.controller.scrollTop) {
this.scrollMove = this.controller.scrollTop;
} else if (this.scrollMove > this.controller.scrollBot) {
this.scrollMove = this.controller.scrollBot;
}
this._y = this.scrollMove;
var _local2 = this.controller;
_local2.scrollPosition = Math.round(((_local2.maxPos - _local2.minPos) * (this._y - _local2.scrollTop)) / _local2.trackHeight) + _local2.minPos;
this.controller.isScrolling = true;
updateAfterEvent();
this.controller.executeCallBack();
};
FScrollBarClass.prototype.stopDragThumb = function () {
this.controller.isScrolling = false;
this.onMouseMove = null;
};
FScrollBarClass.prototype.startTrackScroller = function () {
this.controller.trackScroller();
this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "page", -1);
};
FScrollBarClass.prototype.scrollInterval = function (inc, mode) {
clearInterval(this.scrolling);
if (inc == "page") {
this.trackScroller();
} else {
this.scrollIt(inc, mode);
}
this.scrolling = setInterval(this, "scrollInterval", 35, inc, mode);
};
FScrollBarClass.prototype.trackScroller = function () {
if ((this.scrollThumb_mc._y + this.thumbHeight) < this._ymouse) {
this.scrollIt("page", 1);
} else if (this.scrollThumb_mc._y > this._ymouse) {
this.scrollIt("page", -1);
}
};
FScrollBarClass.prototype.stopScrolling = function () {
this.controller.downArrow_mc.gotoAndStop(1);
this.controller.upArrow_mc.gotoAndStop(1);
clearInterval(this.controller.scrolling);
};
FScrollBarClass.prototype.startUpScroller = function () {
this.controller.upArrow_mc.gotoAndStop(2);
this.controller.scrollIt("one", -1);
this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", -1);
};
FScrollBarClass.prototype.startDownScroller = function () {
this.controller.downArrow_mc.gotoAndStop(2);
this.controller.scrollIt("one", 1);
this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", 1);
};
FScrollBarClass.prototype.setScrollTarget = function (tF) {
if (tF == undefined) {
this.textField.removeListener(this);
delete this.textField[(this.horizontal ? "hScroller" : "vScroller")];
if ((this.textField.hScroller != undefined) && (this.textField.vScroller != undefined)) {
this.textField.unwatch("text");
this.textField.unwatch("htmltext");
}
}
this.textField = undefined;
if (!(tF instanceof TextField)) {
return(undefined);
}
this.textField = tF;
this.textField[(this.horizontal ? "hScroller" : "vScroller")] = this;
this.onTextChanged();
this.onChanged = function () {
this.onTextChanged();
};
this.onScroller = function () {
if (!this.isScrolling) {
if (!this.horizontal) {
this.setScrollPosition(this.textField.scroll);
} else {
this.setScrollPosition(this.textField.hscroll);
}
}
};
this.textField.addListener(this);
this.textField.watch("text", this.callback);
this.textField.watch("htmlText", this.callback);
};
FScrollBarClass.prototype.callback = function (prop, oldVal, newVal) {
clearInterval(this.hScroller.synchScroll);
clearInterval(this.vScroller.synchScroll);
this.hScroller.synchScroll = setInterval(this.hScroller, "onTextChanged", 50);
this.vScroller.synchScroll = setInterval(this.vScroller, "onTextChanged", 50);
return(newVal);
};
FScrollBarClass.prototype.onTextChanged = function () {
if ((!this.enable) || (this.textField == undefined)) {
return(undefined);
}
clearInterval(this.synchScroll);
if (this.horizontal) {
var _local3 = this.textField.hscroll;
this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll);
this.setScrollPosition(Math.min(_local3, this.textField.maxhscroll));
} else {
var _local3 = this.textField.scroll;
var _local2 = this.textField.bottomScroll - this.textField.scroll;
this.setScrollProperties(_local2, 1, this.textField.maxscroll);
this.setScrollPosition(Math.min(_local3, this.textField.maxscroll));
}
};
FScrollBarClass.prototype.executeCallBack = function () {
if (this.textField == undefined) {
super.executeCallBack();
} else if (this.horizontal) {
this.textField.hscroll = this.getScrollPosition();
} else {
this.textField.scroll = this.getScrollPosition();
}
};
Object.registerClass("FScrollBarSymbol", FScrollBarClass);
#endinitclip
!!!ERROR
Symbol 143 Button
on (release) {
!!!ERROR
Symbol 147 MovieClip Frame 1
!!!ERROR
Symbol 157 MovieClip Frame 1
!!!ERROR
Symbol 167 MovieClip Frame 50
!!!ERROR
Symbol 190 MovieClip Frame 1
!!!ERROR
Symbol 190 MovieClip Frame 28
!!!ERROR
Symbol 401 MovieClip [Bow] Frame 1
!!!ERROR
Symbol 401 MovieClip [Bow] Frame 2
this._parent._parent.play();
Symbol 401 MovieClip [Bow] Frame 11
this._parent._parent._parent.bolt();
Symbol 401 MovieClip [Bow] Frame 23
!!!ERROR
Symbol 405 MovieClip [Sword] Frame 1
!!!ERROR
Symbol 405 MovieClip [Sword] Frame 2
this._parent._parent.play();
Symbol 405 MovieClip [Sword] Frame 9
!!!ERROR
Symbol 410 MovieClip [Barrel] Frame 1
!!!ERROR
Symbol 410 MovieClip [Barrel] Frame 2
if (_root.sunet == true) {
_root.wood_breakx.start();
}
Symbol 410 MovieClip [Barrel] Frame 11
!!!ERROR
Symbol 416 MovieClip [Spear] Frame 1
!!!ERROR
Symbol 416 MovieClip [Spear] Frame 2
this._parent._parent.play();
Symbol 416 MovieClip [Spear] Frame 11
!!!ERROR
Symbol 422 MovieClip [GoodBow] Frame 1
!!!ERROR
Symbol 422 MovieClip [GoodBow] Frame 2
this._parent._parent.play();
Symbol 422 MovieClip [GoodBow] Frame 11
this._parent._parent._parent.bolt();
Symbol 422 MovieClip [GoodBow] Frame 23
!!!ERROR
Symbol 424 MovieClip [GoodSword] Frame 1
!!!ERROR
Symbol 424 MovieClip [GoodSword] Frame 2
this._parent._parent.play();
Symbol 424 MovieClip [GoodSword] Frame 9
!!!ERROR
Symbol 432 MovieClip [Crossbow] Frame 1
!!!ERROR
Symbol 432 MovieClip [Crossbow] Frame 2
this._parent._parent.play();
Symbol 432 MovieClip [Crossbow] Frame 8
this._parent._parent._parent.bolt();
Symbol 432 MovieClip [Crossbow] Frame 36
!!!ERROR
Symbol 434 MovieClip [Lance] Frame 1
!!!ERROR
Symbol 434 MovieClip [Lance] Frame 2
this._parent._parent.play();
Symbol 434 MovieClip [Lance] Frame 11
!!!ERROR
Symbol 436 MovieClip [MayorSword] Frame 1
!!!ERROR
Symbol 436 MovieClip [MayorSword] Frame 2
this._parent._parent.play();
Symbol 436 MovieClip [MayorSword] Frame 9
!!!ERROR
Symbol 438 MovieClip [Skimitar] Frame 1
!!!ERROR
Symbol 438 MovieClip [Skimitar] Frame 2
this._parent._parent.play();
Symbol 438 MovieClip [Skimitar] Frame 9
!!!ERROR
Symbol 445 MovieClip [MultiBow] Frame 1
!!!ERROR
Symbol 445 MovieClip [MultiBow] Frame 2
this._parent._parent.play();
Symbol 445 MovieClip [MultiBow] Frame 11
this._parent._parent._parent.multiBolt();
Symbol 445 MovieClip [MultiBow] Frame 23
!!!ERROR
Symbol 447 MovieClip [KingSword] Frame 1
!!!ERROR
Symbol 447 MovieClip [KingSword] Frame 2
this._parent._parent.play();
Symbol 447 MovieClip [KingSword] Frame 9
!!!ERROR
Symbol 449 MovieClip [Bullet] Frame 1
!!!ERROR
Symbol 449 MovieClip [Bullet] Frame 3
!!!ERROR
Symbol 452 MovieClip [Dropped] Frame 30
!!!ERROR
Symbol 463 MovieClip [Blood_1] Frame 15
if (_global.BLOOD) {
this.swapDepths(_global.d_blood);
_global.d_blood = _global.d_blood + ((_global.d_blood <= 12000) ? 1 : -4000);
this.stop();
} else {
this.unloadMovie();
}
Symbol 468 MovieClip [Blood_2] Frame 15
if (_global.BLOOD) {
this.swapDepths(_global.d_blood);
_global.d_blood = _global.d_blood + ((_global.d_blood <= 12000) ? 1 : -4000);
this.stop();
} else {
this.unloadMovie();
}
Symbol 473 MovieClip [Blood_3] Frame 15
if (_global.BLOOD) {
this.swapDepths(_global.d_blood);
_global.d_blood = _global.d_blood + ((_global.d_blood <= 12000) ? 1 : -4000);
this.stop();
} else {
this.unloadMovie();
}
Symbol 486 MovieClip Frame 1
!!!ERROR
Symbol 486 MovieClip Frame 10
!!!ERROR
Symbol 493 Button
on (release) {
targetul3 = "http://www.freegamesforyourwebsite.com/?" + _parent.wxnume;
getURL (targetul3, "_blank");
}
Symbol 494 Button
on (release) {
targetul2 = "http://www.freeonlinegames.com/?" + _parent.wxnume;
getURL (targetul2, "_blank");
}
Symbol 495 Button
on (release) {
!!!ERROR
Symbol 496 Button
on (release) {
targetul1 = ("http://www.freeonlinegames.com/downloads/" + _parent.wxnume) + ".exe";
getURL (targetul1);
}
Symbol 497 Button
on (release, keyPress "p") {
!!!ERROR
Symbol 498 Button
on (release, keyPress "z") {
!!!ERROR
Symbol 512 MovieClip Frame 1
stop();
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
_parent.wxbutno = 6;
if (((_parent.wxdownload == false) && (_parent.wxpause == true)) && (_parent.wxsound == true)) {
this.gotoAndStop(2);
_parent.wxbutno = 5;
}
if (((_parent.wxdownload == true) && (_parent.wxpause == false)) && (_parent.wxsound == true)) {
this.gotoAndStop(3);
_parent.wxbutno = 5;
}
if (((_parent.wxdownload == true) && (_parent.wxpause == true)) && (_parent.wxsound == false)) {
this.gotoAndStop(4);
_parent.wxbutno = 5;
}
if (((_parent.wxdownload == false) && (_parent.wxpause == false)) && (_parent.wxsound == true)) {
this.gotoAndStop(5);
_parent.wxbutno = 4;
}
if (((_parent.wxdownload == false) && (_parent.wxpause == true)) && (_parent.wxsound == false)) {
this.gotoAndStop(6);
_parent.wxbutno = 4;
}
if (((_parent.wxdownload == true) && (_parent.wxpause == false)) && (_parent.wxsound == false)) {
this.gotoAndStop(7);
_parent.wxbutno = 4;
}
if (((_parent.wxdownload == false) && (_parent.wxpause == false)) && (_parent.wxsound == false)) {
this.gotoAndStop(8);
_parent.wxbutno = 3;
}
Symbol 512 MovieClip Frame 2
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
Symbol 512 MovieClip Frame 3
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
Symbol 512 MovieClip Frame 4
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
Symbol 512 MovieClip Frame 5
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
Symbol 512 MovieClip Frame 6
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
Symbol 512 MovieClip Frame 7
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
Symbol 512 MovieClip Frame 8
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
Symbol 517 Button
on (press) {
!!!ERROR
Symbol 520 MovieClip Frame 1
stop();
if (_parent.wxaliniere == "Dreapta-Jos") {
this.gotoAndStop(2);
}
if ((_parent.wxaliniere == "Dreapta-Sus") && (_parent.wxbutno == 6)) {
this.gotoAndStop(3);
}
if ((_parent.wxaliniere == "Dreapta-Sus") && (_parent.wxbutno == 5)) {
this.gotoAndStop(5);
}
if ((_parent.wxaliniere == "Dreapta-Sus") && (_parent.wxbutno == 4)) {
this.gotoAndStop(6);
}
if ((_parent.wxaliniere == "Dreapta-Sus") && (_parent.wxbutno == 3)) {
this.gotoAndStop(7);
}
if ((_parent.wxaliniere == "Stanga-Sus") && (_parent.wxbutno == 6)) {
this.gotoAndStop(4);
}
if ((_parent.wxaliniere == "Stanga-Sus") && (_parent.wxbutno == 5)) {
this.gotoAndStop(8);
}
if ((_parent.wxaliniere == "Stanga-Sus") && (_parent.wxbutno == 4)) {
this.gotoAndStop(9);
}
if ((_parent.wxaliniere == "Stanga-Sus") && (_parent.wxbutno == 3)) {
this.gotoAndStop(10);
}
Symbol 520 MovieClip Frame 2
tg._x = 147;
tg._y = 1.1;
Symbol 520 MovieClip Frame 3
tg._x = 147;
tg._y = -174.9;
Symbol 520 MovieClip Frame 4
tg._x = 1.5;
tg._y = -174.9;
Symbol 520 MovieClip Frame 5
tg._x = 147;
tg._y = -152.4;
Symbol 520 MovieClip Frame 6
tg._x = 147;
tg._y = -128.9;
Symbol 520 MovieClip Frame 7
tg._x = 147;
tg._y = -104.9;
Symbol 520 MovieClip Frame 8
tg._x = 1.5;
tg._y = -151.4;
Symbol 520 MovieClip Frame 9
tg._x = 1.5;
tg._y = -128.4;
Symbol 520 MovieClip Frame 10
tg._x = 1.5;
tg._y = -104.9;
Symbol 539 MovieClip Frame 1
stop();
this.onRollOver = function () {
if (_parent._parent._currentframe <= 10) {
_parent._parent.gotoAndPlay(11);
}
};
if (_parent._parent.wxbutno == 5) {
this.gotoAndStop(2);
}
if (_parent._parent.wxbutno == 4) {
this.gotoAndStop(3);
}
if (_parent._parent.wxbutno == 3) {
this.gotoAndStop(4);
}
Symbol 540 MovieClip Frame 1
stop();
if ((_parent.wxaliniere == "Stanga-Sus") || (_parent.wxaliniere == "Dreapta-Sus")) {
this.gotoAndStop(2);
}
Symbol 541 MovieClip Frame 1
function pauseFunction() {
if (!_root.pauza) {
_root.hero0._visible = false;
_root.pauza = true;
_parent.pau._visible = true;
this.gotoAndStop("deschis");
} else {
_root.hero0._visible = true;
_root.pauza = false;
_parent.pau._visible = false;
this.gotoAndStop("inchis");
}
}
function soundFunction() {
if (_root.sunet) {
_root.sunet = false;
trace("sunet: " + _root.sunet);
} else {
_root.sunet = true;
trace("sunet: " + _root.sunet);
}
}
function mainMenuFunction() {
r = 0;
while (r <= 20) {
_root["hero" + r].removeMovieClip();
r++;
}
_root.you._y = _root.you._y - 450;
_root.gotoAndStop("coperta");
_root.unloadMap();
_root.again.removeMovieClip();
}
stop();
wxnguides._alpha = 0;
my_color = new Color(my_mc);
my_color.setRGB(wxculoare);
myValue = my_color.getRGB().toString(16);
trace(myValue.length);
if (myValue.length == 5) {
myValue = "0" + myValue;
}
if (myValue.length == 4) {
myValue = "00" + myValue;
}
if (myValue.length == 3) {
myValue = "000" + myValue;
}
if (myValue.length == 2) {
myValue = "0000" + myValue;
}
if (myValue.length == 1) {
myValue = "00000" + myValue;
}
xtbcolor = myValue;
xrtb5 = Number("0x" + xtbcolor.slice(0, 2)) - 1;
xgtb5 = Number("0x" + xtbcolor.slice(2, 4)) - 1;
xbtb5 = Number("0x" + xtbcolor.slice(4, 6)) - 1;
wxculoarea2 = new Color(wxnmenu.tg);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:xrtb5, ga:"100", gb:xgtb5, ba:"100", bb:xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
wxculoarea3 = new Color(wxnfer);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:xrtb5, ga:"100", gb:xgtb5, ba:"100", bb:xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
Symbol 541 MovieClip Frame 10
!!!ERROR
Symbol 541 MovieClip Frame 20
!!!ERROR
Instance of Symbol 541 MovieClip "meniu" in Symbol 548 MovieClip [Screen] Frame 1
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 547 MovieClip "pau" in Symbol 548 MovieClip [Screen] Frame 1
onClipEvent (load) {
!!!ERROR
Symbol 551 MovieClip [YOU] Frame 1
this.onEnterFrame = function () {
this._x = _root.hero0._x;
this._y = _root.hero0._y;
this._alpha--;
};
Symbol 551 MovieClip [YOU] Frame 100
!!!ERROR
Symbol 554 Button
on (release) {
targetul1 = ("http://www.freeonlinegames.com/downloads/" + _parent.wynume) + ".exe";
getURL (targetul1);
}
Symbol 561 MovieClip Frame 1
stop();
if (_parent.wyaliniere == "Centru") {
this.gotoAndStop(2);
}
if (_parent.wyaliniere == "Dreapta") {
this.gotoAndStop(3);
}
Symbol 561 MovieClip Frame 2
wxculoarea2 = new Color(but1);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 561 MovieClip Frame 3
wxculoarea2 = new Color(but1);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 562 Button
on (release) {
targetul2 = "http://www.freeonlinegames.com/?" + _parent.wynume;
getURL (targetul2, "_blank");
}
Symbol 569 MovieClip Frame 1
stop();
if (_parent.wyaliniere == "Centru") {
this.gotoAndStop(2);
}
if (_parent.wyaliniere == "Dreapta") {
this.gotoAndStop(3);
}
Symbol 569 MovieClip Frame 2
wxculoarea2 = new Color(but2);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 569 MovieClip Frame 3
wxculoarea2 = new Color(but2);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 570 Button
on (release) {
targetul3 = "http://www.freegamesforyourwebsite.com/?" + _parent.wynume;
getURL (targetul3, "_blank");
}
Symbol 571 MovieClip Frame 1
stop();
if (_parent.wyaliniere == "Centru") {
this.gotoAndStop(2);
}
if (_parent.wyaliniere == "Dreapta") {
this.gotoAndStop(3);
}
Symbol 571 MovieClip Frame 2
wxculoarea2 = new Color(but3);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 571 MovieClip Frame 3
wxculoarea2 = new Color(but3);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 576 Button
on (release) {
targetul1 = ("http://www.freeonlinegames.com/downloads/" + _parent.wynume) + ".exe";
getURL (targetul1);
}
Symbol 577 MovieClip Frame 1
!!!ERROR
Symbol 580 Button
on (release) {
targetul2 = "http://www.freeonlinegames.com/?" + _parent.wynume;
getURL (targetul2, "_blank");
}
Symbol 581 MovieClip Frame 1
!!!ERROR
Symbol 582 Button
on (release, keyPress "p") {
!!!ERROR
Symbol 589 MovieClip Frame 1
stop();
if (_parent.wyaliniere == "Centru") {
this.gotoAndStop(2);
}
if (_parent.wyaliniere == "Dreapta") {
this.gotoAndStop(3);
}
Symbol 589 MovieClip Frame 2
wxculoarea2 = new Color(but4);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 589 MovieClip Frame 3
wxculoarea2 = new Color(but4);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 590 Button
on (release, keyPress "p") {
!!!ERROR
Symbol 591 MovieClip Frame 1
!!!ERROR
Symbol 592 MovieClip Frame 1
!!!ERROR
Symbol 592 MovieClip Frame 2
stop();
my_color = new Color(my_mc);
my_color.setRGB(wyculoare);
myValue = my_color.getRGB().toString(16);
trace(myValue.length);
if (myValue.length == 5) {
myValue = "0" + myValue;
}
if (myValue.length == 4) {
myValue = "00" + myValue;
}
if (myValue.length == 3) {
myValue = "000" + myValue;
}
if (myValue.length == 2) {
myValue = "0000" + myValue;
}
if (myValue.length == 1) {
myValue = "00000" + myValue;
}
xtbcolor = myValue;
xrtb5 = Number("0x" + xtbcolor.slice(0, 2)) - 1;
xgtb5 = Number("0x" + xtbcolor.slice(2, 4)) - 1;
xbtb5 = Number("0x" + xtbcolor.slice(4, 6)) - 1;
wxculoarea2 = new Color(wynbut1.but1);
wxculoarea3 = new Color(wynbut2.but2);
wxculoarea4 = new Color(wynbut3.but3);
wxculoarea5 = new Color(wynbut4.but4);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:xrtb5, ga:"100", gb:xgtb5, ba:"100", bb:xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
wxculoarea3.setTransform(myColorTransform);
wxculoarea4.setTransform(myColorTransform);
wxculoarea5.setTransform(myColorTransform);
Symbol 592 MovieClip Frame 3
stop();
my_color = new Color(my_mc);
my_color.setRGB(wyculoare);
myValue = my_color.getRGB().toString(16);
trace(myValue.length);
if (myValue.length == 5) {
myValue = "0" + myValue;
}
if (myValue.length == 4) {
myValue = "00" + myValue;
}
if (myValue.length == 3) {
myValue = "000" + myValue;
}
if (myValue.length == 2) {
myValue = "0000" + myValue;
}
if (myValue.length == 1) {
myValue = "00000" + myValue;
}
xtbcolor = myValue;
xrtb5 = Number("0x" + xtbcolor.slice(0, 2)) - 1;
xgtb5 = Number("0x" + xtbcolor.slice(2, 4)) - 1;
xbtb5 = Number("0x" + xtbcolor.slice(4, 6)) - 1;
wxculoarea2 = new Color(wynbut1.but1);
wxculoarea3 = new Color(wynbut2.but2);
wxculoarea4 = new Color(wynbut3.but3);
wxculoarea5 = new Color(wynbut4.but4);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:xrtb5, ga:"100", gb:xgtb5, ba:"100", bb:xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
wxculoarea3.setTransform(myColorTransform);
wxculoarea4.setTransform(myColorTransform);
wxculoarea5.setTransform(myColorTransform);
Symbol 592 MovieClip Frame 4
stop();
my_color = new Color(my_mc);
my_color.setRGB(wyculoare);
myValue = my_color.getRGB().toString(16);
trace(myValue.length);
if (myValue.length == 5) {
myValue = "0" + myValue;
}
if (myValue.length == 4) {
myValue = "00" + myValue;
}
if (myValue.length == 3) {
myValue = "000" + myValue;
}
if (myValue.length == 2) {
myValue = "0000" + myValue;
}
if (myValue.length == 1) {
myValue = "00000" + myValue;
}
xtbcolor = myValue;
xrtb5 = Number("0x" + xtbcolor.slice(0, 2)) - 1;
xgtb5 = Number("0x" + xtbcolor.slice(2, 4)) - 1;
xbtb5 = Number("0x" + xtbcolor.slice(4, 6)) - 1;
wxculoarea2 = new Color(wynbut1.but1);
wxculoarea3 = new Color(wynbut2.but2);
wxculoarea4 = new Color(wynbut3.but3);
wxculoarea5 = new Color(wynbut4.but4);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:xrtb5, ga:"100", gb:xgtb5, ba:"100", bb:xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
wxculoarea3.setTransform(myColorTransform);
wxculoarea4.setTransform(myColorTransform);
wxculoarea5.setTransform(myColorTransform);
Symbol 592 MovieClip Frame 5
stop();
my_color = new Color(my_mc);
my_color.setRGB(wyculoare);
myValue = my_color.getRGB().toString(16);
trace(myValue.length);
if (myValue.length == 5) {
myValue = "0" + myValue;
}
if (myValue.length == 4) {
myValue = "00" + myValue;
}
if (myValue.length == 3) {
myValue = "000" + myValue;
}
if (myValue.length == 2) {
myValue = "0000" + myValue;
}
if (myValue.length == 1) {
myValue = "00000" + myValue;
}
xtbcolor = myValue;
xrtb5 = Number("0x" + xtbcolor.slice(0, 2)) - 1;
xgtb5 = Number("0x" + xtbcolor.slice(2, 4)) - 1;
xbtb5 = Number("0x" + xtbcolor.slice(4, 6)) - 1;
wxculoarea2 = new Color(wynbut1.but1);
wxculoarea3 = new Color(wynbut2.but2);
wxculoarea4 = new Color(wynbut3.but3);
wxculoarea5 = new Color(wynbut4.but4);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:xrtb5, ga:"100", gb:xgtb5, ba:"100", bb:xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
wxculoarea3.setTransform(myColorTransform);
wxculoarea4.setTransform(myColorTransform);
wxculoarea5.setTransform(myColorTransform);
Symbol 592 MovieClip Frame 6
stop();
my_color = new Color(my_mc);
my_color.setRGB(wyculoare);
myValue = my_color.getRGB().toString(16);
trace(myValue.length);
if (myValue.length == 5) {
myValue = "0" + myValue;
}
if (myValue.length == 4) {
myValue = "00" + myValue;
}
if (myValue.length == 3) {
myValue = "000" + myValue;
}
if (myValue.length == 2) {
myValue = "0000" + myValue;
}
if (myValue.length == 1) {
myValue = "00000" + myValue;
}
xtbcolor = myValue;
xrtb5 = Number("0x" + xtbcolor.slice(0, 2)) - 1;
xgtb5 = Number("0x" + xtbcolor.slice(2, 4)) - 1;
xbtb5 = Number("0x" + xtbcolor.slice(4, 6)) - 1;
wxculoarea2 = new Color(wynbut1.but1);
wxculoarea3 = new Color(wynbut2.but2);
wxculoarea4 = new Color(wynbut3.but3);
wxculoarea5 = new Color(wynbut4.but4);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:xrtb5, ga:"100", gb:xgtb5, ba:"100", bb:xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
wxculoarea3.setTransform(myColorTransform);
wxculoarea4.setTransform(myColorTransform);
wxculoarea5.setTransform(myColorTransform);
Symbol 595 Button
on (release) {
_root.unloadAll();
_root.gotoAndStop("coperta");
_root.again.removeMovieClip();
}
Symbol 598 Button
on (release) {
_root.score = 0;
_root.unloadAll();
if (_root._currentframe <= 185) {
_root.gotoAndStop("EPISODE_1");
} else if (_root._currentframe <= 193) {
_root.gotoAndStop("EPISODE_2");
} else if (_root._currentframe <= 201) {
_root.gotoAndStop("EPISODE_3");
} else if (_root._currentframe <= 209) {
_root.gotoAndStop("EPISODE_4");
} else {
_root.gotoAndStop("EPISODE_5");
}
_root.again.removeMovieClip();
}
Symbol 601 Button
on (release) {
_root.xdada = 0;
r = 0;
while (r <= 20) {
_root["hero" + r].removeMovieClip();
r++;
}
_root.gotoAndPlay("submitScore");
_root.win.removeMovieClip();
_root.unloadMap();
_root.again.removeMovieClip();
}
Instance of Symbol 592 MovieClip in Symbol 604 MovieClip [again_question] Frame 1
//component parameters
onClipEvent (construct) {
!!!ERROR
Symbol 612 Button
on (release) {
_root.unloadMap();
_root.gotoAndStop("coperta");
_root.win.removeMovieClip();
}
Symbol 613 Button
on (release) {
_root.xdada = 0;
r = 0;
while (r <= 20) {
_root["hero" + r].removeMovieClip();
r++;
}
_root.gotoAndPlay("submitScore");
_root.win.removeMovieClip();
_root.unloadMap();
}
Instance of Symbol 592 MovieClip in Symbol 614 MovieClip [Congratulations] Frame 1
//component parameters
onClipEvent (construct) {
!!!ERROR
Symbol 644 MovieClip Frame 1
!!!ERROR
Symbol 644 MovieClip Frame 22
!!!ERROR
Symbol 644 MovieClip Frame 57
!!!ERROR
Symbol 644 MovieClip Frame 72
!!!ERROR
Symbol 644 MovieClip Frame 97
!!!ERROR
Symbol 644 MovieClip Frame 98
!!!ERROR
Symbol 644 MovieClip Frame 104
!!!ERROR
Symbol 644 MovieClip Frame 110
!!!ERROR
Symbol 651 MovieClip Frame 4
!!!ERROR
Symbol 651 MovieClip Frame 7
!!!ERROR
Symbol 651 MovieClip Frame 22
!!!ERROR
Symbol 651 MovieClip Frame 24
!!!ERROR
Symbol 651 MovieClip Frame 55
!!!ERROR
Symbol 651 MovieClip Frame 70
!!!ERROR
Symbol 651 MovieClip Frame 89
!!!ERROR
Symbol 651 MovieClip Frame 109
!!!ERROR
Symbol 651 MovieClip Frame 199
this._parent.plusClip();
this._parent.plusAltClip();
this.gotoAndStop(this._parent.weapon._type);
Symbol 653 MovieClip [Player] Frame 1
!!!ERROR
Symbol 653 MovieClip [Player] Frame 30
!!!ERROR
Symbol 658 MovieClip [Hero] Frame 1
!!!ERROR
Symbol 658 MovieClip [Hero] Frame 30
if (this.SKIN == "King") {
_root.gotoAndStop("THE_END");
_root.unloadAll();
}
if (_global.CORPSES) {
stop();
} else {
this.removeMovieClip();
}
Instance of Symbol 604 MovieClip [again_question] in Symbol 662 MovieClip Frame 1
onClipEvent (load) {
!!!ERROR
Symbol 672 Button
on (release) {
_root.v = 1;
_root.gotoAndStop("EPISODES");
}
Symbol 675 Button
on (release) {
!!!ERROR
Symbol 678 Button
on (release) {
!!!ERROR
Symbol 685 MovieClip Frame 1
!!!ERROR
Symbol 685 MovieClip Frame 2
!!!ERROR
Symbol 685 MovieClip Frame 3
!!!ERROR
Symbol 685 MovieClip Frame 4
!!!ERROR
Symbol 688 MovieClip Frame 1
this.onRelease = function () {
_global[val] = !_global[val];
if (_global[val]) {
gotoAndStop (3);
} else {
gotoAndStop (2);
}
};
if (_global[val]) {
gotoAndStop (3);
} else {
gotoAndStop (2);
}
Symbol 688 MovieClip Frame 2
!!!ERROR
Symbol 688 MovieClip Frame 3
!!!ERROR
Symbol 692 Button
on (release) {
!!!ERROR
Symbol 694 Button
on (release) {
!!!ERROR
Symbol 695 Button
on (release) {
!!!ERROR
Symbol 696 Button
on (release) {
!!!ERROR
Symbol 708 MovieClip Frame 2
!!!ERROR
Instance of Symbol 592 MovieClip in Symbol 708 MovieClip Frame 2
//component parameters
onClipEvent (construct) {
!!!ERROR
Symbol 708 MovieClip Frame 3
!!!ERROR
Instance of Symbol 688 MovieClip in Symbol 708 MovieClip Frame 3
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 688 MovieClip in Symbol 708 MovieClip Frame 3
//component parameters
onClipEvent (construct) {
!!!ERROR
Instance of Symbol 688 MovieClip in Symbol 708 MovieClip Frame 3
//component parameters
onClipEvent (construct) {
!!!ERROR
Symbol 708 MovieClip Frame 4
!!!ERROR
Symbol 721 MovieClip Frame 1
!!!ERROR
Symbol 723 MovieClip Frame 1
if (who == "Player") {
_root.addPlayer(this._x, this._y, this._rotation, skin, wpn, melee, rng, "t" + skin);
} else {
_root.addSoldier(this._x, this._y, this._rotation, skin, wpn, melee, rng, "t" + skin, go_x, go_y, team);
}
this.removeMovieClip();
this.unloadMovie();
Symbol 725 MovieClip Frame 1
_root.attachMovie(tp, "hero" + _global.hero, _global.down_depth, {_x:this._x, _y:this._y});
_root["hero" + _global.hero].prize = prz;
_root["hero" + _global.hero]["t" + tp]();
_global.down_depth++;
_global.hero++;
this.removeMovieClip();
this.unloadMovie();
Symbol 735 MovieClip Frame 1
!!!ERROR
Symbol 737 MovieClip Frame 1
if (_root.hero0.HP <= 0) {
_root.hero0.gotoAndPlay(1);
_root.hero0.HP = _global.SV_HP;
_root.hero0.AC = _global.SV_AC;
_root.hero0.ammo = _global.SV_ammo;
_root.hero0.sideView(_global.SV_SKIN);
_root.hero0.changeWeapons(_root.hero0.weap_1);
_root.hero0.swapDepths(65000);
}
_root.hero0._x = this._x;
_root.hero0._y = this._y;
if (_root.hero0.HP < 50) {
_root.hero0.HP = 50;
}
this.removeMovieClip();
this.unloadMovie();
Symbol 744 MovieClip Frame 1
!!!ERROR
Symbol 748 MovieClip Frame 1
!!!ERROR
Symbol 753 MovieClip Frame 1
!!!ERROR
Symbol 756 MovieClip Frame 1
!!!ERROR
Symbol 760 MovieClip Frame 1
!!!ERROR
Symbol 764 MovieClip Frame 1
!!!ERROR
Symbol 773 MovieClip Frame 1
!!!ERROR
Symbol 782 MovieClip Frame 1
!!!ERROR
Symbol 785 MovieClip Frame 1
!!!ERROR
Symbol 789 MovieClip Frame 1
!!!ERROR
Symbol 797 MovieClip Frame 1
!!!ERROR
Symbol 806 MovieClip Frame 1
!!!ERROR
Symbol 809 MovieClip Frame 1
!!!ERROR
Symbol 812 MovieClip Frame 1
!!!ERROR
Symbol 827 MovieClip Frame 1
!!!ERROR
Symbol 833 MovieClip Frame 1
!!!ERROR
Symbol 837 MovieClip Frame 1
!!!ERROR
Symbol 841 MovieClip Frame 1
!!!ERROR
Symbol 845 MovieClip Frame 1
!!!ERROR
Symbol 849 MovieClip Frame 1
!!!ERROR
Symbol 852 MovieClip Frame 1
!!!ERROR
Symbol 856 MovieClip Frame 1
!!!ERROR
Symbol 859 MovieClip Frame 1
!!!ERROR
Symbol 863 MovieClip Frame 1
!!!ERROR
Symbol 867 MovieClip Frame 1
!!!ERROR
Symbol 873 MovieClip Frame 1
!!!ERROR
Symbol 877 MovieClip Frame 1
!!!ERROR
Symbol 882 MovieClip Frame 1
!!!ERROR
Symbol 885 MovieClip Frame 1
!!!ERROR
Symbol 889 MovieClip Frame 1
!!!ERROR
Symbol 898 MovieClip Frame 1
!!!ERROR
Symbol 902 MovieClip Frame 1
!!!ERROR
Symbol 907 MovieClip Frame 1
!!!ERROR
Symbol 914 MovieClip Frame 1
!!!ERROR
Symbol 922 MovieClip Frame 1
!!!ERROR
Symbol 926 MovieClip Frame 1
!!!ERROR
Symbol 931 MovieClip Frame 1
!!!ERROR
Symbol 934 MovieClip Frame 1
!!!ERROR
Symbol 945 Button
on (release) {
_root.pauza = false;
_root.loadMap(175);
}
Symbol 949 Button
on (release) {
_root.pauza = false;
_root.loadMap(183);
}
Symbol 953 Button
on (release) {
_root.pauza = false;
_root.loadMap(191);
}
Symbol 957 Button
on (release) {
_root.pauza = false;
_root.loadMap(199);
}
Symbol 961 Button
on (release) {
_root.pauza = false;
_root.loadMap(207);
}
Symbol 965 Button
on (release) {
_root.unloadMap();
_root.gotoAndStop("coperta");
_root.win.removeMovieClip();
_root.again.removeMovieClip();
}
Symbol 966 Button
on (release) {
_root.xdada = 0;
r = 0;
while (r <= 20) {
_root["hero" + r].removeMovieClip();
r++;
}
_root.gotoAndPlay("submitScore");
_root.win.removeMovieClip();
_root.again.removeMovieClip();
_root.unloadMap();
}
Symbol 967 Button
on (release) {
!!!ERROR
Symbol 976 Button
on (release) {
!!!ERROR
Symbol 977 Button
on (release) {
!!!ERROR
Symbol 978 Button
on (release) {
!!!ERROR
Symbol 979 Button
on (release) {
!!!ERROR
Symbol 980 Button
on (release) {
!!!ERROR
Symbol 986 MovieClip Frame 1
scroll1.setScrollProperties(130, 0, 220);
this.chHand1 = function () {
scoresScroll._y = -(scroll1.getScrollPosition() * 2);
};
scroll1.setChangeHandler("chHand1");
i = 1;
while (i <= 30) {
scoresScroll["n" + i].text = _root.monthnume[i];
scoresScroll["s" + i].text = _root.monthscor[i];
i++;
}
Symbol 993 Button
on (release) {
!!!ERROR
Symbol 1298 MovieClip Frame 1
scroll1.setScrollProperties(130, 0, 915);
this.chHand1 = function () {
scoresScroll._y = -(scroll1.getScrollPosition() * 2);
};
scroll1.setChangeHandler("chHand1");
q = 1;
while (q <= 100) {
scoresScroll["n" + q].text = _root.evernume[q];
scoresScroll["s" + q].text = _root.everscor[q];
q++;
}
Instance of Symbol 134 MovieClip [FScrollBarSymbol] "scroll1" in Symbol 1298 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
!!!ERROR
Symbol 1304 Button
on (release) {
!!!ERROR
Symbol 1320 Button
on (release) {
i = 1;
while (i <= 100) {
if (_root.best > _root.monthscor[i]) {
k = 100;
while (k >= (i + 1)) {
_root.monthscor[k] = _root.monthscor[k - 1];
_root.monthnume[k] = _root.monthnume[k - 1];
k--;
}
_root.monthscor[i] = _root.best;
_root.monthnume[i] = _root.nickname;
i = 31;
}
i++;
}
i = 1;
while (i <= 100) {
if (_root.best > _root.everscor[i]) {
k = 100;
while (k >= (i + 1)) {
_root.everscor[k] = _root.everscor[k - 1];
_root.evernume[k] = _root.evernume[k - 1];
k--;
}
_root.everscor[i] = _root.best;
_root.evernume[i] = _root.nickname;
i = 31;
}
i++;
}
gotoAndPlay ("submit");
}
Symbol 1326 Button
on (release) {
!!!ERROR
Symbol 1330 MovieClip Frame 1
!!!ERROR
Symbol 1330 MovieClip Frame 9
!!!ERROR
Symbol 1330 MovieClip Frame 22
!!!ERROR
Symbol 1330 MovieClip Frame 34
var my_date:Date = new Date();
codul = Math.round(my_date.getTime() / 1000) * _root.best;
cale = (((((("http://www.freeonlinegames.com/scoreboard/update.php?game=" + _root.gameid) + "&name=") + _root.nickname) + "&score=") + _root.best) + "&code=") + codul;
loadVariablesNum (cale, 0, "GET");
gotoAndPlay ("loop");
Symbol 1330 MovieClip Frame 45
if (_root.updated != 1) {
gotoAndPlay ("loop");
} else {
_root.best = 0;
_root.score = 0;
_root.xdada = 1;
_root.gotoAndPlay("submitScore");
}