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

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

pacmaso.swf

This is the info page for
Flash #1204

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


Text
GAME OVER

setter

e_setter

start

9999999999

HIGH SCORE

0

7650

2333

ActionScript [AS1/AS2]

Frame 1
function writeData() { so.data.high_score = this.high_score; so.flush(); } function init() { Mouse.removeListener(wheelListener); Key.removeListener(keyListener); } function eatEnemy() { this.pause_cnt = 15; this.pause_flg = true; var _local2 = this.combo_cnt * 200; this.score = this.score + _local2; this.combo_cnt = this.combo_cnt * 2; this.mc_gs.entry(this.mc_gokkun._x + 20, this.mc_gokkun._y, _local2); } function eatFruits() { this.pause_cnt = 15; this.pause_flg = true; var _local2 = this.fruits_num * 800; this.score = this.score + _local2; this.combo_cnt++; this.mc_gs.entry(this.mc_gokkun._x + 20, this.mc_gokkun._y, _local2); } function randomInt(maxNum) { var _local1 = Math.random() * maxNum; if (_local1 == 0) { _local1 = 1; } else { _local1 = Math.ceil(_local1); } return(_local1); } var wheelListener = new Object(); wheelListener.onMouseWheel = function (delta) { if (!_root.game_flg) { return(undefined); } mc_gokkun.moveLine(delta); }; Mouse.addListener(wheelListener); keyListener = new Object(); keyListener.onKeyDown = function () { if (!_root.game_flg) { return(undefined); } switch (Key.getCode()) { case 38 : n = 1; break; case 40 : n = -1; break; default : n = 0; } mc_gokkun.moveLine(n); }; Key.addListener(keyListener); _quality = "low"; this.scroll_speed = 3; this.score = 0; this.wall_list = []; if (this.esa_set_cnt == undefined) { this.esa_set_cnt = 0; } this.at_cnt = 0; this.pause_flg = false; this.combo_cnt = 1; this.pause_cnt = 0; this.mc_title._visible = true; this.esa_get_cnt = 0; this.fruits_num = 1; this.game_flg = false; this.fruits_set_flg = false; this.high_score = 7650; this.now_line = 1; so = SharedObject.getLocal("highscore"); if (so.data.high_score == undefined) { this.initData(); so.data.high_score = this.high_score; } else { this.high_score = so.data.high_score; } this.onEnterFrame = function () { if (!this.pause_flg) { if (this.at_cnt > 0) { this.at_cnt--; } else { this.combo_cnt = 1; } } else { this.pause_cnt--; if (this.pause_cnt <= 0) { this.pause_flg = false; } } if (this.score > 9999999999) { this.score = 9999999999; } if (this.score > this.high_score) { this.high_score = this.score; } }; this.stop();
Instance of Symbol 60 MovieClip in Frame 1
//component parameters onClipEvent (construct) { line_num = 1; }
Instance of Symbol 60 MovieClip in Frame 1
//component parameters onClipEvent (construct) { line_num = 2; }
Instance of Symbol 60 MovieClip in Frame 1
//component parameters onClipEvent (construct) { line_num = 3; }
Instance of Symbol 62 MovieClip in Frame 1
//component parameters onClipEvent (construct) { line_num = 1; }
Instance of Symbol 62 MovieClip in Frame 1
//component parameters onClipEvent (construct) { line_num = 2; }
Instance of Symbol 62 MovieClip in Frame 1
//component parameters onClipEvent (construct) { line_num = 3; }
Frame 2
this.game_flg = true; this.stop();
Symbol 2 MovieClip [esa_power] Frame 1
this.onEnterFrame = function () { if (_root.pause_flg) { return(undefined); } this._x = this._x - _parent.scroll_speed; if (this._x <= -10) { this.removeMovieClip(); } if (_root.game_flg) { if (this.hitTest(_parent.mc_gokkun.mc_hit)) { _parent.at_cnt = 175; _parent.score = _parent.score + 30; this.removeMovieClip(); } } };
Symbol 4 MovieClip [esa] Frame 1
this.onEnterFrame = function () { if (_root.pause_flg) { return(undefined); } this._x = this._x - _parent.scroll_speed; if (this._x <= -10) { this.removeMovieClip(); } if (_root.game_flg) { if (this.hitTest(_parent.mc_gokkun.mc_hit)) { _root.esa_get_cnt++; if (_root.esa_get_cnt == 40) { _root.fruits_set_flg = true; } _parent.score = _parent.score + 10; this.removeMovieClip(); } } };
Symbol 9 MovieClip Frame 1
this._visible = false; this.ten_flg = false; this.onEnterFrame = function () { if (_root.at_cnt > 0) { this._visible = true; if ((_root.at_cnt <= 60) && (!ten_flg)) { this.flg = true; this.gotoAndPlay("ten"); } else { this.flg = false; this.gotoAndStop(1); } } else { this.flg = false; this.gotoAndStop(1); this._visible = false; } };
Symbol 9 MovieClip Frame 11
this.gotoAndPlay(_currentframe - 1);
Symbol 14 MovieClip Frame 1
_parent.my_speed = 1.1; this.stop();
Symbol 14 MovieClip Frame 2
_parent.my_speed = 1.2; this.stop();
Symbol 14 MovieClip Frame 3
_parent.my_speed = 1.3; this.stop();
Symbol 14 MovieClip Frame 4
_parent.my_speed = 1.4;
Symbol 14 MovieClip Frame 15
this.stop();
Symbol 15 MovieClip [enemy] Frame 1
this.mc_g.gotoAndStop(_parent.randomInt(4)); this.stat = "run"; this.onEnterFrame = function () { if (_root.pause_flg) { return(undefined); } switch (this.stat) { case "run" : this._x = this._x - (_parent.scroll_speed * this.my_speed); if (this._x <= -20) { this.removeMovieClip(); } if (_root.game_flg) { if (this.hitTest(_parent.mc_gokkun)) { if (_root.at_cnt > 0) { _root.eatEnemy(); this.mc_g.gotoAndStop("eye"); this.stat = "death"; } else { _root.pause_flg = true; _root.pause_cnt = 60; _parent.mc_gokkun.entryMiss(); } } } break; case "death" : this._x = this._x + 6; if (this._x < 480) { break; } this.removeMovieClip(); } };
Symbol 19 MovieClip [gameover] Frame 15
this.onPress = function () { _root.init(); _root.gotoAndStop(1); _root.writeData(); this.removeMovieClip(); }; this.stop();
Symbol 36 MovieClip Frame 1
this.stop();
Symbol 37 MovieClip [fruits] Frame 1
this.onEnterFrame = function () { if (_root.pause_flg) { return(undefined); } this._x = this._x - _parent.scroll_speed; if (this._x <= -10) { this.removeMovieClip(); } if (_root.game_flg) { if (this.hitTest(_parent.mc_gokkun.mc_hit)) { _root.eatFruits(); this.removeMovieClip(); } } }; this.mc_g.gotoAndStop(_root.fruits_num); this.stop();
Symbol 40 MovieClip Frame 1
function entry() { this.stat = "fall"; } this.vy = 0; this.stat = "standby"; this.onEnterFrame = function () { if (this.stat == "fall") { this._y = this._y + this.vy; this.vy = this.vy + 0.4; } };
Symbol 41 MovieClip Frame 15
this.gotoAndPlay(1);
Symbol 41 MovieClip Frame 20
this.stop();
Symbol 44 MovieClip [gokkun] Frame 1
function moveLine(d) { if (d > 0) { switch (this.line_num) { case 2 : if ((!_parent.mc_wall1_1.hitTest(this._x, this._y - 10, true)) && (!_parent.mc_wall1_2.hitTest(this._x, this._y - 10, true))) { this.line_num = 1; } break; case 3 : if (!((!_parent.mc_wall2_1.hitTest(this._x, this._y - 10, true)) && (!_parent.mc_wall2_2.hitTest(this._x, this._y - 10, true)))) { break; } this.line_num = 2; } } else if (d < 0) { switch (this.line_num) { case 1 : if ((!_parent.mc_wall1_1.hitTest(this._x, this._y + 10, true)) && (!_parent.mc_wall1_2.hitTest(this._x, this._y + 10, true))) { this.line_num = 2; } break; case 2 : if (!((!_parent.mc_wall2_1.hitTest(this._x, this._y + 10, true)) && (!_parent.mc_wall2_2.hitTest(this._x, this._y + 10, true)))) { break; } this.line_num = 3; } } _root.now_line = this.line_num; } function main() { switch (this.stat) { case "run" : this._y = 10 + ((line_num - 1) * 20); break; case "miss" : if (this.death_cnt > 0) { this.mc_g["mc_" + this.death_cnt].entry(); if (this.death_cnt > 12) { _root.attachMovie("gameover", "mc_gameover", 100004); this.stat = "end"; } } this.death_cnt++; } } function entryMiss() { if (this.stat == "run") { _root.game_flg = false; this.stat = "miss"; this.mc_g.gotoAndStop("death"); } } this.stat = "run"; this.line_num = 1; this.death_cnt = 0; this.stop(); this.onEnterFrame = function () { if (_root.pause_flg && (this.stat != "miss")) { return(undefined); } this.main(); };
Symbol 55 MovieClip Frame 1
stop();
Symbol 56 MovieClip [wall] Frame 1
this.onEnterFrame = function () { if (_root.pause_flg) { return(undefined); } this._x = this._x - _parent.scroll_speed; if (this._x <= -480) { this._x = 480; this.mc_g.gotoAndStop(_parent.randomInt(10)); } };
Symbol 60 MovieClip Frame 1
function init() { i = _parent.randomInt(4); while (i < (13 - _parent.randomInt(4))) { var _local3 = "esa" + _parent.esa_set_cnt; _parent.attachMovie("esa", _local3, _parent.esa_set_cnt); _parent[_local3]._x = 120 + (30 * i); _parent[_local3]._y = ((this.line_num - 1) * 20) + 10; _parent.esa_set_cnt++; if (_parent.esa_set_cnt > 10000) { _parent.esa_set_cnt = 0; } i++; } } this.cnt = 0; this.line_width = 0; this.set_cnt = _parent.randomInt(10) + 4; this.set_pass_cnt = 0; this.set_cnt_total = 0; this.init(); this.stop(); this.onEnterFrame = function () { if (_root.pause_flg) { return(undefined); } if (this.cnt == 10) { if (set_pass_cnt == 0) { var _local4 = "esa" + _parent.esa_set_cnt; if (this.set_cnt_total == 16) { _parent.attachMovie("esa_power", _local4, _parent.esa_set_cnt); this.set_cnt_total = 0; } else if (_root.fruits_set_flg) { _root.fruits_set_flg = false; _root.esa_get_cnt = 0; _parent.attachMovie("fruits", _local4, _parent.esa_set_cnt); _root.fruits_num++; if (_root.fruits_num > 8) { _root.fruits_num = 1; } } else { this.set_cnt_total++; _parent.attachMovie("esa", _local4, _parent.esa_set_cnt); } _parent[_local4]._x = 480; _parent[_local4]._y = ((this.line_num - 1) * 20) + 10; _parent.esa_set_cnt++; this.set_cnt--; if (this.set_cnt == 0) { this.set_pass_cnt = _parent.randomInt(4) + 2; } } else { this.set_pass_cnt--; if (this.set_pass_cnt == 0) { this.set_cnt = _parent.randomInt(10) + 4; } } this.cnt = 0; } else { this.cnt++; } };
Symbol 62 MovieClip Frame 1
this.cnt = _root.randomInt(20) * 10; this.stop(); this.onEnterFrame = function () { if (_root.pause_flg) { return(undefined); } if (this.cnt == 0) { var _local4 = "enemy" + _parent.esa_set_cnt; _parent.attachMovie("enemy", _local4, _parent.esa_set_cnt); _parent[_local4]._x = 480; _parent[_local4]._y = ((this.line_num - 1) * 20) + 10; _parent.esa_set_cnt++; if (_parent.esa_set_cnt > 10000) { _parent.esa_set_cnt = 0; } this.cnt = 100 + (_parent.randomInt(10) * 10); } else { this.cnt--; } };
Symbol 67 MovieClip Frame 1
this.onPress = function () { _parent._visible = false; _root.gotoAndStop(2); };
Symbol 71 MovieClip Frame 1
this.swapDepths(100002);
Symbol 73 MovieClip Frame 1
this.swapDepths(100000);
Symbol 76 MovieClip Frame 1
this.swapDepths(100001);
Symbol 79 MovieClip Frame 1
function entry(nx, ny, n) { this.gs = n; this._x = nx; this._y = ny; this.gotoAndPlay(3); }
Symbol 79 MovieClip Frame 2
this.stop();
Symbol 79 MovieClip Frame 30
this._y = 300; this.stop();
Symbol 81 MovieClip Frame 1
this.onPress = function () { n = 0; if (_parent._ymouse < 20) { if (_root.now_line >= 2) { n = 1; } } else if (_parent._ymouse >= 40) { if (_root.now_line <= 2) { n = -1; } } else { if (_root.now_line == 1) { n = -1; } if (_root.now_line == 3) { n = 1; } } _root.mc_gokkun.moveLine(n); };

Library Items

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

Instance Names

"mc_wall1_1"Frame 1Symbol 56 MovieClip [wall]
"mc_wall2_1"Frame 1Symbol 56 MovieClip [wall]
"mc_wall1_2"Frame 1Symbol 56 MovieClip [wall]
"mc_wall2_2"Frame 1Symbol 56 MovieClip [wall]
"mc_title"Frame 1Symbol 71 MovieClip
"mc_gokkun"Frame 2Symbol 44 MovieClip [gokkun]
"mc_fader"Frame 2Symbol 73 MovieClip
"mc_gs"Frame 2Symbol 79 MovieClip
"mc_blue"Symbol 14 MovieClip Frame 1Symbol 9 MovieClip
"mc_g"Symbol 15 MovieClip [enemy] Frame 1Symbol 14 MovieClip
"mc_g"Symbol 37 MovieClip [fruits] Frame 1Symbol 36 MovieClip
"mc_9"Symbol 41 MovieClip Frame 20Symbol 40 MovieClip
"mc_10"Symbol 41 MovieClip Frame 20Symbol 40 MovieClip
"mc_11"Symbol 41 MovieClip Frame 20Symbol 40 MovieClip
"mc_12"Symbol 41 MovieClip Frame 20Symbol 40 MovieClip
"mc_7"Symbol 41 MovieClip Frame 20Symbol 40 MovieClip
"mc_8"Symbol 41 MovieClip Frame 20Symbol 40 MovieClip
"mc_5"Symbol 41 MovieClip Frame 20Symbol 40 MovieClip
"mc_6"Symbol 41 MovieClip Frame 20Symbol 40 MovieClip
"mc_1"Symbol 41 MovieClip Frame 20Symbol 40 MovieClip
"mc_2"Symbol 41 MovieClip Frame 20Symbol 40 MovieClip
"mc_3"Symbol 41 MovieClip Frame 20Symbol 40 MovieClip
"mc_4"Symbol 41 MovieClip Frame 20Symbol 40 MovieClip
"mc_g"Symbol 44 MovieClip [gokkun] Frame 1Symbol 41 MovieClip
"mc_hit"Symbol 44 MovieClip [gokkun] Frame 1Symbol 43 MovieClip
"mc_g"Symbol 56 MovieClip [wall] Frame 1Symbol 55 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 2 as "esa_power"
ExportAssets (56)Timeline Frame 1Symbol 4 as "esa"
ExportAssets (56)Timeline Frame 1Symbol 15 as "enemy"
ExportAssets (56)Timeline Frame 1Symbol 19 as "gameover"
ExportAssets (56)Timeline Frame 1Symbol 37 as "fruits"
ExportAssets (56)Timeline Frame 1Symbol 44 as "gokkun"
ExportAssets (56)Timeline Frame 1Symbol 56 as "wall"

Labels

"ten"Symbol 9 MovieClip Frame 10
"eye"Symbol 14 MovieClip Frame 15
"death"Symbol 41 MovieClip Frame 20

Dynamic Text Variables

_root.high_scoreSymbol 69 EditableText"9999999999"
_root.scoreSymbol 74 EditableText"0"
_root.high_scoreSymbol 75 EditableText"7650"
_parent.gsSymbol 77 EditableText"2333"




http://swfchan.com/1/1204/info.shtml
Created: 12/8 -2019 08:12:44 Last modified: 12/8 -2019 08:12:44 Server time: 20/04 -2024 05:05:12