STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228025
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2560 · P5119

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/61494915?noj=FRM61494915-19DC" width="1" height="1"></div>

moon_master.swf

This is the info page for
Flash #7523

(Click the ID number above for more basic data on this flash file.)


Text
MOON
MASTER

Press ENTER to Continue

GAME OVER

level 2

MOON MASTER!

Congratulations!

ActionScript [AS1/AS2]

Frame 1
bytes_loaded = Math.round(_root.getBytesLoaded()); bytes_total = Math.round(_root.getBytesTotal()); getPercent = bytes_loaded / bytes_total; _root.progBar._width = getPercent * 500; _root.progText = ("Loading " + Math.round(getPercent * 100)) + "%"; if (bytes_loaded == bytes_total) { gotoAndPlay (3); }
Frame 2
gotoAndPlay (1);
Frame 3
if (Key.isDown(13)) { gotoAndPlay (5); }
Frame 4
gotoAndPlay (3);
Frame 5
function moveStuff() { if (timer > 0) { if (Key.isDown(37)) { this._x = this._x - this.speed; this.play(); walkingSound.start(0.05, 0); } if (Key.isDown(39)) { this._x = this._x + this.speed; this.play(); walkingSound.start(0.05, 0); } if (Key.isDown(38)) { this._y = this._y - this.speed; this.play(); walkingSound.start(0.05, 0); } if (Key.isDown(40)) { this._y = this._y + this.speed; this.play(); walkingSound.start(0.05, 0); } if (Key.isDown(32)) { if (bulletMax < ammo) { walkingSound.stop(); laserSound.start(); this_x = getProperty(this, _x); this_y = getProperty(this, _y); duplicateMovieClip ("_root.laser", "laser" + n, n); setProperty("laser" + n, _x , this_x + 23); setProperty("laser" + n, _y , this_y - 15); ammo = ammo - 1; n++; } } if (this._x > (StageWidth + (this._width / 2))) { this._x = -(this._width / 2); } if (this._x < (-(this._width / 2))) { this._x = StageWidth + (this._width / 2); } if (this._y > (StageHeight + (this._height / 2))) { this._y = -(this._height / 2); } if (this._y < (-(this._height / 2))) { this._y = StageHeight + (this._height / 2); } } } var n = 0; var hit = false; var score = 0; var points = 5280; var enemyPoints = 50; var ammo = 10; var bulletMax = 0; var timer = 10; var timerSpeed = 0.06; walkingSound = new Sound(this); walkingSound.attachSound("knock.mp3"); laserSound = new Sound(this); laserSound.attachSound("laser.mp3"); enemySound = new Sound(this); enemySound.attachSound("die.mp3"); treasureSound = new Sound(this); treasureSound.attachSound("square.mp3"); StageWidth = 550; StageHeight = 400; _global.levelNum = 1; _global.nextLevel = function () { levelNum++; if (levelNum == 2) { gotoAndPlay (11); } if (levelNum == 3) { gotoAndPlay (17); } }; _global.firstLevel = function () { if (levelNum == 2) { levelNum--; gotoAndPlay (5); } if (levelNum == 3) { levelNum = levelNum - 2; gotoAndPlay (5); } if (levelNum == 1) { gotoAndPlay (5); } };
Frame 6
box_mc.speed = 5; box_mc.onEnterFrame = moveStuff; if (hit == true) { removeMovieClip(this.enemy_mc); hit = false; this.score = this.score + this.enemyPoints; setProperty(_root.enemy_mc, _x , Math.random() * (Stage.width - 300)); } this.timer = this.timer - this.timerSpeed; this.ammoText.text = "Ammo: " + ammo; this.scoreText.text = "Score: " + score; this.timerText.text = "Time: " + Math.round(this.timer);
Frame 7
if (timer >= 0) { gotoAndPlay (6); } else { enemySound.start(); this.box_mc.gotoAndPlay(11); gotoAndPlay (8); }
Frame 8
if (Key.isDown(13)) { firstLevel(); }
Frame 9
gotoAndPlay (8);
Frame 10
gotoAndPlay (11);
Frame 11
function moveStuff() { if (timer > 0) { if (Key.isDown(37)) { this._x = this._x - this.speed; this.play(); walkingSound.start(0.05, 0); } if (Key.isDown(39)) { this._x = this._x + this.speed; this.play(); walkingSound.start(0.05, 0); } if (Key.isDown(38)) { this._y = this._y - this.speed; this.play(); walkingSound.start(0.05, 0); } if (Key.isDown(40)) { this._y = this._y + this.speed; this.play(); walkingSound.start(0.05, 0); } if (Key.isDown(32)) { if (bulletMax < ammo) { walkingSound.stop(); laserSound.start(); this_x = getProperty(this, _x); this_y = getProperty(this, _y); duplicateMovieClip ("_root.laser", "laser" + n, n); setProperty("laser" + n, _x , this_x + 23); setProperty("laser" + n, _y , this_y - 15); ammo = ammo - 1; n++; } } if (this._x > (StageWidth + (this._width / 2))) { this._x = -(this._width / 2); } if (this._x < (-(this._width / 2))) { this._x = StageWidth + (this._width / 2); } if (this._y > (StageHeight + (this._height / 2))) { this._y = -(this._height / 2); } if (this._y < (-(this._height / 2))) { this._y = StageHeight + (this._height / 2); } } } var n = 0; var hit = false; var points = 2454; var enemyPoints = 50; var ammo = 10; var bulletMax = 0; var timerSpeed = 0.06; StageWidth = 550; StageHeight = 400;
Frame 12
box_mc.speed = 5; box_mc.onEnterFrame = moveStuff; if (hit == true) { removeMovieClip(this.enemy_mc); hit = false; this.score = this.score + this.enemyPoints; setProperty(_root.enemy_mc, _x , Math.random() * (Stage.width - 300)); } this.timer = this.timer - this.timerSpeed; this.ammoText.text = "Ammo: " + ammo; this.scoreText.text = "Score: " + score; this.timerText.text = "Time: " + Math.round(this.timer);
Frame 13
if (timer >= 0) { gotoAndPlay (12); } else { enemySound.start(); this.box_mc.gotoAndPlay(11); gotoAndPlay (14); }
Frame 14
if (Key.isDown(13)) { firstLevel(); }
Frame 15
gotoAndPlay (14);
Frame 16
gotoAndPlay (17);
Frame 17
function moveStuff() { if (timer > 0) { if (Key.isDown(37)) { this._x = this._x - this.speed; this.play(); walkingSound.start(0.05, 0); } if (Key.isDown(39)) { this._x = this._x + this.speed; this.play(); walkingSound.start(0.05, 0); } if (Key.isDown(38)) { this._y = this._y - this.speed; this.play(); walkingSound.start(0.05, 0); } if (Key.isDown(40)) { this._y = this._y + this.speed; this.play(); walkingSound.start(0.05, 0); } if (Key.isDown(32)) { if (bulletMax < ammo) { walkingSound.stop(); laserSound.start(); this_x = getProperty(this, _x); this_y = getProperty(this, _y); duplicateMovieClip ("_root.laser", "laser" + n, n); setProperty("laser" + n, _x , this_x + 23); setProperty("laser" + n, _y , this_y - 15); ammo = ammo - 1; n++; } } if (this._x > (StageWidth + (this._width / 2))) { this._x = -(this._width / 2); } if (this._x < (-(this._width / 2))) { this._x = StageWidth + (this._width / 2); } if (this._y > (StageHeight + (this._height / 2))) { this._y = -(this._height / 2); } if (this._y < (-(this._height / 2))) { this._y = StageHeight + (this._height / 2); } } } var n = 0; var hit = false; var points = 10; var enemyPoints = 50; var ammo = 10; var bulletMax = 0; var timerSpeed = 0.06; StageWidth = 550; StageHeight = 400;
Frame 18
box_mc.speed = 5; box_mc.onEnterFrame = moveStuff; if (hit == true) { removeMovieClip(this.enemy_mc); hit = false; this.score = this.score + this.enemyPoints; setProperty(this.enemy_mc, _x , -100); gotoAndPlay (25); } this.timer = this.timer - this.timerSpeed; this.ammoText.text = "Ammo: " + ammo; this.scoreText.text = "Score: " + score; this.timerText.text = "Time: " + Math.round(this.timer);
Frame 19
if (timer >= 0) { gotoAndPlay (18); } else { enemySound.start(); this.box_mc.gotoAndPlay(11); gotoAndPlay (20); }
Frame 20
if (Key.isDown(13)) { firstLevel(); }
Frame 21
gotoAndPlay (20);
Frame 26
timer = 0;
Frame 109
Frame 417
if (Key.isDown(13)) { stopAllSounds(); firstLevel(); } else { firstLevel(); }
Symbol 38 MovieClip Frame 1
_y = (_y - 5); if (Number(_y) < 55) { removeMovieClip(""); } if (this.hitTest(_parent.enemy_mc) == true) { _parent.hit = true; removeMovieClip(""); _root.enemySound.start(1, 0); }
Symbol 38 MovieClip Frame 2
_y = (_y - 5); if (Number(_y) < 0) { removeMovieClip(""); } gotoAndPlay (1);
Symbol 39 MovieClip Frame 1
if (this.hitTest(_root.box_mc) == true) { if (Key.isDown(37)) { _parent.box_mc._x = _parent.box_mc._x + _parent.box_mc.speed; } if (Key.isDown(39)) { _parent.box_mc._x = _parent.box_mc._x - _parent.box_mc.speed; } if (Key.isDown(38)) { _parent.box_mc._y = _parent.box_mc._y + _parent.box_mc.speed; } if (Key.isDown(40)) { _parent.box_mc._y = _parent.box_mc._y - _parent.box_mc.speed; } }
Symbol 39 MovieClip Frame 2
gotoAndPlay (1);
Symbol 42 MovieClip Frame 1
if (this.hitTest(_root.box_mc) == true) { if (_parent.ammo < 10) { _parent.ammo = _parent.ammo + 1; } _root.treasureSound.start(); _parent.score = _parent.score + _parent.points; nextLevel(); }
Symbol 42 MovieClip Frame 2
gotoAndPlay (1);
Symbol 43 MovieClip Frame 1
stop();
Symbol 43 MovieClip Frame 3
stop();
Symbol 43 MovieClip Frame 4
gotoAndPlay (1);
Symbol 43 MovieClip Frame 21
stop();
Symbol 77 MovieClip Frame 263
stop();

Library Items

Symbol 1 Sound [square.mp3]
Symbol 2 Sound [laser.mp3]
Symbol 3 Sound [knock.mp3]
Symbol 4 Sound [die.mp3]
Symbol 5 Sound [moonmaster.mp3]Used by:Timeline
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:Timeline
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:Timeline
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:12  Timeline
Symbol 12 MovieClipUses:11Used by:13
Symbol 13 MovieClipUses:12Used by:Timeline
Symbol 14 GraphicUsed by:Timeline
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClipUses:15Used by:21 43
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:17Used by:21 43
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:19Used by:21 43
Symbol 21 MovieClipUses:16 18 20Used by:Timeline
Symbol 22 FontUsed by:23 28 44 61 62
Symbol 23 EditableTextUses:22Used by:24
Symbol 24 MovieClipUses:23Used by:25
Symbol 25 MovieClipUses:24Used by:Timeline
Symbol 26 FontUsed by:27
Symbol 27 EditableTextUses:26Used by:Timeline
Symbol 28 TextUses:22Used by:29 45
Symbol 29 MovieClipUses:28Used by:30
Symbol 30 MovieClipUses:29Used by:Timeline
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClipUses:31Used by:39  Timeline
Symbol 33 FontUsed by:34 35 36 47 48 49 50 51 52 53
Symbol 34 EditableTextUses:33Used by:Timeline
Symbol 35 EditableTextUses:33Used by:Timeline
Symbol 36 EditableTextUses:33Used by:Timeline
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:37Used by:Timeline
Symbol 39 MovieClipUses:32Used by:Timeline
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:40Used by:42
Symbol 42 MovieClipUses:41Used by:Timeline
Symbol 43 MovieClipUses:16 18 20Used by:Timeline
Symbol 44 TextUses:22Used by:45
Symbol 45 MovieClipUses:28 44Used by:46
Symbol 46 MovieClipUses:45Used by:Timeline
Symbol 47 EditableTextUses:33Used by:Timeline
Symbol 48 EditableTextUses:33Used by:Timeline
Symbol 49 EditableTextUses:33Used by:Timeline
Symbol 50 EditableTextUses:33Used by:Timeline
Symbol 51 EditableTextUses:33Used by:Timeline
Symbol 52 EditableTextUses:33Used by:Timeline
Symbol 53 EditableTextUses:33Used by:Timeline
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:54Used by:60
Symbol 56 GraphicUsed by:57
Symbol 57 MovieClipUses:56Used by:60
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClipUses:58Used by:60
Symbol 60 MovieClipUses:55 57 59Used by:Timeline
Symbol 61 TextUses:22Used by:63
Symbol 62 TextUses:22Used by:63
Symbol 63 MovieClipUses:61 62Used by:64
Symbol 64 MovieClipUses:63Used by:Timeline
Symbol 65 GraphicUsed by:66
Symbol 66 MovieClipUses:65Used by:75 77
Symbol 67 GraphicUsed by:68
Symbol 68 MovieClipUses:67Used by:75 77
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:75 77
Symbol 71 GraphicUsed by:72
Symbol 72 MovieClipUses:71Used by:75 77
Symbol 73 GraphicUsed by:74
Symbol 74 MovieClipUses:73Used by:75 77 84
Symbol 75 MovieClipUses:66 68 70 72 74Used by:Timeline
Symbol 76 SoundUsed by:77
Symbol 77 MovieClipUses:66 68 70 72 74 76Used by:Timeline
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:84
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:80Used by:84
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:84
Symbol 84 MovieClipUses:79 81 83 74Used by:Timeline

Instance Names

"scoreText"Frame 5Symbol 34 EditableText
"ammoText"Frame 5Symbol 35 EditableText
"timerText"Frame 5Symbol 36 EditableText
"laser"Frame 6Symbol 38 MovieClip
"box_mc"Frame 6Symbol 43 MovieClip
"scoreText"Frame 11Symbol 48 EditableText
"ammoText"Frame 11Symbol 49 EditableText
"timerText"Frame 11Symbol 50 EditableText
"laser"Frame 12Symbol 38 MovieClip
"box_mc"Frame 12Symbol 43 MovieClip
"scoreText"Frame 17Symbol 51 EditableText
"ammoText"Frame 17Symbol 52 EditableText
"timerText"Frame 17Symbol 53 EditableText
"laser"Frame 18Symbol 38 MovieClip
"enemy_mc"Frame 18Symbol 60 MovieClip
"box_mc"Frame 18Symbol 43 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "square.mp3"
ExportAssets (56)Timeline Frame 1Symbol 2 as "laser.mp3"
ExportAssets (56)Timeline Frame 1Symbol 3 as "knock.mp3"
ExportAssets (56)Timeline Frame 1Symbol 4 as "die.mp3"
ExportAssets (56)Timeline Frame 1Symbol 5 as "moonmaster.mp3"
ExportAssets (56)Timeline Frame 26Symbol 5 as "moonmaster.mp3"
ExportAssets (56)Timeline Frame 109Symbol 5 as "moonmaster.mp3"

Dynamic Text Variables

progTextSymbol 27 EditableText""




http://swfchan.com/2/7523/info.shtml
Created: 12/6 -2019 11:44:03 Last modified: 12/6 -2019 11:44:03 Server time: 19/04 -2024 16:07:38