Frame 1
function __com_mochibot__(swfid, mc, lv, trk) {
var x;
var g;
var s;
var fv;
var sb;
var u;
var res;
var mb;
var mbc;
mb = "__mochibot__";
mbc = "mochibot.com";
g = (_global ? (_global) : (_level0._root));
if (g[mb + swfid]) {
return(g[mb + swfid]);
}
s = System.security;
x = mc._root.getSWFVersion;
fv = (x ? (mc.getSWFVersion()) : ((_global ? 6 : 5)));
if (!s) {
s = {};
}
sb = s.sandboxType;
if (sb == "localWithFile") {
return(null);
}
x = s.allowDomain;
if (x) {
s.allowDomain(mbc);
}
x = s.allowInsecureDomain;
if (x) {
s.allowInsecureDomain(mbc);
}
u = (((((((((((("http://" + mbc) + "/my/core.swf?mv=7&fv=") + fv) + "&v=") + escape(getVersion())) + "&swfid=") + escape(swfid)) + "&l=") + lv) + "&f=") + mc) + (sb ? ("&sb=" + sb) : "")) + (trk ? "&t=1" : "");
lv = ((fv > 6) ? (mc.getNextHighestDepth()) : ((g[mb + "level"] ? (g[mb + "level"] + 1) : (lv))));
g[mb + "level"] = lv;
if (fv == 5) {
res = "_level" + lv;
if (!eval (res)) {
loadMovieNum (u, lv);
}
} else {
res = mc.createEmptyMovieClip(mb + swfid, lv);
res.loadMovie(u);
}
return(res);
}
__com_mochibot__("e4e441b0", this, 10301, true);
mochi.MochiServices.connect("385bd7e977c36e3a");
stop();
Frame 7
stop();
function preload() {
if (game_loaded == false) {
total = getBytesTotal();
loaded = getBytesLoaded();
percent = (loaded / total) * 100;
loading_txt.text = "loaded %" + percent;
if (loaded == total) {
game_loaded = true;
_root.gotoAndPlay("menu");
trace(game_loaded);
}
}
}
_root.stop();
game_loaded = false;
setInterval(preload, 4);
stop();
stop();
stop();
Frame 14
stop();
stop();
stop();
Mouse.show();
lvl = 1;
_root.tank.removeMovieClip();
_root.cannonball_fired.removeMovieClip();
_root.game_paused = true;
_root.gameover.removeMovieClip();
_root.cursor.removeMovieClip();
_root.multiplier_txt.removeMovieClip();
function chooseBackground() {
bg_grey.onPress = function () {
bg_blue._alpha = 70;
bg_green._alpha = 70;
bg_pink._alpha = 70;
this._alpha = 0;
bgcolor = "grey";
trace(bgcolor);
};
bg_blue.onPress = function () {
bg_grey._alpha = 70;
bg_green._alpha = 70;
bg_pink._alpha = 70;
this._alpha = 0;
bgcolor = "blue";
trace(bgcolor);
};
bg_green.onPress = function () {
bg_grey._alpha = 70;
bg_blue._alpha = 70;
bg_pink._alpha = 70;
this._alpha = 0;
bgcolor = "green";
trace(bgcolor);
};
bg_pink.onPress = function () {
bg_grey._alpha = 70;
bg_blue._alpha = 70;
bg_green._alpha = 70;
this._alpha = 0;
bgcolor = "pink";
trace(bgcolor);
};
}
Stage.showMenu = false;
stop();
play_but.onPress = function () {
gotoAndPlay ("entername");
};
_global.bgcolor;
chooseBackground();
stop();
Frame 18
play_bump._alpha = 0;
var playername = "your name here";
play_bump.onPress = function () {
playername = name_txt.text;
gotoAndPlay ("game");
};
stop();
Instance of Symbol 182 MovieClip "play_bump" in Frame 18
/* no clip actions */
Frame 27
trace(playername);
stop();
stop();
function bumpSound() {
var _local1 = new Sound(my_mc);
_local1.attachSound("bump_sound");
_local1.start();
}
function alarmSound() {
var _local1 = new Sound(my_mc);
_local1.attachSound("alarm_sound");
_local1.start();
}
function goodSound() {
var _local1 = new Sound(my_mc);
_local1.attachSound("good_sound");
_local1.start();
}
function showMultiplier() {
multiplierPanel = attachMovie("multiplier_txt", "multiplier_txt", 12000, {_x:460, _y:90});
}
function azalt() {
trace("azalt");
if (_root.counter != 0) {
_root.counter = _root.counter - 1;
}
if (_root.counter == 0) {
_root.counter = 0;
n = 0;
while (n <= 1200) {
clearInterval(n);
n++;
}
_root.aktif = true;
_root.exit_switch = false;
}
}
function checkMultiplier() {
if (_root.score_multiplier > 5) {
removeMovieClip(_root.cannonball_fired);
_root.score_multiplier = 1;
alarmSound();
}
}
function MoveTank() {
tank.onEnterFrame = function () {
showScoreAndState();
mousex = _xmouse - this._x;
mousey = (_ymouse - this._y) * -1;
angle = Math.atan(mousey / mousex) / (Math.PI/180);
if (mousex < 0) {
angle = angle + 180;
}
if ((mousex >= 0) && (mousey < 0)) {
angle = angle + 360;
}
firepower = Math.sqrt((mousex * mousex) + (mousey * mousey));
if (firepower > 700) {
firepower = 700;
}
_root.power_bar._yscale = firepower / 6;
this.cannon._rotation = angle * -1;
if (this._y > (Stage.height - 60)) {
this._y = Stage.height - 60;
}
if (this._y < 20) {
this._y = 20;
}
if (Key.isDown(38)) {
this._y = this._y - 5;
}
if (Key.isDown(40)) {
this._y = this._y + 5;
}
if (Key.isDown(32)) {
lvl++;
}
};
}
function fire() {
_root.score = _root.score - 3000;
_root.score_multiplier = 1;
angle = tank.cannon._rotation - 1;
start_ball_x = tank._x + (48 * Math.cos((angle * Math.PI) / 180));
start_ball_y = tank._y + (48 * Math.sin((angle * Math.PI) / 180));
cannonball_fired = attachMovie("cannonball", "cannonball", 15999, {_x:start_ball_x, _y:start_ball_y});
cannonball_fired.dirx = Math.cos((angle * Math.PI) / 180) * firepower;
cannonball_fired.diry = Math.sin((angle * Math.PI) / 180) * firepower;
cannonball_fired.onEnterFrame = function () {
this.diry = this.diry + gravity;
this._x = this._x + ((this.dirx / 30) - friction);
this._y = this._y + ((this.diry / 30) - friction);
if ((this._y + (this._height / 2)) > 380) {
this._y = 380 - (this._height / 2);
this._y = this._y - 4;
this.diry = (-this.diry) * bouncefactor;
score_multiplier = score_multiplier + 0.2;
bumpSound();
}
if ((this._x + this._width) > 535) {
this._x = 535 - this._width;
this._x = this._x - 4;
this.dirx = (-this.dirx) * bouncefactor;
score_multiplier = score_multiplier + 0.2;
bumpSound();
}
if (this._x < 25) {
this._x = 25 + this._width;
this._x = this._x + 4;
this.dirx = (-this.dirx) * bouncefactor;
score_multiplier = score_multiplier + 0.2;
bumpSound();
}
if (this._y < 25) {
this._y = 25 + this.height;
this._y = this._y + 4;
this.diry = (-this.diry) * bouncefactor;
score_multiplier = score_multiplier + 0.2;
bumpSound();
}
if (level.hitTest(this._x, this._y - 10, true)) {
this._y = this._y + 6;
this.diry = this.diry * (-bouncefactor);
score_multiplier = score_multiplier + 0.2;
bumpSound();
}
if (level.hitTest(this._x, this._y + 10, true)) {
this._y = this._y - 6;
this.diry = this.diry * (-bouncefactor);
score_multiplier = score_multiplier + 0.2;
bumpSound();
}
if (level.hitTest(this._x + 10, this._y, true)) {
this._x = this._x - 6;
this.dirx = this.dirx * (-bouncefactor);
score_multiplier = score_multiplier + 0.2;
bumpSound();
}
if (level.hitTest(this._x - 10, this._y, true)) {
this._x = this._x + 6;
this.dirx = this.dirx * (-bouncefactor);
score_multiplier = score_multiplier + 0.2;
bumpSound();
}
};
}
function exitRotate() {
_root.exit_mc._rotation = _root.exit_mc._rotation + 1;
}
function showScoreAndState() {
score_mc.text = score;
state_mc.text = current_state;
timer_mc.text = counter;
}
function advanceLevel(lvl) {
if (_root.lvl <= 26) {
_root.current_state = lvl;
exit_switch = false;
if (_root.score < 3500) {
_root.attachMovie("gameover", "gameover", _root.getNextHighestDepth(), {_x:Stage.width / 2, _y:Stage.height / 2});
_root.cannonball_fired.removeMovieClip();
alarmSound();
}
}
if (lvl > 26) {
_root.attachMovie("gameover", "gameover", _root.getNextHighestDepth(), {_x:Stage.width / 2, _y:Stage.height / 2});
_root.cannonball_fired.removeMovieClip();
_root.gotoAndPlay("finished");
}
_root.exit_holder.gotoAndPlay(lvl);
_root.switch_mc.gotoAndPlay(lvl);
_root.goods.gotoAndPlay(lvl);
}
function game() {
exitRotate();
if (game_paused != true) {
MoveTank();
}
}
function onMouseDown() {
if (game_paused != true) {
if (_root.ball_count == 0) {
this.gotoAndPlay(3);
tank.removeMovieClip();
cannonball_fired.removeMovieClip();
}
if (_root.score > 3000) {
_root.fire();
}
if (_root.score < 3000) {
_root.attachMovie("gameover", "gameover", _root.getNextHighestDepth(), {_x:Stage.width / 2, _y:Stage.height / 2});
_root.cannonball_fired.removeMovieClip();
_root.game_paused = true;
}
}
}
var aktif = true;
Mouse.hide();
counter = 0;
exit_switch = true;
Stage.showMenu = false;
game_paused = false;
stop();
Math.round((score = 50000));
_global.friction = 0.15;
_global.gravity = 4;
bouncefactor = 1;
score_multiplier = 1;
ball_count = 1;
_global.lvl = 1;
current_state = lvl;
advanceLevel(lvl);
attachMovie("crosshair", "crosshair", _root.getNextHighestDepth());
attachMovie("tank", "tank", 9000, {_x:40, _y:350});
crosshair.onEnterFrame = function () {
this._x = _xmouse;
this._y = _ymouse;
};
showMultiplier();
setInterval(game, 40);
trace(bgcolor);
switch (bgcolor) {
case "grey" :
backgrop.gotoAndPlay(1);
break;
case "blue" :
backdrop.gotoAndPlay(2);
break;
case "green" :
backdrop.gotoAndPlay(3);
break;
case "pink" :
backdrop.gotoAndPlay(4);
}
stop();
stop();
Frame 38
_root.tank.removeMovieClip();
_root.cannonball_fired.removeMovieClip();
_root.game_paused = true;
_root.cursor.removeMovieClip();
_root.multiplier_txt.removeMovieClip();
Mouse.show();
stop();
Symbol 8 MovieClip [multiplier_txt] Frame 1
var warning = new TextFormat();
warning.blockIndent = 20;
warning.color = 16711680 /* 0xFF0000 */;
var safe = new TextFormat();
safe.blockIndent = 20;
safe.color = 65331;
onEnterFrame = function () {
multiplier_txt.text = "x" + _root.score_multiplier;
if (_root.score_multiplier > 4) {
multiplier_txt.setTextFormat(warning);
}
if (_root.score_multiplier < 4) {
multiplier_txt.setTextFormat(safe);
}
if (_root.score_multiplier > 4.9) {
multiplier_txt.text = "ball lost";
removeMovieClip(_root.cannonball_fired);
_root.score_multiplier = 1;
}
};
Symbol 15 MovieClip [siyahbant] Frame 1
this._alpha = 60;
Symbol 16 MovieClip [instur1] Frame 1
stop();
Symbol 23 MovieClip [kaka_anim] Frame 3
this._alpha = 70;
Symbol 23 MovieClip [kaka_anim] Frame 4
this._alpha = 50;
Symbol 23 MovieClip [kaka_anim] Frame 5
this._alpha = 30;
Symbol 23 MovieClip [kaka_anim] Frame 6
this._alpha = 10;
Symbol 23 MovieClip [kaka_anim] Frame 7
this.removeMovieClip();
Symbol 25 MovieClip [dirchanger] Frame 1
function hitReset() {
canBeHit = true;
}
canBeHit = true;
onEnterFrame = function () {
setInterval(hitReset, 200);
a = Math.random();
b = Math.random();
if (this.hitTest(_root.cannonball_fired)) {
if ((a < 0.2) && (a > 0)) {
trace("backwards");
_root.cannonball_fired.dirx = _root.cannonball_fired.dirx * -1;
_root.cannonball_fired.diry = _root.cannonball_fired.diry * -1;
canBeHit = false;
}
if ((a >= 0.2) && (a < 0.4)) {
trace("speed up");
canBeHit = false;
}
if ((a >= 0.4) && (a < 0.7)) {
trace("switch off");
_root.exit_switch = false;
canBeHit = false;
}
if ((a >= 0.7) && (a <= 1)) {
trace("turn 90 clockwise");
_root.cannonball_fired.firepower = 600;
canBeHit = false;
}
}
};
Symbol 33 MovieClip [gameover] Frame 1
stop();
Mouse.show();
submit_score._alpha = 0;
more_mc._alpha = 0;
main_mc._alpha = 0;
main_mc.onPress = function () {
_root.gotoAndPlay("menu");
this.removeMovieClip();
};
more_mc.onPress = function () {
_root.gotoAndPlay("menu");
getURL ("http://www.UGOPlayer.com", "_blank");
this.removeMovieClip();
};
submit_score.onPress = function () {
trace("submit score on game over");
trace(_root.playername);
trace(_root.score);
mochi.MochiScores.showLeaderboard({boardID:"bd0acf97758fad39", score:_root.score, name:_root.playername});
_root.gotoAndPlay("menu");
this.removeMovieClip();
};
Symbol 36 MovieClip [good] Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (400 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 41 MovieClip [exit] Frame 1
stop();
onEnterFrame = function () {
if (_root.exit_switch == true) {
this.gotoAndPlay(2);
}
};
Symbol 41 MovieClip [exit] Frame 2
function lvlIncrement(lvl) {
lvl++;
return(lvl);
}
stop();
onEnterFrame = function () {
if (_root.exit_switch == false) {
this.gotoAndPlay(1);
}
if (this.hitTest(_root.cannonball_fired)) {
if (_root.exit_switch == true) {
_root.score = _root.score + (1000 * _root.score_multiplier);
_root.cannonball.removeMovieClip(this);
_root.attachMovie("trans", "trans", _root.getNextHighestDepth(), {_x:Stage.width / 2, _y:Stage.height / 2});
_root.ball_active = false;
_root.level.gotoAndPlay(lvl + 1);
_root.ball_count = 1;
_root.counter = 0;
lvl++;
this.gotoAndPlay(1);
_root.advanceLevel(lvl);
}
}
};
Symbol 44 MovieClip [kaka] Frame 1
onEnterFrame = function () {
if (this.hitTest(_root.cannonball_fired)) {
trace("hit kaka");
_root.attachMovie("kaka_anim", "kaka_anim", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.alarmSound();
_root.score = _root.score - 1500;
_root.cannonball_fired.removeMovieClip();
}
};
Symbol 62 MovieClip Frame 1
onEnterFrame = function () {
if (this.hitTest(_root.cannonball_fired)) {
trace("hit kaka");
_root.attachMovie("kaka_anim", "kaka_anim", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.alarmSound();
_root.score = _root.score - 1500;
_root.cannonball_fired.removeMovieClip();
}
};
Symbol 64 MovieClip Frame 1
onEnterFrame = function () {
if (this.hitTest(_root.cannonball_fired)) {
trace("hit kaka");
_root.attachMovie("kaka_anim", "kaka_anim", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.alarmSound();
_root.score = _root.score - 1500;
_root.cannonball_fired.removeMovieClip();
}
};
Symbol 70 MovieClip Frame 1
onEnterFrame = function () {
if (this.hitTest(_root.cannonball_fired)) {
trace("hit kaka");
_root.attachMovie("kaka_anim", "kaka_anim", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.alarmSound();
_root.score = _root.score - 1500;
_root.cannonball_fired.removeMovieClip();
}
};
Symbol 71 MovieClip Frame 1
onEnterFrame = function () {
if (this.hitTest(_root.cannonball_fired)) {
trace("hit kaka");
_root.attachMovie("kaka_anim", "kaka_anim", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.alarmSound();
_root.score = _root.score - 1500;
_root.cannonball_fired.removeMovieClip();
}
};
Symbol 74 MovieClip [level] Frame 1
stop();
Symbol 74 MovieClip [level] Frame 2
stop();
Symbol 74 MovieClip [level] Frame 3
stop();
Symbol 74 MovieClip [level] Frame 4
stop();
Symbol 74 MovieClip [level] Frame 5
stop();
Symbol 74 MovieClip [level] Frame 6
stop();
Symbol 74 MovieClip [level] Frame 7
stop();
Symbol 74 MovieClip [level] Frame 8
stop();
Symbol 74 MovieClip [level] Frame 9
stop();
Symbol 74 MovieClip [level] Frame 10
stop();
Symbol 74 MovieClip [level] Frame 11
stop();
Symbol 74 MovieClip [level] Frame 12
stop();
Symbol 74 MovieClip [level] Frame 13
stop();
Symbol 74 MovieClip [level] Frame 14
stop();
Symbol 74 MovieClip [level] Frame 15
stop();
Symbol 74 MovieClip [level] Frame 16
stop();
Symbol 74 MovieClip [level] Frame 17
stop();
Symbol 74 MovieClip [level] Frame 18
stop();
Symbol 74 MovieClip [level] Frame 19
stop();
Symbol 74 MovieClip [level] Frame 20
stop();
Symbol 74 MovieClip [level] Frame 21
stop();
Symbol 74 MovieClip [level] Frame 22
stop();
Symbol 74 MovieClip [level] Frame 23
stop();
Symbol 74 MovieClip [level] Frame 24
stop();
Symbol 74 MovieClip [level] Frame 25
stop();
Symbol 74 MovieClip [level] Frame 26
stop();
Symbol 74 MovieClip [level] Frame 27
stop();
Symbol 74 MovieClip [level] Frame 28
stop();
Symbol 74 MovieClip [level] Frame 29
stop();
Symbol 74 MovieClip [level] Frame 30
stop();
Symbol 74 MovieClip [level] Frame 31
stop();
Symbol 74 MovieClip [level] Frame 32
stop();
Symbol 74 MovieClip [level] Frame 33
stop();
Symbol 74 MovieClip [level] Frame 34
stop();
Symbol 74 MovieClip [level] Frame 35
stop();
Symbol 75 MovieClip [play_but] Frame 1
this._alpha = 0;
Symbol 76 MovieClip Frame 1
this._alpha = 0;
this.onPress = function () {
getURL ("http://www.UGOPlayer.com", "_blank");
};
Symbol 85 MovieClip Frame 1
this.onPress = function () {
getURL ("http://www.UGOPlayer.com", "_blank");
};
Symbol 86 MovieClip Frame 165
_root.gotoAndPlay("preloader");
Symbol 318 MovieClip [__Packages.mochi.MochiScores] Frame 0
class mochi.MochiScores
{
static var boardID, onClose, onError;
function MochiScores () {
}
static function setBoardID(boardID) {
mochi.MochiScores.boardID = boardID;
mochi.MochiServices.send("scores_setBoardID", {boardID:boardID});
}
static function showLeaderboard(options) {
if (options.clip != null) {
if ((options.clip != mochi.MochiServices.__get__clip()) || (mochi.MochiServices.__get__childClip()._target == undefined)) {
mochi.MochiServices.disconnect();
mochi.MochiServices.connect(mochi.MochiServices.__get__id(), options.clip);
}
delete options.clip;
}
if (options.name != null) {
if (typeof(options.name) == "object") {
if (options.name.text != undefined) {
options.name = options.name.text;
}
}
}
if (options.score != null) {
if (typeof(options.score) == "object") {
if (options.score.text != undefined) {
options.score = options.score.text;
}
}
}
if (options.onDisplay != null) {
options.onDisplay();
} else {
mochi.MochiServices.__get__clip().stop();
}
if (options.onClose != null) {
onClose = options.onClose;
} else {
onClose = function () {
mochi.MochiServices.__get__clip().play();
};
}
if (options.onError != null) {
onError = options.onError;
} else {
onError = onClose;
}
if (options.boardID == null) {
if (boardID != null) {
options.boardID = boardID;
}
}
mochi.MochiServices.send("scores_showLeaderboard", {options:options}, null, doClose);
}
static function closeLeaderboard() {
mochi.MochiServices.send("scores_closeLeaderboard");
}
static function getPlayerInfo(callbackObj, callbackMethod) {
mochi.MochiServices.send("scores_getPlayerInfo", null, callbackObj, callbackMethod);
}
static function submit(score, name, callbackObj, callbackMethod) {
mochi.MochiServices.send("scores_submit", {score:score, name:name}, callbackObj, callbackMethod);
}
static function requestList(callbackObj, callbackMethod) {
mochi.MochiServices.send("scores_requestList", null, callbackObj, callbackMethod);
}
static function scoresArrayToObjects(scores) {
var _local5 = {};
var _local1;
var _local4;
var _local2;
var _local6;
for (var _local8 in scores) {
if (typeof(scores[_local8]) == "object") {
if ((scores[_local8].cols != null) && (scores[_local8].rows != null)) {
_local5[_local8] = [];
_local2 = scores[_local8];
_local4 = 0;
while (_local4 < _local2.rows.length) {
_local6 = {};
_local1 = 0;
while (_local1 < _local2.cols.length) {
_local6[_local2.cols[_local1]] = _local2.rows[_local4][_local1];
_local1++;
}
_local5[_local8].push(_local6);
_local4++;
}
} else {
_local5[_local8] = {};
for (var _local7 in scores[_local8]) {
_local5[_local8][_local7] = scores[_local8][_local7];
}
}
} else {
_local5[_local8] = scores[_local8];
}
}
return(_local5);
}
static function doClose(args) {
if (args.error == true) {
if (args.errorCode == undefined) {
args.errorCode = "IOError";
}
onError.apply(null, [args.errorCode]);
} else {
onClose.apply();
}
}
}
Symbol 319 MovieClip [__Packages.mochi.MochiServices] Frame 0
class mochi.MochiServices
{
static var _id, _container, _clip, _sendChannelName, _rcvChannelName, __get__comChannelName, onError, _listenChannel, _rcvChannel, _loader, _loaderListener, _sendChannel;
function MochiServices () {
}
static function get id() {
return(_id);
}
static function get clip() {
return(_container);
}
static function get childClip() {
return(_clip);
}
static function getVersion() {
return("1.31");
}
static function allowDomains(server) {
var _local1 = server.split("/")[2].split(":")[0];
if (System.security) {
if (System.security.allowDomain) {
System.security.allowDomain("*");
System.security.allowDomain(_local1);
}
if (System.security.allowInsecureDomain) {
System.security.allowInsecureDomain("*");
System.security.allowInsecureDomain(_local1);
}
}
return(_local1);
}
static function get isNetworkAvailable() {
if (System.security) {
var _local1 = System.security;
if (_local1.sandboxType == "localWithFile") {
return(false);
}
}
return(true);
}
static function set comChannelName(val) {
if (val != undefined) {
if (val.length > 3) {
_sendChannelName = val + "_fromgame";
_rcvChannelName = val;
initComChannels();
}
}
//return(__get__comChannelName());
}
static function get connected() {
return(_connected);
}
static function connect(id, clip, onError) {
if ((!_connected) && (_clip == undefined)) {
trace("MochiServices Connecting...");
_connecting = true;
init(id, clip);
}
if (onError != undefined) {
mochi.MochiServices.onError = onError;
} else if (mochi.MochiServices.onError == undefined) {
mochi.MochiServices.onError = function (errorCode) {
trace(errorCode);
};
}
}
static function disconnect() {
if (_connected || (_connecting)) {
_connecting = (_connected = false);
flush(true);
if (_clip != undefined) {
_clip.removeMovieClip();
delete _clip;
}
_listenChannel.close();
_rcvChannel.close();
}
}
static function init(id, clip) {
_id = id;
if (clip != undefined) {
_container = clip;
} else {
_container = _root;
}
loadCommunicator(id, _container);
}
static function loadCommunicator(id, clip) {
var _local2 = "_mochiservices_com_" + id;
if (_clip != null) {
return(_clip);
}
if (!isNetworkAvailable) {
return(null);
}
allowDomains(_gatewayURL);
_clip = clip.createEmptyMovieClip(_local2, 10336, false);
_loader = new MovieClipLoader();
if (_loaderListener.waitInterval != null) {
clearInterval(_loaderListener.waitInterval);
}
_loaderListener = {};
_loaderListener.onLoadError = function (target_mc, errorCode, httpStatus) {
trace("MochiServices could not load.");
mochi.MochiServices.disconnect();
mochi.MochiServices.onError.apply(null, [errorCode]);
};
_loaderListener.onLoadStart = function (target_mc) {
this.isLoading = true;
};
_loaderListener.startTime = getTimer();
_loaderListener.wait = function () {
if ((getTimer() - this.startTime) > 10000) {
if (!this.isLoading) {
mochi.MochiServices.disconnect();
mochi.MochiServices.onError.apply(null, ["IOError"]);
}
clearInterval(this.waitInterval);
}
};
_loaderListener.waitInterval = setInterval(_loaderListener, "wait", 1000);
_loader.addListener(_loaderListener);
_loader.loadClip(_gatewayURL, _clip);
_sendChannel = new LocalConnection();
_sendChannel._queue = [];
_rcvChannel = new LocalConnection();
_rcvChannel.allowDomain = function (d) {
return(true);
};
_rcvChannel.allowInsecureDomain = _rcvChannel.allowDomain;
_rcvChannel._nextcallbackID = 0;
_rcvChannel._callbacks = {};
listen();
return(_clip);
}
static function onStatus(infoObject) {
if (!(infoObject.level === "error")) {
} else {
_connected = false;
_listenChannel.connect(_listenChannelName);
}
}
static function listen() {
_listenChannel = new LocalConnection();
_listenChannel.handshake = function (args) {
mochi.MochiServices.__set__comChannelName(args.newChannel);
};
_listenChannel.allowDomain = function (d) {
return(true);
};
_listenChannel.allowInsecureDomain = _listenChannel.allowDomain;
_listenChannel.connect(_listenChannelName);
trace("Waiting for MochiAds services to connect...");
}
static function initComChannels() {
if (!_connected) {
_sendChannel.onStatus = function (infoObject) {
mochi.MochiServices.onStatus(infoObject);
};
_sendChannel.send(_sendChannelName, "onReceive", {methodName:"handshakeDone"});
_sendChannel.send(_sendChannelName, "onReceive", {methodName:"registerGame", id:_id, clip:_clip, version:getVersion()});
_rcvChannel.onStatus = function (infoObject) {
mochi.MochiServices.onStatus(infoObject);
};
_rcvChannel.onReceive = function (pkg) {
var _local5 = pkg.callbackID;
var _local4 = this._callbacks[_local5];
if (!_local4) {
return(undefined);
}
var _local2 = _local4.callbackMethod;
var _local3 = _local4.callbackObject;
if (_local3 && (typeof(_local2) == "string")) {
_local2 = _local3[_local2];
}
if (_local2 != undefined) {
_local2.apply(_local3, pkg.args);
}
delete this._callbacks[_local5];
};
_rcvChannel.onError = function () {
mochi.MochiServices.onError.apply(null, ["IOError"]);
};
_rcvChannel.connect(_rcvChannelName);
trace("connected!");
_connecting = false;
_connected = true;
_listenChannel.close();
while (_sendChannel._queue.length > 0) {
_sendChannel.send(_sendChannelName, "onReceive", _sendChannel._queue.shift());
}
}
}
static function flush(error) {
var _local1;
var _local2;
while (_sendChannel._queue.length > 0) {
_local1 = _sendChannel._queue.shift();
if (_local1.callbackID != null) {
_local2 = _rcvChannel._callbacks[_local1.callbackID];
}
delete _rcvChannel._callbacks[_local1.callbackID];
if (error) {
handleError(_local1.args, _local2.callbackObject, _local2.callbackMethod);
}
}
}
static function handleError(args, callbackObject, callbackMethod) {
if (args != null) {
if (args.onError != null) {
args.onError.apply(null, ["NotConnected"]);
}
}
if (callbackMethod != null) {
args = {};
args.error = true;
args.errorCode = "NotConnected";
if ((callbackObject != null) && (typeof(callbackMethod) == "string")) {
callbackObject[callbackMethod](args);
} else if (callbackMethod != null) {
callbackMethod.apply(args);
}
}
}
static function send(methodName, args, callbackObject, callbackMethod) {
if (_connected) {
_sendChannel.send(_sendChannelName, "onReceive", {methodName:methodName, args:args, callbackID:_rcvChannel._nextcallbackID});
} else {
if ((_clip == undefined) || (!_connecting)) {
onError.apply(null, ["NotConnected"]);
handleError(args, callbackObject, callbackMethod);
flush(true);
return(undefined);
}
_sendChannel._queue.push({methodName:methodName, args:args, callbackID:_rcvChannel._nextcallbackID});
}
_rcvChannel._callbacks[_rcvChannel._nextcallbackID] = {callbackObject:callbackObject, callbackMethod:callbackMethod};
_rcvChannel._nextcallbackID++;
}
static var _gatewayURL = "http://www.mochiads.com/static/lib/services/services.swf";
static var _listenChannelName = "__mochiservices";
static var _connecting = false;
static var _connected = false;
}
Symbol 90 MovieClip Frame 101
stop();
Symbol 92 MovieClip [trans] Frame 1
Mouse.show();
morepls.onPress = function () {
getURL ("http://www.UGOPlayer.com", "_blank");
};
Symbol 92 MovieClip [trans] Frame 101
Mouse.hide();
if (_root.lvl >= 25) {
Mouse.show();
}
this.removeMovieClip();
Symbol 99 MovieClip [endgame] Frame 1
submit_score._alpha = 0;
submit_score.onPress = function () {
trace("submit score on game over");
trace(_root.playername);
trace(_root.score);
mochi.MochiScores.showLeaderboard({boardID:"bd0acf97758fad39", score:_root.score, name:_root.playername});
_root.gotoAndPlay("intro");
this.removeMovieClip();
};
Symbol 103 MovieClip [cannonball] Frame 1
function generateParticles() {
_parent.attachMovie("trail", "trail" + particleCount, _parent.getNextHighestDepth(), {_x:_x, _y:_y});
particleCount++;
}
particleCount = 0;
setInterval(generateParticles, 20);
Symbol 115 MovieClip [backdrop] Frame 1
stop();
Symbol 115 MovieClip [backdrop] Frame 2
stop();
Symbol 115 MovieClip [backdrop] Frame 3
stop();
Symbol 115 MovieClip [backdrop] Frame 4
stop();
Symbol 134 MovieClip [pargreen_] Frame 9
this.removeMovieClip(this);
Symbol 153 MovieClip [particle_red] Frame 1
Symbol 153 MovieClip [particle_red] Frame 9
this.removeMovieClip(this);
Symbol 159 MovieClip [trail] Frame 1
this.onEnterFrame = function () {
distance = Math.sqrt(Math.pow(_alpha - 0, 2) + Math.pow(_alpha - 0, 2)) / 8;
_alpha = (_alpha - distance);
_xscale = (_xscale - (distance / 4));
_yscale = (_yscale - (distance / 4));
if (_alpha < 1) {
this.removeMovieClip();
}
};
Symbol 162 MovieClip [verygood] Frame 1
onEnterFrame = function () {
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (2400 * _root.score_multiplier);
_root.attachMovie("particle_red", "particle_red", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.removeMovieClip(this);
}
if (_root.cannonball_fired.hitTest(_root.exit_mc)) {
this.removeMovieClip(this);
}
};
Symbol 169 MovieClip [instructions] Frame 1
stop();
onMouseDown = function () {
_root.instructions.gotoAndPlay(2);
};
Symbol 169 MovieClip [instructions] Frame 2
stop();
onMouseDown = function () {
_root.instructions.gotoAndPlay(3);
};
Symbol 169 MovieClip [instructions] Frame 3
stop();
onMouseDown = function () {
_root.instructions.gotoAndPlay(4);
};
Symbol 169 MovieClip [instructions] Frame 4
_root.game_paused = false;
_root.instructions.removeMovieClip();
Symbol 170 MovieClip Frame 1
this._alpha = 70;
Symbol 171 MovieClip Frame 1
this._alpha = 70;
Symbol 172 MovieClip Frame 1
this._alpha = 70;
Symbol 173 MovieClip Frame 1
this._alpha = 70;
Symbol 177 MovieClip Frame 1
this.onPress = function () {
getURL ("http://www.UGOPlayer.com", "_blank");
};
Symbol 195 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (this.hitTest(_root.cannonball_fired) && (_root.aktif == true)) {
_root.aktif = false;
_root.exit_switch = true;
_root.counter = 5;
var _local3 = setInterval(_root.azalt, 1000);
trace(_local3);
}
};
Symbol 196 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (this.hitTest(_root.cannonball_fired) && (_root.aktif == true)) {
_root.aktif = false;
_root.exit_switch = true;
_root.counter = 5;
var _local3 = setInterval(_root.azalt, 1000);
trace(_local3);
}
};
Symbol 196 MovieClip Frame 2
stop();
Symbol 197 MovieClip Frame 1
stop();
Symbol 197 MovieClip Frame 2
stop();
Symbol 197 MovieClip Frame 3
stop();
Symbol 197 MovieClip Frame 4
stop();
Symbol 197 MovieClip Frame 5
stop();
Symbol 197 MovieClip Frame 6
stop();
Symbol 197 MovieClip Frame 7
stop();
Symbol 197 MovieClip Frame 8
stop();
Symbol 197 MovieClip Frame 9
stop();
Symbol 197 MovieClip Frame 10
stop();
Symbol 197 MovieClip Frame 11
stop();
Symbol 197 MovieClip Frame 12
stop();
Symbol 197 MovieClip Frame 13
stop();
Symbol 197 MovieClip Frame 14
stop();
Symbol 197 MovieClip Frame 15
stop();
Symbol 197 MovieClip Frame 16
stop();
Symbol 197 MovieClip Frame 17
stop();
Symbol 197 MovieClip Frame 18
stop();
Symbol 197 MovieClip Frame 19
stop();
Symbol 197 MovieClip Frame 20
stop();
Symbol 197 MovieClip Frame 21
stop();
Symbol 197 MovieClip Frame 22
stop();
Symbol 197 MovieClip Frame 23
stop();
Symbol 197 MovieClip Frame 24
stop();
Symbol 197 MovieClip Frame 25
stop();
Symbol 197 MovieClip Frame 26
stop();
Symbol 199 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 263 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 266 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 267 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 269 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 270 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 271 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 272 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 274 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 275 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 276 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 277 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 278 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 279 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 280 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 281 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 282 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 283 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 284 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 285 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 286 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 287 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 288 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 289 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 290 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 291 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 292 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 293 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (400 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 294 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 295 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 296 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 297 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 298 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 299 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 300 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 301 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 302 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 303 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 304 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 305 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 306 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 307 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 308 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 309 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 310 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 311 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 312 MovieClip Frame 1
onEnterFrame = function () {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.cannonball_fired)) {
trace(this._name);
_root.score = _root.score + (1200 * _root.score_multiplier);
_root.attachMovie("pargreen_", "pargreen_", _root.getNextHighestDepth(), {_x:_root.cannonball_fired._x, _y:_root.cannonball_fired._y});
_root.goodSound();
this.unloadMovie();
}
if (_root.cannonball_fired.hitTest(_root.exit_mc) && (_root.exit_switch == true)) {
this.unloadMovie();
}
};
Symbol 313 MovieClip Frame 1
stop();
Symbol 313 MovieClip Frame 2
stop();
Symbol 313 MovieClip Frame 3
stop();
Symbol 313 MovieClip Frame 4
stop();
Symbol 313 MovieClip Frame 5
stop();
Symbol 313 MovieClip Frame 6
stop();
Symbol 313 MovieClip Frame 7
stop();
Symbol 313 MovieClip Frame 8
stop();
Symbol 313 MovieClip Frame 9
stop();
Symbol 313 MovieClip Frame 10
stop();
Symbol 313 MovieClip Frame 11
stop();
Symbol 313 MovieClip Frame 12
stop();
Symbol 313 MovieClip Frame 13
stop();
Symbol 313 MovieClip Frame 14
stop();
Symbol 313 MovieClip Frame 15
stop();
Symbol 313 MovieClip Frame 16
stop();
Symbol 313 MovieClip Frame 17
stop();
Symbol 313 MovieClip Frame 18
stop();
Symbol 313 MovieClip Frame 19
stop();
Symbol 313 MovieClip Frame 20
stop();
Symbol 313 MovieClip Frame 21
stop();
Symbol 313 MovieClip Frame 22
stop();
Symbol 313 MovieClip Frame 23
stop();
Symbol 313 MovieClip Frame 24
stop();
Symbol 313 MovieClip Frame 25
stop();
Symbol 313 MovieClip Frame 26
stop();
Symbol 313 MovieClip Frame 27
stop();
Symbol 313 MovieClip Frame 28
stop();
Symbol 313 MovieClip Frame 29
stop();
Symbol 313 MovieClip Frame 30
stop();
Symbol 313 MovieClip Frame 31
stop();
Symbol 313 MovieClip Frame 32
stop();
Symbol 313 MovieClip Frame 33
stop();
Symbol 313 MovieClip Frame 34
stop();
Symbol 313 MovieClip Frame 35
stop();
Symbol 313 MovieClip Frame 36
stop();
Symbol 313 MovieClip Frame 37
stop();
Symbol 313 MovieClip Frame 38
stop();
Symbol 313 MovieClip Frame 39
stop();
Symbol 313 MovieClip Frame 40
stop();
Symbol 313 MovieClip Frame 41
stop();
Symbol 313 MovieClip Frame 42
stop();
Symbol 313 MovieClip Frame 43
stop();
Symbol 313 MovieClip Frame 44
stop();
Symbol 313 MovieClip Frame 45
stop();
Symbol 313 MovieClip Frame 46
stop();
Symbol 313 MovieClip Frame 47
stop();
Symbol 313 MovieClip Frame 48
stop();
Symbol 315 MovieClip Frame 1
stop();
Symbol 315 MovieClip Frame 2
stop();
Symbol 315 MovieClip Frame 3
stop();
Symbol 315 MovieClip Frame 4
stop();
Symbol 315 MovieClip Frame 5
stop();
Symbol 315 MovieClip Frame 6
stop();
Symbol 315 MovieClip Frame 7
stop();
Symbol 315 MovieClip Frame 8
stop();
Symbol 315 MovieClip Frame 9
stop();
Symbol 315 MovieClip Frame 10
stop();
Symbol 315 MovieClip Frame 11
stop();
Symbol 315 MovieClip Frame 12
stop();
Symbol 315 MovieClip Frame 13
stop();
Symbol 315 MovieClip Frame 14
stop();
Symbol 315 MovieClip Frame 15
stop();
Symbol 315 MovieClip Frame 16
stop();
Symbol 315 MovieClip Frame 17
stop();
Symbol 315 MovieClip Frame 18
stop();
Symbol 315 MovieClip Frame 19
stop();
Symbol 315 MovieClip Frame 20
stop();
Symbol 315 MovieClip Frame 21
stop();
Symbol 315 MovieClip Frame 22
stop();
Symbol 315 MovieClip Frame 23
stop();
Symbol 315 MovieClip Frame 24
stop();
Symbol 315 MovieClip Frame 25
stop();
Symbol 317 MovieClip Frame 80
Mouse.show();