Frame 1
fscommand ("fullscreen", "false");
fscommand ("allowscale", "false");
Stage.showMenu = false;
_level0.punktid = 0;
_level0.zoomlevel = 200;
Instance of Symbol 8 MovieClip in Frame 1
on (release) {
getURL ("http://www.gamershood.com", "_blank");
}
Instance of Symbol 39 MovieClip "cheat" in Frame 1
on (keyPress "<Tab>") {
this.gotoAndPlay(2);
}
Frame 2
lets_call_it_cookie = SharedObject.getLocal("gamershood_sniper4");
counter_text.text = ("" + lets_call_it_cookie.data.counter) + "";
Stage.showMenu = false;
stop();
Instance of Symbol 8 MovieClip in Frame 2
on (release) {
getURL ("http://www.gamershood.com", "_blank");
}
Frame 4
Mouse.show();
stopAllSounds();
Instance of Symbol 8 MovieClip in Frame 4
on (release) {
getURL ("http://www.gamershood.com", "_blank");
}
Instance of Symbol 84 MovieClip "lvls" in Frame 4
onClipEvent (load) {
if (_level0.pask == 2) {
this.gotoAndStop(2);
} else if (_level0.pask == 3) {
this.gotoAndStop(3);
} else if (_level0.pask == 4) {
this.gotoAndStop(4);
} else if (_level0.pask == 5) {
this.gotoAndStop(5);
} else if (_level0.pask == 6) {
this.gotoAndStop(6);
} else {
this.gotoAndStop(1);
}
}
onClipEvent (load) {
if (_level0.pask == 1) {
this.gotoAndStop(1);
}
}
Instance of Symbol 132 MovieClip in Frame 4
onClipEvent (load) {
if (_level0.zoomsize == 2) {
this.gotoAndStop(2);
} else if (_level0.zoomsize == 3) {
this.gotoAndStop(3);
} else if (_level0.zoomsize == 4) {
this.gotoAndStop(4);
} else if (_level0.zoomsize == 5) {
this.gotoAndStop(5);
} else if (_level0.zoomsize == 6) {
this.gotoAndStop(6);
}
}
Instance of Symbol 151 MovieClip in Frame 4
onClipEvent (load) {
if (_level0.zoomin == 2) {
this.gotoAndStop(2);
} else if (_level0.zoomin == 3) {
this.gotoAndStop(3);
} else if (_level0.zoomin == 4) {
this.gotoAndStop(4);
} else if (_level0.zoomin == 5) {
this.gotoAndStop(5);
} else if (_level0.zoomin == 6) {
this.gotoAndStop(6);
}
}
Instance of Symbol 163 MovieClip in Frame 4
onClipEvent (load) {
if (_level0.scope == 2) {
this.gotoAndStop(2);
} else if (_level0.scope == 3) {
this.gotoAndStop(3);
} else if (_level0.scope == 4) {
this.gotoAndStop(4);
} else if (_level0.scope == 5) {
this.gotoAndStop(5);
} else if (_level0.scope == 6) {
this.gotoAndStop(6);
}
}
Frame 5
function createExplosion(targetX, targetY) {
var _local6 = 0;
while (_local6 < particleTotal) {
var _local5 = flash.display.BitmapData.loadBitmap("fire.jpg");
var _local3 = _root.createEmptyMovieClip("main_holder", _root.getNextHighestDepth());
var _local4 = _local3.createEmptyMovieClip("internal_holder", _local3.getNextHighestDepth());
_local4._x = (-_local5.width) / 2;
_local4._y = (-_local5.height) / 2;
_local4.attachBitmap(_local5, _local4.getNextHighestDepth(), "never");
_local3._x = targetX;
_local3._y = targetY;
_local3._rotation = random(360);
_local3._alpha = random(50) + 50;
_local3.boundyLeft = targetX - particleRange;
_local3.boundyTop = targetY - particleRange;
_local3.boundyRight = targetX + particleRange;
_local3.boundyBottom = targetY + particleRange;
_local3.speedX = Math.random(particleMaxSpeed) - Math.random(particleMaxSpeed);
_local3.speedY = Math.random(particleMaxSpeed) - Math.random(particleMaxSpeed);
_local3.speedX = _local3.speedX * particleMaxSpeed;
_local3.speedY = _local3.speedY * particleMaxSpeed;
_local3.fadeSpeed = Math.random(particleFadeSpeed) * particleFadeSpeed;
numberOfParticles++;
_local3.onEnterFrame = function () {
this._alpha = this._alpha - this.fadeSpeed;
this._x = this._x + this.speedX;
this._y = this._y + this.speedY;
if (this.speedY < particleMaxSpeed) {
this.speedY = this.speedY + gravity;
}
if (((((this._alpha <= 0) || (this._x < this.boundyLeft)) || (this._x > this.boundyRight)) || (this._y < this.boundyTop)) || (this._y > this.boundyBottom)) {
this.removeMovieClip();
numberOfParticles--;
}
};
_local6++;
}
}
function plahvatus() {
_root.donebar.nextFrame();
createExplosion(_xmouse, _ymouse);
}
time_out = 1000;
_root.onMouseMove = function () {
last_move = getTimer();
};
_root.onEnterFrame = function () {
if ((last_move + time_out) > getTimer()) {
_level0.mouseoff = 1;
Mouse.show();
} else if (_xmouse || (_ymouse == true)) {
_level0.mouseoff = 0;
Mouse.hide();
}
};
onEnterFrame = function () {
if (Key.isDown(9)) {
_root.cheat.gotoAndPlay(2);
}
};
var particleMaxSpeed = 7;
var particleFadeSpeed = 20;
var particleTotal = 500;
var particleRange = 25;
var gravity = 0.5;
Instance of Symbol 214 MovieClip "zoom" in Frame 5
onClipEvent (load) {
if (_level0.zoomsize == 2) {
this._width = this._width + 100;
this._height = this._height + 100;
} else if (_level0.zoomsize == 3) {
this._width = this._width + 200;
this._height = this._height + 200;
} else if (_level0.zoomsize == 4) {
this._width = this._width + 300;
this._height = this._height + 300;
} else if (_level0.zoomsize == 5) {
this._width = this._width + 450;
this._height = this._height + 450;
} else if (_level0.zoomsize == 6) {
this._width = this._width + 750;
this._height = this._height + 600;
}
}
onClipEvent (load) {
if (_level0.scope == 2) {
this.scope.gotoAndStop(2);
}
if (_level0.scope == 3) {
this.scope.gotoAndStop(3);
}
if (_level0.scope == 4) {
this.scope.gotoAndStop(4);
}
}
onClipEvent (load) {
Mouse.hide();
speed = 2;
bounce = 0.6;
scale = 150;
x = 0;
y = 0;
s = 0;
image._xscale = scale;
image._yscale = scale;
}
onClipEvent (mouseDown) {
if (scale == 150) {
scale = (Key.isDown(32) ? 50 : (_level0.zoomlevel));
_level0.levelscale = 1;
} else {
scale = 150;
_level0.levelscale = 0;
}
}
onClipEvent (enterFrame) {
x = (x + ((_root._xmouse - this._x) / speed)) * bounce;
this._x = this._x + x;
y = (y + ((_root._ymouse - this._y) / speed)) * bounce;
this._y = this._y + y;
s = (scale - image._xscale) / speed;
image._xscale = image._xscale + s;
image._yscale = image._yscale + s;
image._x = (_parent.image._x - this._x) * (image._width / _parent.image._width);
image._y = (_parent.image._y - this._y) * (image._height / _parent.image._height);
}
Instance of Symbol 217 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (_root.zoom.hitu.hitTest(this)) {
_root.zoom._visible = false;
Mouse.show();
} else {
_root.zoom._visible = true;
}
}
Instance of Symbol 222 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (((((_root.image.n1._visible == false) && (_root.image.n2._visible == false)) && (_root.image.n3._visible == false)) && (_root.image.n4._visible == false)) && (_root.image.n5._visible == false)) {
this.nextFrame();
}
}
Instance of Symbol 231 MovieClip "choose" in Frame 5
on (release) {
_level0.pask = 2;
_root.gotoAndStop(4);
}
Instance of Symbol 243 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (_root.zoom.hitu.hitTest(this)) {
_root.zoom._visible = false;
Mouse.show();
} else {
_root.zoom._visible = true;
}
}
Instance of Symbol 288 MovieClip "mus1" in Frame 5
on (release) {
if (this._currentframe == 1) {
_level0.soundfx = 1;
this.gotoAndStop(2);
} else if (this._currentframe == 2) {
_level0.soundfx = 0;
this.gotoAndStop(1);
}
}
Frame 6
Mouse.show();
Instance of Symbol 8 MovieClip in Frame 6
on (release) {
getURL ("http://www.gamershood.com", "_blank");
}
onClipEvent (load) {
if ((lets_call_it_cookie.data.counter <= 2) && (_level0.pask <= 2)) {
_root.lets_call_it_cookie.data.counter = 2;
_level0.pask = 2;
}
}
Frame 7
function createExplosion(targetX, targetY) {
var _local6 = 0;
while (_local6 < particleTotal) {
var _local5 = flash.display.BitmapData.loadBitmap("fire.jpg");
var _local3 = _root.createEmptyMovieClip("main_holder", _root.getNextHighestDepth());
var _local4 = _local3.createEmptyMovieClip("internal_holder", _local3.getNextHighestDepth());
_local4._x = (-_local5.width) / 2;
_local4._y = (-_local5.height) / 2;
_local4.attachBitmap(_local5, _local4.getNextHighestDepth(), "never");
_local3._x = targetX;
_local3._y = targetY;
_local3._rotation = random(360);
_local3._alpha = random(50) + 50;
_local3.boundyLeft = targetX - particleRange;
_local3.boundyTop = targetY - particleRange;
_local3.boundyRight = targetX + particleRange;
_local3.boundyBottom = targetY + particleRange;
_local3.speedX = Math.random(particleMaxSpeed) - Math.random(particleMaxSpeed);
_local3.speedY = Math.random(particleMaxSpeed) - Math.random(particleMaxSpeed);
_local3.speedX = _local3.speedX * particleMaxSpeed;
_local3.speedY = _local3.speedY * particleMaxSpeed;
_local3.fadeSpeed = Math.random(particleFadeSpeed) * particleFadeSpeed;
numberOfParticles++;
_local3.onEnterFrame = function () {
this._alpha = this._alpha - this.fadeSpeed;
this._x = this._x + this.speedX;
this._y = this._y + this.speedY;
if (this.speedY < particleMaxSpeed) {
this.speedY = this.speedY + gravity;
}
if (((((this._alpha <= 0) || (this._x < this.boundyLeft)) || (this._x > this.boundyRight)) || (this._y < this.boundyTop)) || (this._y > this.boundyBottom)) {
this.removeMovieClip();
numberOfParticles--;
}
};
_local6++;
}
}
function plahvatus() {
_root.donebar.nextFrame();
createExplosion(_xmouse, _ymouse);
}
time_out = 1000;
_root.onMouseMove = function () {
last_move = getTimer();
};
_root.onEnterFrame = function () {
if ((last_move + time_out) < getTimer()) {
_level0.mouseoff = 1;
} else if (_xmouse || (_ymouse == true)) {
_level0.mouseoff = 0;
}
};
onEnterFrame = function () {
if (Key.isDown(9)) {
_root.cheat.gotoAndPlay(2);
}
};
var particleMaxSpeed = 7;
var particleFadeSpeed = 20;
var particleTotal = 500;
var particleRange = 25;
var gravity = 0.5;
Instance of Symbol 8 MovieClip in Frame 7
on (release) {
getURL ("http://www.gamershood.com", "_blank");
}
Instance of Symbol 222 MovieClip in Frame 7
onClipEvent (enterFrame) {
if ((((((_root.image2.n1._visible == false) && (_root.image2.n2._visible == false)) && (_root.image2.n3._visible == false)) && (_root.image2.n4._visible == false)) && (_root.image2.n5._visible == false)) && (_root.image2.n6._visible == false)) {
this.nextFrame();
}
}
Instance of Symbol 305 MovieClip "zoom2" in Frame 7
onClipEvent (load) {
if (_level0.scope == 2) {
this.scope.gotoAndStop(2);
}
if (_level0.scope == 3) {
this.scope.gotoAndStop(3);
}
if (_level0.scope == 4) {
this.scope.gotoAndStop(4);
}
}
onClipEvent (load) {
if (_level0.zoomsize == 2) {
this._width = this._width + 100;
this._height = this._height + 100;
} else if (_level0.zoomsize == 3) {
this._width = this._width + 200;
this._height = this._height + 200;
} else if (_level0.zoomsize == 4) {
this._width = this._width + 300;
this._height = this._height + 300;
} else if (_level0.zoomsize == 5) {
this._width = this._width + 450;
this._height = this._height + 450;
} else if (_level0.zoomsize == 6) {
this._width = this._width + 750;
this._height = this._height + 600;
}
}
onClipEvent (load) {
Mouse.hide();
speed = 2;
bounce = 0.6;
scale = 150;
x = 0;
y = 0;
s = 0;
image2._xscale = scale;
image2._yscale = scale;
}
onClipEvent (mouseDown) {
if (scale == 150) {
scale = (Key.isDown(32) ? 50 : (_level0.zoomlevel));
_level0.levelscale = 1;
} else {
scale = 150;
_level0.levelscale = 0;
}
}
onClipEvent (enterFrame) {
x = (x + ((_root._xmouse - this._x) / speed)) * bounce;
this._x = this._x + x;
y = (y + ((_root._ymouse - this._y) / speed)) * bounce;
this._y = this._y + y;
s = (scale - image2._xscale) / speed;
image2._xscale = image2._xscale + s;
image2._yscale = image2._yscale + s;
image2._x = (_parent.image2._x - this._x) * (image2._width / _parent.image2._width);
image2._y = (_parent.image2._y - this._y) * (image2._height / _parent.image2._height);
}
Instance of Symbol 217 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (_root.zoom2.hitu.hitTest(this)) {
_root.zoom2._visible = false;
Mouse.show();
} else {
_root.zoom2._visible = true;
}
}
Instance of Symbol 243 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (_root.zoom2.hitu.hitTest(this)) {
_root.zoom2._visible = false;
Mouse.show();
} else {
_root.zoom2._visible = true;
}
}
Instance of Symbol 39 MovieClip "cheat" in Frame 7
on (keyPress "<Tab>") {
this.gotoAndPlay(2);
}
Frame 8
Mouse.show();
Instance of Symbol 8 MovieClip in Frame 8
on (release) {
getURL ("http://www.gamershood.com", "_blank");
}
onClipEvent (load) {
if ((lets_call_it_cookie.data.counter <= 3) && (_level0.pask <= 3)) {
_root.lets_call_it_cookie.data.counter = 3;
_level0.pask = 3;
}
}
Frame 9
function createExplosion(targetX, targetY) {
var _local6 = 0;
while (_local6 < particleTotal) {
var _local5 = flash.display.BitmapData.loadBitmap("fire.jpg");
var _local3 = _root.createEmptyMovieClip("main_holder", _root.getNextHighestDepth());
var _local4 = _local3.createEmptyMovieClip("internal_holder", _local3.getNextHighestDepth());
_local4._x = (-_local5.width) / 2;
_local4._y = (-_local5.height) / 2;
_local4.attachBitmap(_local5, _local4.getNextHighestDepth(), "never");
_local3._x = targetX;
_local3._y = targetY;
_local3._rotation = random(360);
_local3._alpha = random(50) + 50;
_local3.boundyLeft = targetX - particleRange;
_local3.boundyTop = targetY - particleRange;
_local3.boundyRight = targetX + particleRange;
_local3.boundyBottom = targetY + particleRange;
_local3.speedX = Math.random(particleMaxSpeed) - Math.random(particleMaxSpeed);
_local3.speedY = Math.random(particleMaxSpeed) - Math.random(particleMaxSpeed);
_local3.speedX = _local3.speedX * particleMaxSpeed;
_local3.speedY = _local3.speedY * particleMaxSpeed;
_local3.fadeSpeed = Math.random(particleFadeSpeed) * particleFadeSpeed;
numberOfParticles++;
_local3.onEnterFrame = function () {
this._alpha = this._alpha - this.fadeSpeed;
this._x = this._x + this.speedX;
this._y = this._y + this.speedY;
if (this.speedY < particleMaxSpeed) {
this.speedY = this.speedY + gravity;
}
if (((((this._alpha <= 0) || (this._x < this.boundyLeft)) || (this._x > this.boundyRight)) || (this._y < this.boundyTop)) || (this._y > this.boundyBottom)) {
this.removeMovieClip();
numberOfParticles--;
}
};
_local6++;
}
}
function plahvatus() {
_root.donebar.nextFrame();
createExplosion(_xmouse, _ymouse);
}
time_out = 1000;
_root.onMouseMove = function () {
last_move = getTimer();
};
_root.onEnterFrame = function () {
if ((last_move + time_out) < getTimer()) {
_level0.mouseoff = 1;
} else if (_xmouse || (_ymouse == true)) {
_level0.mouseoff = 0;
}
};
onEnterFrame = function () {
if (Key.isDown(9)) {
_root.cheat.gotoAndPlay(2);
}
};
var particleMaxSpeed = 7;
var particleFadeSpeed = 20;
var particleTotal = 500;
var particleRange = 25;
var gravity = 0.5;
Instance of Symbol 314 MovieClip "zoom3" in Frame 9
onClipEvent (load) {
if (_level0.scope == 2) {
this.scope.gotoAndStop(2);
}
if (_level0.scope == 3) {
this.scope.gotoAndStop(3);
}
if (_level0.scope == 4) {
this.scope.gotoAndStop(4);
}
}
onClipEvent (load) {
if (_level0.zoomsize == 2) {
this._width = this._width + 100;
this._height = this._height + 100;
} else if (_level0.zoomsize == 3) {
this._width = this._width + 200;
this._height = this._height + 200;
} else if (_level0.zoomsize == 4) {
this._width = this._width + 300;
this._height = this._height + 300;
} else if (_level0.zoomsize == 5) {
this._width = this._width + 450;
this._height = this._height + 450;
} else if (_level0.zoomsize == 6) {
this._width = this._width + 750;
this._height = this._height + 600;
}
}
onClipEvent (load) {
Mouse.hide();
speed = 2;
bounce = 0.6;
scale = 150;
x = 0;
y = 0;
s = 0;
image3._xscale = scale;
image3._yscale = scale;
}
onClipEvent (mouseDown) {
if (scale == 150) {
scale = (Key.isDown(32) ? 50 : (_level0.zoomlevel));
_level0.levelscale = 1;
} else {
scale = 150;
_level0.levelscale = 0;
}
}
onClipEvent (enterFrame) {
x = (x + ((_root._xmouse - this._x) / speed)) * bounce;
this._x = this._x + x;
y = (y + ((_root._ymouse - this._y) / speed)) * bounce;
this._y = this._y + y;
s = (scale - image3._xscale) / speed;
image3._xscale = image3._xscale + s;
image3._yscale = image3._yscale + s;
image3._x = (_parent.image3._x - this._x) * (image3._width / _parent.image3._width);
image3._y = (_parent.image3._y - this._y) * (image3._height / _parent.image3._height);
}
Instance of Symbol 217 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (_root.zoom3.hitu.hitTest(this)) {
_root.zoom3._visible = false;
Mouse.show();
} else {
_root.zoom3._visible = true;
Mouse.hide();
}
}
Instance of Symbol 243 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (_root.zoom3.hitu3.hitTest(this)) {
_root.zoom3._visible = false;
Mouse.show();
} else {
_root.zoom3._visible = true;
}
}
Instance of Symbol 39 MovieClip "cheat" in Frame 9
on (keyPress "<Tab>") {
this.gotoAndPlay(2);
}
Instance of Symbol 222 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (((((((_root.image3.n1._visible == false) && (_root.image3.n2._visible == false)) && (_root.image3.n3._visible == false)) && (_root.image3.n4._visible == false)) && (_root.image3.n5._visible == false)) && (_root.image3.n6._visible == false)) && (_root.image3.n7._visible == false)) {
this.nextFrame();
}
}
Frame 10
Mouse.show();
Instance of Symbol 8 MovieClip in Frame 10
on (release) {
getURL ("http://www.gamershood.com", "_blank");
}
onClipEvent (load) {
if ((lets_call_it_cookie.data.counter <= 4) && (_level0.pask <= 4)) {
_root.lets_call_it_cookie.data.counter = 4;
_level0.pask = 4;
}
}
Frame 11
function createExplosion(targetX, targetY) {
var _local6 = 0;
while (_local6 < particleTotal) {
var _local5 = flash.display.BitmapData.loadBitmap("fire.jpg");
var _local3 = _root.createEmptyMovieClip("main_holder", _root.getNextHighestDepth());
var _local4 = _local3.createEmptyMovieClip("internal_holder", _local3.getNextHighestDepth());
_local4._x = (-_local5.width) / 2;
_local4._y = (-_local5.height) / 2;
_local4.attachBitmap(_local5, _local4.getNextHighestDepth(), "never");
_local3._x = targetX;
_local3._y = targetY;
_local3._rotation = random(360);
_local3._alpha = random(50) + 50;
_local3.boundyLeft = targetX - particleRange;
_local3.boundyTop = targetY - particleRange;
_local3.boundyRight = targetX + particleRange;
_local3.boundyBottom = targetY + particleRange;
_local3.speedX = Math.random(particleMaxSpeed) - Math.random(particleMaxSpeed);
_local3.speedY = Math.random(particleMaxSpeed) - Math.random(particleMaxSpeed);
_local3.speedX = _local3.speedX * particleMaxSpeed;
_local3.speedY = _local3.speedY * particleMaxSpeed;
_local3.fadeSpeed = Math.random(particleFadeSpeed) * particleFadeSpeed;
numberOfParticles++;
_local3.onEnterFrame = function () {
this._alpha = this._alpha - this.fadeSpeed;
this._x = this._x + this.speedX;
this._y = this._y + this.speedY;
if (this.speedY < particleMaxSpeed) {
this.speedY = this.speedY + gravity;
}
if (((((this._alpha <= 0) || (this._x < this.boundyLeft)) || (this._x > this.boundyRight)) || (this._y < this.boundyTop)) || (this._y > this.boundyBottom)) {
this.removeMovieClip();
numberOfParticles--;
}
};
_local6++;
}
}
function plahvatus() {
_root.donebar.nextFrame();
createExplosion(_xmouse, _ymouse);
}
time_out = 1000;
_root.onMouseMove = function () {
last_move = getTimer();
};
_root.onEnterFrame = function () {
if ((last_move + time_out) < getTimer()) {
_level0.mouseoff = 1;
} else if (_xmouse || (_ymouse == true)) {
_level0.mouseoff = 0;
}
};
onEnterFrame = function () {
if (Key.isDown(9)) {
_root.cheat.gotoAndPlay(2);
}
};
var particleMaxSpeed = 7;
var particleFadeSpeed = 20;
var particleTotal = 500;
var particleRange = 25;
var gravity = 0.5;
Instance of Symbol 331 MovieClip "zoom4" in Frame 11
onClipEvent (load) {
if (_level0.scope == 2) {
this.scope.gotoAndStop(2);
}
if (_level0.scope == 3) {
this.scope.gotoAndStop(3);
}
if (_level0.scope == 4) {
this.scope.gotoAndStop(4);
}
}
onClipEvent (load) {
if (_level0.zoomsize == 2) {
this._width = this._width + 100;
this._height = this._height + 100;
} else if (_level0.zoomsize == 3) {
this._width = this._width + 200;
this._height = this._height + 200;
} else if (_level0.zoomsize == 4) {
this._width = this._width + 300;
this._height = this._height + 300;
} else if (_level0.zoomsize == 5) {
this._width = this._width + 450;
this._height = this._height + 450;
} else if (_level0.zoomsize == 6) {
this._width = this._width + 750;
this._height = this._height + 600;
}
}
onClipEvent (load) {
Mouse.hide();
speed = 2;
bounce = 0.6;
scale = 150;
x = 0;
y = 0;
s = 0;
image4._xscale = scale;
image4._yscale = scale;
}
onClipEvent (mouseDown) {
if (scale == 150) {
scale = (Key.isDown(32) ? 50 : (_level0.zoomlevel));
_level0.levelscale = 1;
} else {
scale = 150;
_level0.levelscale = 0;
}
}
onClipEvent (enterFrame) {
x = (x + ((_root._xmouse - this._x) / speed)) * bounce;
this._x = this._x + x;
y = (y + ((_root._ymouse - this._y) / speed)) * bounce;
this._y = this._y + y;
s = (scale - image4._xscale) / speed;
image4._xscale = image4._xscale + s;
image4._yscale = image4._yscale + s;
image4._x = (_parent.image4._x - this._x) * (image4._width / _parent.image4._width);
image4._y = (_parent.image4._y - this._y) * (image4._height / _parent.image4._height);
}
Instance of Symbol 217 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (_root.zoom4.hitu.hitTest(this)) {
_root.zoom4._visible = false;
Mouse.show();
} else {
_root.zoom4._visible = true;
Mouse.hide();
}
}
Instance of Symbol 243 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (_root.zoom4.hitu.hitTest(this)) {
_root.zoom4._visible = false;
Mouse.show();
} else {
_root.zoom4._visible = true;
}
}
Instance of Symbol 39 MovieClip "cheat" in Frame 11
on (keyPress "<Tab>") {
this.gotoAndPlay(2);
}
Instance of Symbol 222 MovieClip in Frame 11
onClipEvent (enterFrame) {
if ((((((((_root.image4.n1._visible == false) && (_root.image4.n2._visible == false)) && (_root.image4.n3._visible == false)) && (_root.image4.n4._visible == false)) && (_root.image4.n5._visible == false)) && (_root.image4.n6._visible == false)) && (_root.image4.n7._visible == false)) && (_root.image4.n8._visible == false)) {
this.nextFrame();
}
}
Frame 12
Mouse.show();
Instance of Symbol 8 MovieClip in Frame 12
on (release) {
getURL ("http://www.gamershood.com", "_blank");
}
onClipEvent (load) {
if ((lets_call_it_cookie.data.counter <= 5) && (_level0.pask <= 5)) {
_root.lets_call_it_cookie.data.counter = 5;
_level0.pask = 5;
}
}
Frame 13
function createExplosion(targetX, targetY) {
var _local6 = 0;
while (_local6 < particleTotal) {
var _local5 = flash.display.BitmapData.loadBitmap("fire.jpg");
var _local3 = _root.createEmptyMovieClip("main_holder", _root.getNextHighestDepth());
var _local4 = _local3.createEmptyMovieClip("internal_holder", _local3.getNextHighestDepth());
_local4._x = (-_local5.width) / 2;
_local4._y = (-_local5.height) / 2;
_local4.attachBitmap(_local5, _local4.getNextHighestDepth(), "never");
_local3._x = targetX;
_local3._y = targetY;
_local3._rotation = random(360);
_local3._alpha = random(50) + 50;
_local3.boundyLeft = targetX - particleRange;
_local3.boundyTop = targetY - particleRange;
_local3.boundyRight = targetX + particleRange;
_local3.boundyBottom = targetY + particleRange;
_local3.speedX = Math.random(particleMaxSpeed) - Math.random(particleMaxSpeed);
_local3.speedY = Math.random(particleMaxSpeed) - Math.random(particleMaxSpeed);
_local3.speedX = _local3.speedX * particleMaxSpeed;
_local3.speedY = _local3.speedY * particleMaxSpeed;
_local3.fadeSpeed = Math.random(particleFadeSpeed) * particleFadeSpeed;
numberOfParticles++;
_local3.onEnterFrame = function () {
this._alpha = this._alpha - this.fadeSpeed;
this._x = this._x + this.speedX;
this._y = this._y + this.speedY;
if (this.speedY < particleMaxSpeed) {
this.speedY = this.speedY + gravity;
}
if (((((this._alpha <= 0) || (this._x < this.boundyLeft)) || (this._x > this.boundyRight)) || (this._y < this.boundyTop)) || (this._y > this.boundyBottom)) {
this.removeMovieClip();
numberOfParticles--;
}
};
_local6++;
}
}
function plahvatus() {
_root.donebar.nextFrame();
createExplosion(_xmouse, _ymouse);
}
time_out = 1000;
_root.onMouseMove = function () {
last_move = getTimer();
};
_root.onEnterFrame = function () {
if ((last_move + time_out) < getTimer()) {
_level0.mouseoff = 1;
} else if (_xmouse || (_ymouse == true)) {
_level0.mouseoff = 0;
}
};
onEnterFrame = function () {
if (Key.isDown(9)) {
_root.cheat.gotoAndPlay(2);
}
};
var particleMaxSpeed = 7;
var particleFadeSpeed = 20;
var particleTotal = 500;
var particleRange = 25;
var gravity = 0.5;
Instance of Symbol 340 MovieClip "zoom5" in Frame 13
onClipEvent (load) {
if (_level0.scope == 2) {
this.scope.gotoAndStop(2);
}
if (_level0.scope == 3) {
this.scope.gotoAndStop(3);
}
if (_level0.scope == 4) {
this.scope.gotoAndStop(4);
}
}
onClipEvent (load) {
if (_level0.zoomsize == 2) {
this._width = this._width + 100;
this._height = this._height + 100;
} else if (_level0.zoomsize == 3) {
this._width = this._width + 200;
this._height = this._height + 200;
} else if (_level0.zoomsize == 4) {
this._width = this._width + 300;
this._height = this._height + 300;
} else if (_level0.zoomsize == 5) {
this._width = this._width + 450;
this._height = this._height + 450;
} else if (_level0.zoomsize == 6) {
this._width = this._width + 750;
this._height = this._height + 600;
}
}
onClipEvent (load) {
Mouse.hide();
speed = 2;
bounce = 0.6;
scale = 150;
x = 0;
y = 0;
s = 0;
image5._xscale = scale;
image5._yscale = scale;
}
onClipEvent (mouseDown) {
if (scale == 150) {
scale = (Key.isDown(32) ? 50 : (_level0.zoomlevel));
_level0.levelscale = 1;
} else {
scale = 150;
_level0.levelscale = 0;
}
}
onClipEvent (enterFrame) {
x = (x + ((_root._xmouse - this._x) / speed)) * bounce;
this._x = this._x + x;
y = (y + ((_root._ymouse - this._y) / speed)) * bounce;
this._y = this._y + y;
s = (scale - image5._xscale) / speed;
image5._xscale = image5._xscale + s;
image5._yscale = image5._yscale + s;
image5._x = (_parent.image5._x - this._x) * (image5._width / _parent.image5._width);
image5._y = (_parent.image5._y - this._y) * (image5._height / _parent.image5._height);
}
Instance of Symbol 217 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (_root.zoom5.hitu.hitTest(this)) {
_root.zoom5._visible = false;
Mouse.show();
} else {
_root.zoom5._visible = true;
Mouse.hide();
}
}
Instance of Symbol 243 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (_root.zoom5.hitu.hitTest(this)) {
_root.zoom5._visible = false;
Mouse.show();
} else {
_root.zoom5._visible = true;
}
}
Instance of Symbol 222 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (((((((((_root.image5.n1._visible == false) && (_root.image5.n2._visible == false)) && (_root.image5.n3._visible == false)) && (_root.image5.n4._visible == false)) && (_root.image5.n5._visible == false)) && (_root.image5.n6._visible == false)) && (_root.image5.n7._visible == false)) && (_root.image5.n8._visible == false)) && (_root.image5.n9._visible == false)) {
this.nextFrame();
}
}
Frame 14
Mouse.show();
Instance of Symbol 8 MovieClip in Frame 14
on (release) {
getURL ("http://www.gamershood.com", "_blank");
}
onClipEvent (load) {
if ((lets_call_it_cookie.data.counter <= 6) && (_level0.pask <= 6)) {
_root.lets_call_it_cookie.data.counter = 6;
_level0.pask = 6;
}
}
Frame 15
function createExplosion(targetX, targetY) {
var _local6 = 0;
while (_local6 < particleTotal) {
var _local5 = flash.display.BitmapData.loadBitmap("fire.jpg");
var _local3 = _root.createEmptyMovieClip("main_holder", _root.getNextHighestDepth());
var _local4 = _local3.createEmptyMovieClip("internal_holder", _local3.getNextHighestDepth());
_local4._x = (-_local5.width) / 2;
_local4._y = (-_local5.height) / 2;
_local4.attachBitmap(_local5, _local4.getNextHighestDepth(), "never");
_local3._x = targetX;
_local3._y = targetY;
_local3._rotation = random(360);
_local3._alpha = random(50) + 50;
_local3.boundyLeft = targetX - particleRange;
_local3.boundyTop = targetY - particleRange;
_local3.boundyRight = targetX + particleRange;
_local3.boundyBottom = targetY + particleRange;
_local3.speedX = Math.random(particleMaxSpeed) - Math.random(particleMaxSpeed);
_local3.speedY = Math.random(particleMaxSpeed) - Math.random(particleMaxSpeed);
_local3.speedX = _local3.speedX * particleMaxSpeed;
_local3.speedY = _local3.speedY * particleMaxSpeed;
_local3.fadeSpeed = Math.random(particleFadeSpeed) * particleFadeSpeed;
numberOfParticles++;
_local3.onEnterFrame = function () {
this._alpha = this._alpha - this.fadeSpeed;
this._x = this._x + this.speedX;
this._y = this._y + this.speedY;
if (this.speedY < particleMaxSpeed) {
this.speedY = this.speedY + gravity;
}
if (((((this._alpha <= 0) || (this._x < this.boundyLeft)) || (this._x > this.boundyRight)) || (this._y < this.boundyTop)) || (this._y > this.boundyBottom)) {
this.removeMovieClip();
numberOfParticles--;
}
};
_local6++;
}
}
function plahvatus() {
_root.donebar.nextFrame();
createExplosion(_xmouse, _ymouse);
}
time_out = 1000;
_root.onMouseMove = function () {
last_move = getTimer();
};
_root.onEnterFrame = function () {
if ((last_move + time_out) < getTimer()) {
_level0.mouseoff = 1;
} else if (_xmouse || (_ymouse == true)) {
_level0.mouseoff = 0;
}
};
onEnterFrame = function () {
if (Key.isDown(9)) {
_root.cheat.gotoAndPlay(2);
}
};
var particleMaxSpeed = 7;
var particleFadeSpeed = 20;
var particleTotal = 500;
var particleRange = 25;
var gravity = 0.5;
Instance of Symbol 346 MovieClip "zoom6" in Frame 15
onClipEvent (load) {
if (_level0.scope == 2) {
this.scope.gotoAndStop(2);
}
if (_level0.scope == 3) {
this.scope.gotoAndStop(3);
}
if (_level0.scope == 4) {
this.scope.gotoAndStop(4);
}
}
onClipEvent (load) {
if (_level0.zoomsize == 2) {
this._width = this._width + 100;
this._height = this._height + 100;
} else if (_level0.zoomsize == 3) {
this._width = this._width + 200;
this._height = this._height + 200;
} else if (_level0.zoomsize == 4) {
this._width = this._width + 300;
this._height = this._height + 300;
} else if (_level0.zoomsize == 5) {
this._width = this._width + 450;
this._height = this._height + 450;
} else if (_level0.zoomsize == 6) {
this._width = this._width + 750;
this._height = this._height + 600;
}
}
onClipEvent (load) {
Mouse.hide();
speed = 2;
bounce = 0.6;
scale = 150;
x = 0;
y = 0;
s = 0;
image6._xscale = scale;
image6._yscale = scale;
}
onClipEvent (mouseDown) {
if (scale == 150) {
scale = (Key.isDown(32) ? 50 : (_level0.zoomlevel));
_level0.levelscale = 1;
} else {
scale = 150;
_level0.levelscale = 0;
}
}
onClipEvent (enterFrame) {
x = (x + ((_root._xmouse - this._x) / speed)) * bounce;
this._x = this._x + x;
y = (y + ((_root._ymouse - this._y) / speed)) * bounce;
this._y = this._y + y;
s = (scale - image6._xscale) / speed;
image6._xscale = image6._xscale + s;
image6._yscale = image6._yscale + s;
image6._x = (_parent.image6._x - this._x) * (image6._width / _parent.image6._width);
image6._y = (_parent.image6._y - this._y) * (image6._height / _parent.image6._height);
}
Instance of Symbol 217 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (_root.zoom6.hitu.hitTest(this)) {
_root.zoom6._visible = false;
Mouse.show();
} else {
_root.zoom6._visible = true;
Mouse.hide();
}
}
Instance of Symbol 243 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (_root.zoom6.hitu.hitTest(this)) {
_root.zoom6._visible = false;
Mouse.show();
} else {
_root.zoom6._visible = true;
}
}
Instance of Symbol 222 MovieClip in Frame 15
onClipEvent (enterFrame) {
if ((((((((((_root.image6.n1._visible == false) && (_root.image6.n2._visible == false)) && (_root.image6.n3._visible == false)) && (_root.image6.n4._visible == false)) && (_root.image6.n5._visible == false)) && (_root.image6.n6._visible == false)) && (_root.image6.n7._visible == false)) && (_root.image6.n8._visible == false)) && (_root.image6.n9._visible == false)) && (_root.image6.n10._visible == false)) {
this.nextFrame();
}
}
Frame 16
Mouse.show();
_root.snow._visible = false;
Instance of Symbol 8 MovieClip in Frame 16
on (release) {
getURL ("http://www.gamershood.com", "_blank");
}
Symbol 13 MovieClip Frame 1
function drawPercent(per) {
txt.numText.text = Math.floor(per * 100);
var _local2 = Math.floor(per * numParticles) - particles.length;
i = 0;
while (i < _local2) {
newParticle();
i++;
}
moveParticles();
drawParticles();
bd.applyFilter(bd, bd.rectangle, destPoint, blurFilter);
if (per >= 0.995) {
_parent.play();
moveParticles();
}
}
function moveParticles() {
for (i in particles) {
var _local1 = particles[i];
_local1.theta = _local1.theta + _local1.incT;
_local1.phi = _local1.phi + _local1.incP;
}
}
function drawParticles() {
for (i in particles) {
var _local1 = particles[i];
var _local3 = retX(_local1.theta, _local1.phi, _local1.r);
var _local2 = retY(_local1.theta, _local1.phi, _local1.r);
bd.setPixel32(_local3, _local2, colors[int(Math.random() * colors.length)]);
}
}
function newParticle() {
var _local1 = new Object();
_local1.theta = (Math.random() * Math.PI) * 2;
_local1.phi = (Math.random() * Math.PI) * 2;
_local1.incT = ((Math.random() * Math.PI) / 16) - 0.098174770424681;
_local1.incP = ((Math.random() * Math.PI) / 16) - 0.098174770424681;
_local1.r = (((size * particles.length) * 100) / numParticles) + 25;
particles.push(_local1);
}
function retX(theta, phi, r) {
return(((Math.sin(theta) * Math.cos(phi)) * r) + (ww / 2));
}
function retY(theta, phi, r) {
return(((Math.cos(theta) * Math.sin(phi)) * r) + (hh / 2));
}
var numParticles = 500;
var bluramount = 1.5;
var colors = new Array();
colors.push(4294967295);
colors.push(4292730367);
colors.push(4290502143);
colors.push(4288269567);
colors.push(4281571839);
var size = 1;
var hh = Stage.height;
var ww = Stage.width;
var bd = (new flash.display.BitmapData(ww, hh, true, 0));
var blurFilter = (new flash.filters.BlurFilter(bluramount, bluramount, 1.5));
var destPoint = (new flash.geom.Point(0, 0));
var mc = this.createEmptyMovieClip("mc", this.getNextHighestDepth());
mc.attachBitmap(bd, this.getNextHighestDepth());
mc._x = (-ww) / 2;
mc._y = (-hh) / 2;
txt.swapDepths(2);
var particles = new Array();
Symbol 14 MovieClip Frame 1
function drawPercent(per) {
preloader.drawPercent(per);
}
stop();
_parent.stop();
onEnterFrame = function () {
if (this.ispreview != "preview") {
var _local3 = _parent.getBytesLoaded() / _parent.getBytesTotal();
this.drawPercent(_local3);
}
};
Symbol 14 MovieClip Frame 40
_parent.play();
stop();
Symbol 39 MovieClip Frame 1
stop();
Symbol 47 Button
on (release) {
gotoAndStop (4);
}
Symbol 68 Button
on (release) {
trace(lets_call_it_cookie.data.counter);
}
Instance of Symbol 83 MovieClip in Symbol 84 MovieClip Frame 1
on (release) {
_root.gotoAndStop(5);
}
on (rollOver) {
this._height = 68;
this._width = 68;
}
on (rollOut) {
this._height = 58;
this._width = 58;
}
on (dragOver) {
this._height = 58;
this._width = 58;
}
on (dragOut) {
this._height = 58;
this._width = 58;
}
Instance of Symbol 72 MovieClip in Symbol 84 MovieClip Frame 2
on (release) {
_root.gotoAndStop(7);
}
on (rollOver) {
this._height = 68;
this._width = 68;
}
on (rollOut) {
this._height = 58;
this._width = 58;
}
on (dragOver) {
this._height = 58;
this._width = 58;
}
on (dragOut) {
this._height = 58;
this._width = 58;
}
Instance of Symbol 75 MovieClip in Symbol 84 MovieClip Frame 3
on (release) {
_root.gotoAndStop(9);
}
on (rollOver) {
this._height = 68;
this._width = 68;
}
on (rollOut) {
this._height = 58;
this._width = 58;
}
on (dragOver) {
this._height = 58;
this._width = 58;
}
on (dragOut) {
this._height = 58;
this._width = 58;
}
Instance of Symbol 77 MovieClip in Symbol 84 MovieClip Frame 4
on (release) {
_root.gotoAndStop(11);
}
on (rollOver) {
this._height = 68;
this._width = 68;
}
on (rollOut) {
this._height = 58;
this._width = 58;
}
on (dragOver) {
this._height = 58;
this._width = 58;
}
on (dragOut) {
this._height = 58;
this._width = 58;
}
Instance of Symbol 79 MovieClip in Symbol 84 MovieClip Frame 5
on (release) {
_root.gotoAndStop(13);
}
on (rollOver) {
this._height = 68;
this._width = 68;
}
on (rollOut) {
this._height = 58;
this._width = 58;
}
on (dragOver) {
this._height = 58;
this._width = 58;
}
on (dragOut) {
this._height = 58;
this._width = 58;
}
Instance of Symbol 81 MovieClip in Symbol 84 MovieClip Frame 6
on (release) {
_root.gotoAndStop(15);
}
on (rollOver) {
this._height = 68;
this._width = 68;
}
on (rollOut) {
this._height = 58;
this._width = 58;
}
on (dragOver) {
this._height = 58;
this._width = 58;
}
on (dragOut) {
this._height = 58;
this._width = 58;
}
Symbol 89 Button
on (release) {
_root.lvls.gotoAndStop(1);
lets_call_it_cookie.data.counter = 1;
}
Symbol 92 Button
on (release) {
_root.gotoAndStop(2);
}
Symbol 111 Button
on (release) {
if (_level0.punktid >= 25) {
_level0.punktid = _level0.punktid - 25;
_level0.zoomsize = 2;
gotoAndStop (2);
}
}
Symbol 115 Button
on (release) {
if (_level0.punktid >= 35) {
_level0.punktid = _level0.punktid - 35;
_level0.zoomsize = 3;
gotoAndStop (3);
}
}
Symbol 119 Button
on (release) {
if (_level0.punktid >= 42) {
_level0.punktid = _level0.punktid - 42;
_level0.zoomsize = 4;
gotoAndStop (4);
}
}
Symbol 123 Button
on (release) {
if (_level0.punktid >= 51) {
_level0.punktid = _level0.punktid - 51;
_level0.zoomsize = 5;
gotoAndStop (5);
}
}
Symbol 128 Button
on (release) {
if (_level0.punktid >= 66) {
_level0.punktid = _level0.punktid - 66;
_level0.zoomsize = 6;
gotoAndStop (6);
}
}
Symbol 132 MovieClip Frame 1
stop();
Symbol 138 Button
on (release) {
if (_level0.punktid >= 12) {
_level0.zoomlevel = 250;
_level0.punktid = _level0.punktid - 12;
_level0.zoomin = 2;
gotoAndStop (2);
}
}
Symbol 141 Button
on (release) {
if (_level0.punktid >= 21) {
_level0.zoomlevel = 300;
_level0.punktid = _level0.punktid - 21;
_level0.zoomin = 3;
gotoAndStop (3);
}
}
Symbol 144 Button
on (release) {
if (_level0.punktid >= 31) {
_level0.zoomlevel = 350;
_level0.punktid = _level0.punktid - 31;
_level0.zoomin = 4;
gotoAndStop (4);
}
}
Symbol 146 Button
on (release) {
if (_level0.punktid >= 42) {
_level0.zoomlevel = 400;
_level0.punktid = _level0.punktid - 42;
_level0.zoomin = 5;
gotoAndStop (5);
}
}
Symbol 149 Button
on (release) {
if (_level0.punktid >= 50) {
_level0.zoomlevel = 500;
_level0.punktid = _level0.punktid - 50;
_level0.zoomin = 6;
gotoAndStop (6);
}
}
Symbol 151 MovieClip Frame 1
stop();
Symbol 156 Button
on (release) {
if (_level0.punktid >= 7) {
_level0.scope = 2;
_level0.punktid = _level0.punktid - 7;
gotoAndStop (2);
}
}
Symbol 158 Button
on (release) {
if (_level0.punktid >= 12) {
_level0.scope = 3;
_level0.punktid = _level0.punktid - 12;
gotoAndStop (3);
}
}
Symbol 161 Button
on (release) {
if (_level0.punktid >= 19) {
_level0.scope = 4;
_level0.punktid = _level0.punktid - 19;
gotoAndStop (4);
}
}
Symbol 163 MovieClip Frame 1
stop();
Symbol 200 MovieClip Frame 1
stop();
Symbol 200 MovieClip Frame 71
stop();
Instance of Symbol 166 MovieClip "oo" in Symbol 201 MovieClip Frame 1
on (release) {
_root.zoom.image.oo._visible = false;
_root.image.oo._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
Instance of Symbol 169 MovieClip in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom.image.n1._visible = false;
_root.image.n1._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 169 MovieClip in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom.image.n2._visible = false;
_root.image.n2._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 171 MovieClip in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom.image.n4._visible = false;
_root.image.n4._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 174 MovieClip in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom.image.n3._visible = false;
_root.image.n3._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 169 MovieClip in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom.image.n5._visible = false;
_root.image.n5._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 174 MovieClip in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom.image.n6._visible = false;
_root.image.n6._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 174 MovieClip in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom.image.n7._visible = false;
_root.image.n7._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 174 MovieClip in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom.image.n8._visible = false;
_root.image.n8._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 174 MovieClip in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom.image.n9._visible = false;
_root.image.n9._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 171 MovieClip in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom.image.n10._visible = false;
_root.image.n10._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 179 MovieClip "n5" in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 1.5;
_root.zoom.image.n5._visible = false;
_root.image.n5._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 183 MovieClip "n4" in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 1;
_root.zoom.image.n4._visible = false;
_root.image.n4._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 187 MovieClip "n1" in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 1;
_root.zoom.image.n1._visible = false;
_root.image.n1._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 189 MovieClip "n3" in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 1.5;
_root.zoom.image.n3._visible = false;
_root.image.n3._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 192 MovieClip "n2" in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 1;
_root.zoom.image.n2._visible = false;
_root.image.n2._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 195 MovieClip "n10" in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom.image.n10._visible = false;
_root.image.n10._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 183 MovieClip "n9" in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom.image.n9._visible = false;
_root.image.n9._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 183 MovieClip "n8" in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom.image.n8._visible = false;
_root.image.n8._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 187 MovieClip "n7" in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom.image.n7._visible = false;
_root.image.n7._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 179 MovieClip "n6" in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom.image.n6._visible = false;
_root.image.n6._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 200 MovieClip "tuvitest" in Symbol 201 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 2.5;
_root.zoom.image.tuvitest.gotoAndPlay(2);
_root.image.tuvitest.gotoAndPlay(2);
_root.sound_tuvi.gotoAndPlay(2);
_root.sound.gotoAndPlay(2);
}
}
Symbol 213 MovieClip Frame 1
stop();
Symbol 220 MovieClip Frame 1
stop();
Symbol 222 MovieClip Frame 1
stop();
Symbol 222 MovieClip Frame 110
_root.nextFrame();
Symbol 228 Button
on (release) {
getURL ("http://www.gamershood.com/10684/walkthrough/sniper-hunter-4-walkthrough", "_blank");
}
Symbol 231 MovieClip Frame 1
stop();
Symbol 234 Button
on (release) {
gotoAndStop (2);
}
Symbol 239 Button
on (release) {
_root.gotoAndStop(4);
}
Symbol 242 Button
on (release) {
gotoAndStop (1);
}
Symbol 243 MovieClip Frame 1
stop();
Symbol 246 MovieClip Frame 1
stop();
Symbol 250 MovieClip Frame 75
Mouse.hide();
Instance of Symbol 249 MovieClip in Symbol 250 MovieClip Frame 75
onClipEvent (load) {
if (_level0.mouseoff == 1) {
Mouse.show();
} else {
Mouse.hide();
}
}
Symbol 262 MovieClip Frame 1
stop();
Symbol 268 Button
on (release) {
stopAllSounds();
gotoAndPlay (2);
}
Symbol 270 Button
on (release) {
stopAllSounds();
gotoAndStop (9);
}
Symbol 272 Button
on (release) {
stopAllSounds();
nextFrame();
}
Symbol 273 Button
on (release) {
stopAllSounds();
gotoAndPlay (4);
}
Symbol 276 Button
on (release) {
stopAllSounds();
gotoAndPlay (6);
}
Symbol 278 Button
on (release) {
stopAllSounds();
gotoAndPlay (8);
}
Symbol 281 Button
on (release) {
gotoAndStop (1);
}
Symbol 282 MovieClip Frame 1
stop();
Symbol 282 MovieClip Frame 3
stop();
Symbol 282 MovieClip Frame 5
stop();
Symbol 282 MovieClip Frame 7
stop();
Symbol 282 MovieClip Frame 8
gotoAndStop (1);
Symbol 282 MovieClip Frame 9
stop();
Symbol 288 MovieClip Frame 1
stop();
Symbol 296 Button
on (release) {
_root.nextFrame();
}
Symbol 301 Button
on (release) {
_root.gotoAndStop(4);
}
Instance of Symbol 179 MovieClip "n7" in Symbol 303 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom2.image2.n7._visible = false;
_root.image2.n7._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 183 MovieClip "n3" in Symbol 303 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 1;
_root.zoom2.image2.n3._visible = false;
_root.image2.n3._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 189 MovieClip "n8" in Symbol 303 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom2.image2.n8._visible = false;
_root.image2.n8._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 192 MovieClip "n2" in Symbol 303 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 1.5;
_root.zoom2.image2.n2._visible = false;
_root.image2.n2._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 183 MovieClip "n10" in Symbol 303 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom2.image2.n10._visible = false;
_root.image2.n10._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 183 MovieClip "n5" in Symbol 303 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 1.5;
_root.zoom2.image2.n5._visible = false;
_root.image2.n5._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 179 MovieClip "n1" in Symbol 303 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 2;
_root.zoom2.image2.n1._visible = false;
_root.image2.n1._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 189 MovieClip "n9" in Symbol 303 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom2.image2.n9._visible = false;
_root.image2.n9._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 189 MovieClip "n6" in Symbol 303 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 2.5;
_root.zoom2.image2.n6._visible = false;
_root.image2.n6._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 189 MovieClip "n4" in Symbol 303 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 2.5;
_root.zoom2.image2.n4._visible = false;
_root.image2.n4._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 200 MovieClip "tuvitest" in Symbol 303 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 4.5;
_root.zoom2.image2.tuvitest.gotoAndPlay(2);
_root.image2.tuvitest.gotoAndPlay(2);
_root.sound_tuvi.gotoAndPlay(2);
_root.sound.gotoAndPlay(2);
}
}
Instance of Symbol 183 MovieClip "n9" in Symbol 313 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom3.image3.n9._visible = false;
_root.image3.n9._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 192 MovieClip "n2" in Symbol 313 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 1.5;
_root.zoom3.image3.n2._visible = false;
_root.image3.n2._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 183 MovieClip "n3" in Symbol 313 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 1.5;
_root.zoom3.image3.n3._visible = false;
_root.image3.n3._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 179 MovieClip "n10" in Symbol 313 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom3.image3.n10._visible = false;
_root.image3.n10._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 179 MovieClip "n7" in Symbol 313 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 2;
_root.zoom3.image3.n7._visible = false;
_root.image3.n7._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 189 MovieClip "n6" in Symbol 313 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 1;
_root.zoom3.image3.n6._visible = false;
_root.image3.n6._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 179 MovieClip "n1" in Symbol 313 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 2.5;
_root.zoom3.image3.n1._visible = false;
_root.image3.n1._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 189 MovieClip "n8" in Symbol 313 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom3.image3.n8._visible = false;
_root.image3.n8._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 189 MovieClip "n5" in Symbol 313 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 1.5;
_root.zoom3.image3.n5._visible = false;
_root.image3.n5._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 189 MovieClip "n4" in Symbol 313 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 3.5;
_root.zoom3.image3.n4._visible = false;
_root.image3.n4._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 200 MovieClip "tuvitest" in Symbol 313 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 3.5;
_root.zoom3.image3.tuvitest.gotoAndPlay(2);
_root.image3.tuvitest.gotoAndPlay(2);
_root.sound_tuvi.gotoAndPlay(2);
_root.sound.gotoAndPlay(2);
}
}
Instance of Symbol 183 MovieClip "n9" in Symbol 330 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom4.image4.n9._visible = false;
_root.image4.n9._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 183 MovieClip "n3" in Symbol 330 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 1.5;
_root.zoom4.image4.n3._visible = false;
_root.image4.n3._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 187 MovieClip "n5" in Symbol 330 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 2;
_root.zoom4.image4.n5._visible = false;
_root.image4.n5._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 179 MovieClip "n10" in Symbol 330 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom4.image4.n10._visible = false;
_root.image4.n10._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 179 MovieClip "n7" in Symbol 330 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 1.5;
_root.zoom4.image4.n7._visible = false;
_root.image4.n7._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 189 MovieClip "n6" in Symbol 330 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 3.5;
_root.zoom4.image4.n6._visible = false;
_root.image4.n6._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 179 MovieClip "n1" in Symbol 330 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 3;
_root.zoom4.image4.n1._visible = false;
_root.image4.n1._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 189 MovieClip "n8" in Symbol 330 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 2.5;
_root.zoom4.image4.n8._visible = false;
_root.image4.n8._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 329 MovieClip "n4" in Symbol 330 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 4.5;
_root.zoom4.image4.n4._visible = false;
_root.image4.n4._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 329 MovieClip "n2" in Symbol 330 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 5;
_root.zoom4.image4.n2._visible = false;
_root.image4.n2._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 200 MovieClip "tuvitest" in Symbol 330 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 3.5;
_root.zoom4.image4.tuvitest.gotoAndPlay(2);
_root.image4.tuvitest.gotoAndPlay(2);
_root.sound_tuvi.gotoAndPlay(2);
_root.sound.gotoAndPlay(2);
}
}
Instance of Symbol 183 MovieClip "n9" in Symbol 338 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 3.5;
_root.zoom5.image5.n9._visible = false;
_root.image5.n9._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 192 MovieClip "n2" in Symbol 338 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 5;
_root.zoom5.image5.n2._visible = false;
_root.image5.n2._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 183 MovieClip "n3" in Symbol 338 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 2.5;
_root.zoom5.image5.n3._visible = false;
_root.image5.n3._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 179 MovieClip "n10" in Symbol 338 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_root.zoom4.image4.n10._visible = false;
_root.image4.n10._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 179 MovieClip "n7" in Symbol 338 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 4.5;
_root.zoom5.image5.n7._visible = false;
_root.image5.n7._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 189 MovieClip "n6" in Symbol 338 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 2.5;
_root.zoom5.image5.n6._visible = false;
_root.image5.n6._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 179 MovieClip "n1" in Symbol 338 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 3.5;
_root.zoom5.image5.n1._visible = false;
_root.image5.n1._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 189 MovieClip "n8" in Symbol 338 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 3;
_root.zoom5.image5.n8._visible = false;
_root.image5.n8._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 337 MovieClip "n5" in Symbol 338 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 3.5;
_root.zoom5.image5.n5._visible = false;
_root.image5.n5._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 329 MovieClip "n4" in Symbol 338 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 6.5;
_root.zoom5.image5.n4._visible = false;
_root.image5.n4._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 200 MovieClip "tuvitest" in Symbol 338 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 4.5;
_root.zoom5.image5.tuvitest.gotoAndPlay(2);
_root.image5.tuvitest.gotoAndPlay(2);
_root.sound.gotoAndPlay(2);
_root.sound_tuvi.gotoAndPlay(2);
}
}
Symbol 345 MovieClip Frame 1
Instance of Symbol 183 MovieClip "n9" in Symbol 345 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 3.5;
_root.zoom6.image6.n9._visible = false;
_root.image6.n9._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 192 MovieClip "n2" in Symbol 345 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 3.5;
_root.zoom6.image6.n2._visible = false;
_root.image6.n2._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 183 MovieClip "n3" in Symbol 345 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 3;
_root.zoom6.image6.n3._visible = false;
_root.image6.n3._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 179 MovieClip "n10" in Symbol 345 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 5.5;
_root.zoom6.image6.n10._visible = false;
_root.image6.n10._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 179 MovieClip "n7" in Symbol 345 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 4.5;
_root.zoom6.image6.n7._visible = false;
_root.image6.n7._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 189 MovieClip "n6" in Symbol 345 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 6.5;
_root.zoom6.image6.n6._visible = false;
_root.image6.n6._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 179 MovieClip "n1" in Symbol 345 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 5.5;
_root.zoom6.image6.n1._visible = false;
_root.image6.n1._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 189 MovieClip "n8" in Symbol 345 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 6;
_root.zoom6.image6.n8._visible = false;
_root.image6.n8._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 187 MovieClip "n4" in Symbol 345 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 2.5;
_root.zoom6.image6.n4._visible = false;
_root.image6.n4._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 187 MovieClip "n5" in Symbol 345 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 3;
_root.zoom6.image6.n5._visible = false;
_root.image6.n5._visible = false;
_root.sound.gotoAndPlay(2);
_root.plahvatus();
}
}
Instance of Symbol 200 MovieClip "tuvitest" in Symbol 345 MovieClip Frame 1
on (release) {
if (!(_level0.levelscale === 1)) {
_level0.punktid = _level0.punktid + 3.5;
_root.zoom6.image6.tuvitest.gotoAndPlay(2);
_root.image6.tuvitest.gotoAndPlay(2);
_root.sound_tuvi.gotoAndPlay(2);
_root.sound.gotoAndPlay(2);
}
}
Symbol 359 MovieClip Frame 1
stopAllSounds();
Symbol 359 MovieClip Frame 32
stop();
Symbol 361 Button
on (release) {
_root.gotoAndStop(4);
}
Symbol 364 Button
on (release) {
getURL ("http://www.mygamespace.com/Gamershood/", "_blank");
}