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

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

Flash Game (beta) by Aro3D.swf

This is the info page for
Flash #164300

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


Text
ARO

Play

Hi, I'm Kirra. Ready to play tag
with me?

The rules are very simple: you
have to hit me (mouse click)
enough times before time runs
out, while I'm running all over
the field trying to dodge your
hits. The progress bars indicate
how much time or hits you have
left.

Let's give it a try now. You have
30 seconds to hit me 10 times.

Great! You know the rules now.

Oh, and I almost forgot: I'll be
taking off my clothes each time
you win. So... Shall we begin?

Not that easy as you thought,
huh? Let's see how far you can
go!

Come on, show me what you can
do!

Waw, you're getting closer and
closer. Looks like I need to hasten
my pace a bit.

Nice! I hope you aren't tired yet,
for I'm not going to give up!

Oups, I've got nothing left...
Still, you'll have to win one more
time!

Haha, you thought the game was
over by now? Not yet, not yet... I
just love cheating! Let's play
some more, you don't mind?

Nah, you aren't as good as I
thought. And I'm not even
running at full pace!

But you're free to challenge me
again. How about another
game? You think you can beat
me?..

Ready

Set

GO

Victory

Defeat

Congratulations! You have
beaten Kirra. Now, let's celebrate
your victory!

Hey wait, we didn't agree about
this! And what is he doing
here?..

1

2

3

4

5

ActionScript [AS1/AS2]

Frame 1
_global.frameRate = 12; _global.fieldSize = 500; _global.siteLink = "http://aro3d.deviantart.com/"; _global.cheaterFrame = 4; _root.gotoAndPlay(4);
Frame 3
_root.gotoAndPlay(_global.cheaterFrame);
Frame 5
_root.stop(); _global.chatRoomFrame = 1; blackScreen._alpha = 0; playON = false; start_btn.onPress = function () { playON = true; }; AroButton.onPress = function () { getURL (_global.siteLink, "_blank"); }; blackScreen.onEnterFrame = function () { if (playON) { this._alpha = this._alpha + (100 / _global.frameRate); } if (this._alpha > 99) { _root.gotoAndStop(10); } };
Frame 7
_root.gotoAndPlay(_global.cheaterFrame);
Frame 8
_root.gotoAndPlay(_global.cheaterFrame);
Frame 10
chatRoom.gotoAndStop(_global.chatRoomFrame); blackScreen._alpha = 100; startON = false; blackScreen.onEnterFrame = function () { if ((this._alpha > 1) && (!startON)) { this._alpha = this._alpha - (100 / _global.frameRate); } if (startON) { this._alpha = this._alpha + (100 / _global.frameRate); } if (startON && (this._alpha > 99)) { _root.gotoAndStop(15); } }; chatRoom.arw_lvl.onPress = function () { startON = true; };
Frame 12
_root.gotoAndPlay(_global.cheaterFrame);
Frame 13
_root.gotoAndPlay(_global.cheaterFrame);
Frame 15
function step(randomValue) { var _local1; if (randomValue > upLimit) { _local1 = 1; } else if (randomValue < lowLimit) { _local1 = -1; } else { _local1 = 0; } return(_local1); } messages.gotoAndStop(1); switch (_global.chatRoomFrame) { case 1 : levelTime = 30; hitsTarget = 10; char.Speed = 5; char.cycleLength = 0.5 * _global.frameRate; break; case 2 : levelTime = 30; hitsTarget = 20; char.Speed = 5; char.cycleLength = 0.5 * _global.frameRate; break; case 3 : levelTime = 25; hitsTarget = 20; char.Speed = 7; char.cycleLength = 0.4 * _global.frameRate; break; case 4 : levelTime = 25; hitsTarget = 20; char.Speed = 7; char.cycleLength = 0.4 * _global.frameRate; break; case 5 : levelTime = 20; hitsTarget = 20; char.Speed = 9; char.cycleLength = 0.3 * _global.frameRate; break; case 6 : levelTime = 20; hitsTarget = 20; char.Speed = 9; char.cycleLength = 0.3 * _global.frameRate; break; case 7 : levelTime = 15; hitsTarget = 20; char.Speed = 11; char.cycleLength = 0.3 * _global.frameRate; break; case 8 : levelTime = 15; hitsTarget = 20; char.Speed = 11; char.cycleLength = 0.3 * _global.frameRate; break; default : levelTime = 15; hitsTarget = 20; char.Speed = 11; char.cycleLength = 0.3 * _global.frameRate; } char._xscale = (char._yscale = 100); char.cycleCounter = char.cycleLength; char.xSpeed = (char.ySpeed = 0); char.LastKey = 8; char._x = 237; char._y = 265; char.borderGap = 10; char.lGap = char.borderGap; char.rGap = char.borderGap + char._width; char.dGap = char.borderGap; char.uGap = (char.borderGap + char._height) + 40; timerCounter = 0; timerValue = (timerStartValue = levelTime); timerBox.text = timerValue; levelHitsTarget = hitsTarget; char.hitCount = 0; _global.gameON = false; timeBarLength = 150; hitsBarLength = 150; timeBar._width = timeBarLength; timeBarShadow._width = timeBarLength; hitsBar._width = 0; hitsBarShadow._width = hitsBarLength; upLimit = 0.55; lowLimit = 0.45; char.onMouseDown = function () { if (this.hitTest(_xmouse, _ymouse, true) && (_global.gameON)) { this.hitCount = this.hitCount + 1; hitsBar._width = hitsBar._width + (hitsBarLength / levelHitsTarget); if (this.hitCount == hitsTarget) { _global.gameON = false; messages.gotoAndStop(7); } } }; char.onEnterFrame = function () { if (_global.gameON == false) { this.gotoAndStop(this.LastKey); } else if (this.xSpeed > 0) { this.gotoAndStop("right"); } else if (this.xSpeed < 0) { this.gotoAndStop("left"); } else if (this.ySpeed > 0) { this.gotoAndStop("down"); } else if (this.ySpeed < 0) { this.gotoAndStop("up"); } if ((this.xSpeed == 0) && (this.ySpeed == 0)) { this.gotoAndStop(this.LastKey); } if (_global.gameON) { timeBar._width = timeBar._width - ((timeBarLength / levelTime) / frameRate); if (timerCounter == frameRate) { timerCounter = 0; if (timerValue > 0) { timerValue = timerValue - 1; } else { _global.gameON = false; messages.gotoAndStop(10); } } if (this.cycleCounter >= this.cycleLength) { this.xSpeed = this.Speed * step(Math.random()); this.ySpeed = this.Speed * step(Math.random()); this.cycleCounter = 0; } this.cycleCounter = this.cycleCounter + 1; timerCounter = timerCounter + 1; if ((this.xSpeed < 0) && (this._x > (0 + this.lGap))) { this._x = this._x + this.xSpeed; } if ((this.xSpeed > 0) && (this._x < (fieldSize - this.rGap))) { this._x = this._x + this.xSpeed; } if ((this.ySpeed < 0) && (this._y > (0 + this.uGap))) { this._y = this._y + this.ySpeed; } if ((this.ySpeed > 0) && (this._y < (fieldSize - this.dGap))) { this._y = this._y + this.ySpeed; } } };
Frame 17
_root.gotoAndPlay(_global.cheaterFrame);
Frame 18
_root.gotoAndPlay(_global.cheaterFrame);
Frame 20
blackScreen._alpha = 100; nextON = false; _global.dungeonFrame = 1; blackScreen.onEnterFrame = function () { if ((this._alpha > 1) && (!nextON)) { this._alpha = this._alpha - (100 / _global.frameRate); } if (nextON) { this._alpha = this._alpha + (100 / _global.frameRate); } if (nextON && (this._alpha > 99)) { _root.gotoAndStop(25); } }; next_btn.onPress = function () { nextON = true; };
Frame 22
_root.gotoAndPlay(_global.cheaterFrame);
Frame 24
_root.gotoAndStop(25);
Frame 25
dungeonRoom.gotoAndStop(_global.dungeonFrame); blackScreen._alpha = 100; switchON = false; blackScreen.onEnterFrame = function () { if ((this._alpha > 1) && (!switchON)) { this._alpha = this._alpha - (100 / _global.frameRate); } if (switchON) { this._alpha = this._alpha + (100 / _global.frameRate); } if (switchON && (this._alpha > 99)) { _root.gotoAndStop(24); } }; btn_1.onPress = function () { _global.dungeonFrame = 3; switchON = true; }; btn_2.onPress = function () { _global.dungeonFrame = 5; switchON = true; }; btn_3.onPress = function () { _global.dungeonFrame = 7; switchON = true; }; btn_4.onPress = function () { _global.dungeonFrame = 9; switchON = true; }; btn_5.onPress = function () { _global.dungeonFrame = 11; switchON = true; }; AroButton.onPress = function () { getURL (_global.siteLink, "_blank"); };
Frame 26
_root.gotoAndPlay(_global.cheaterFrame);
Symbol 85 MovieClip Frame 1
stop();
Symbol 85 MovieClip Frame 9
_root.gotoAndStop(20);
Symbol 85 MovieClip Frame 10
stop(); if (_global.lostLevel == 1) { _global.chatRoomFrame = 1; } else if (_global.lostLevel > 1) { _global.chatRoomFrame = 2; } else { _global.chatRoomFrame = 1; }
Symbol 108 MovieClip Frame 1
blackScreen._alpha = 100; blackScreen.onEnterFrame = function () { this._alpha = this._alpha - (100 / _global.frameRate); if (this._alpha < 1) { play(); } };
Symbol 108 MovieClip Frame 2
stop(); readyText._alpha = 100; readyText.onEnterFrame = function () { this._alpha = this._alpha - (100 / _global.frameRate); if (this._alpha < 1) { play(); } };
Symbol 108 MovieClip Frame 3
stop(); setText._alpha = 100; setText.onEnterFrame = function () { this._alpha = this._alpha - (100 / _global.frameRate); if (this._alpha < 1) { play(); } };
Symbol 108 MovieClip Frame 4
stop(); goText._alpha = 100; goText.onEnterFrame = function () { this._alpha = this._alpha - (100 / _global.frameRate); if (this._alpha < 1) { _global.gameON = true; play(); } };
Symbol 108 MovieClip Frame 5
stop();
Symbol 108 MovieClip Frame 7
stop(); blackScreen._alpha = 0; blackScreen.counter = 0; blackScreen.onEnterFrame = function () { if (this.counter > 2) { this._alpha = this._alpha + (100 / _global.frameRate); } if (this._alpha > 99) { _global.chatRoomFrame = _global.chatRoomFrame + 1; _root.gotoAndStop(10); } this.counter = this.counter + (1 / _global.frameRate); };
Symbol 108 MovieClip Frame 8
stop();
Symbol 108 MovieClip Frame 10
stop(); blackScreen._alpha = 0; blackScreen.counter = 0; blackScreen.onEnterFrame = function () { if (this.counter > 2) { this._alpha = this._alpha + (100 / _global.frameRate); } if (this._alpha > 99) { _global.lostLevel = _global.chatRoomFrame; _global.chatRoomFrame = 10; _root.gotoAndStop(10); } this.counter = this.counter + (1 / _global.frameRate); };
Symbol 125 MovieClip Frame 1
stop();

Library Items

Symbol 1 BitmapUsed by:2
Symbol 2 GraphicUses:1Used by:7
Symbol 3 BitmapUsed by:4
Symbol 4 GraphicUses:3Used by:7 29
Symbol 5 BitmapUsed by:6
Symbol 6 GraphicUses:5Used by:7
Symbol 7 MovieClipUses:2 4 6Used by:29
Symbol 8 BitmapUsed by:9
Symbol 9 GraphicUses:8Used by:14
Symbol 10 BitmapUsed by:11
Symbol 11 GraphicUses:10Used by:14 29
Symbol 12 BitmapUsed by:13
Symbol 13 GraphicUses:12Used by:14
Symbol 14 MovieClipUses:9 11 13Used by:29
Symbol 15 BitmapUsed by:16
Symbol 16 GraphicUses:15Used by:21
Symbol 17 BitmapUsed by:18
Symbol 18 GraphicUses:17Used by:21 29
Symbol 19 BitmapUsed by:20
Symbol 20 GraphicUses:19Used by:21
Symbol 21 MovieClipUses:16 18 20Used by:29
Symbol 22 BitmapUsed by:23
Symbol 23 GraphicUses:22Used by:28
Symbol 24 BitmapUsed by:25
Symbol 25 GraphicUses:24Used by:28 29
Symbol 26 BitmapUsed by:27
Symbol 27 GraphicUses:26Used by:28
Symbol 28 MovieClipUses:23 25 27Used by:29
Symbol 29 MovieClip [MainCharacter]Uses:7 14 21 28 4 11 18 25Used by:Timeline
Symbol 30 BitmapUsed by:31 110 113
Symbol 31 GraphicUses:30Used by:Timeline
Symbol 32 FontUsed by:33
Symbol 33 TextUses:32Used by:36
Symbol 34 GraphicUsed by:35 36
Symbol 35 MovieClipUses:34Used by:36 108  Timeline
Symbol 36 ButtonUses:33 35 34Used by:Timeline
Symbol 37 FontUsed by:38 47 48 49 59 60 63 66 69 72 75 80 83 84 100 102 104 106 107 111 114 126 128 130 132 134
Symbol 38 TextUses:37Used by:40
Symbol 39 GraphicUsed by:40 52 127 129 131 133 135
Symbol 40 ButtonUses:38 39Used by:Timeline
Symbol 41 BitmapUsed by:42
Symbol 42 GraphicUses:41Used by:85
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClipUses:43Used by:85
Symbol 45 GraphicUsed by:46
Symbol 46 MovieClipUses:45Used by:85
Symbol 47 TextUses:37Used by:85
Symbol 48 TextUses:37Used by:85
Symbol 49 TextUses:37Used by:85
Symbol 50 BitmapUsed by:51
Symbol 51 GraphicUses:50Used by:52
Symbol 52 ButtonUses:51 39Used by:85  Timeline
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:85
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:55Used by:85
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:85 125  Timeline
Symbol 59 TextUses:37Used by:85
Symbol 60 TextUses:37Used by:85
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:85
Symbol 63 TextUses:37Used by:85
Symbol 64 BitmapUsed by:65
Symbol 65 GraphicUses:64Used by:85
Symbol 66 TextUses:37Used by:85
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:85
Symbol 69 TextUses:37Used by:85
Symbol 70 BitmapUsed by:71
Symbol 71 GraphicUses:70Used by:85
Symbol 72 TextUses:37Used by:85
Symbol 73 BitmapUsed by:74
Symbol 74 GraphicUses:73Used by:85
Symbol 75 TextUses:37Used by:85
Symbol 76 BitmapUsed by:77
Symbol 77 GraphicUses:76Used by:85
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:85
Symbol 80 TextUses:37Used by:85
Symbol 81 BitmapUsed by:82
Symbol 82 GraphicUses:81Used by:85
Symbol 83 TextUses:37Used by:85
Symbol 84 TextUses:37Used by:85
Symbol 85 MovieClipUses:42 44 46 47 48 49 52 54 56 58 59 60 62 63 65 66 68 69 71 72 74 75 77 79 80 82 83 84Used by:Timeline
Symbol 86 BitmapUsed by:87
Symbol 87 GraphicUses:86Used by:Timeline
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:Timeline
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:Timeline
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:Timeline
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:Timeline
Symbol 96 BitmapUsed by:97
Symbol 97 GraphicUses:96Used by:Timeline
Symbol 98 BitmapUsed by:99
Symbol 99 GraphicUses:98Used by:Timeline
Symbol 100 TextUses:37Used by:101
Symbol 101 MovieClipUses:100Used by:108
Symbol 102 TextUses:37Used by:103
Symbol 103 MovieClipUses:102Used by:108
Symbol 104 TextUses:37Used by:105
Symbol 105 MovieClipUses:104Used by:108
Symbol 106 TextUses:37Used by:108
Symbol 107 TextUses:37Used by:108
Symbol 108 MovieClipUses:35 101 103 105 106 107Used by:Timeline
Symbol 109 BitmapUsed by:110
Symbol 110 GraphicUses:109 30Used by:Timeline
Symbol 111 TextUses:37Used by:Timeline
Symbol 112 BitmapUsed by:113
Symbol 113 GraphicUses:112 30Used by:125
Symbol 114 TextUses:37Used by:125
Symbol 115 BitmapUsed by:116
Symbol 116 GraphicUses:115Used by:125
Symbol 117 BitmapUsed by:118
Symbol 118 GraphicUses:117Used by:125
Symbol 119 BitmapUsed by:120
Symbol 120 GraphicUses:119Used by:125
Symbol 121 BitmapUsed by:122
Symbol 122 GraphicUses:121Used by:125
Symbol 123 BitmapUsed by:124
Symbol 124 GraphicUses:123Used by:125
Symbol 125 MovieClipUses:113 58 114 116 118 120 122 124Used by:Timeline
Symbol 126 TextUses:37Used by:127
Symbol 127 ButtonUses:126 39Used by:Timeline
Symbol 128 TextUses:37Used by:129
Symbol 129 ButtonUses:128 39Used by:Timeline
Symbol 130 TextUses:37Used by:131
Symbol 131 ButtonUses:130 39Used by:Timeline
Symbol 132 TextUses:37Used by:133
Symbol 133 ButtonUses:132 39Used by:Timeline
Symbol 134 TextUses:37Used by:135
Symbol 135 ButtonUses:134 39Used by:Timeline

Instance Names

"AroButton"Frame 5Symbol 36 Button
"start_btn"Frame 5Symbol 40 Button
"blackScreen"Frame 5Symbol 35 MovieClip
"chatRoom"Frame 10Symbol 85 MovieClip
"blackScreen"Frame 10Symbol 35 MovieClip
"timeBarShadow"Frame 15Symbol 89 MovieClip
"hitsBarShadow"Frame 15Symbol 91 MovieClip
"char"Frame 15Symbol 29 MovieClip [MainCharacter]
"timeBar"Frame 15Symbol 93 MovieClip
"hitsBar"Frame 15Symbol 95 MovieClip
"messages"Frame 15Symbol 108 MovieClip
"next_btn"Frame 20Symbol 52 Button
"blackScreen"Frame 20Symbol 35 MovieClip
"dungeonRoom"Frame 25Symbol 125 MovieClip
"AroButton"Frame 25Symbol 36 Button
"btn_1"Frame 25Symbol 127 Button
"btn_2"Frame 25Symbol 129 Button
"btn_3"Frame 25Symbol 131 Button
"btn_4"Frame 25Symbol 133 Button
"btn_5"Frame 25Symbol 135 Button
"blackScreen"Frame 25Symbol 35 MovieClip
"walk"Symbol 29 MovieClip [MainCharacter] Frame 4Symbol 28 MovieClip
"arw_lvl"Symbol 85 MovieClip Frame 1Symbol 52 Button
"blackScreen"Symbol 108 MovieClip Frame 1Symbol 35 MovieClip
"readyText"Symbol 108 MovieClip Frame 2Symbol 101 MovieClip
"setText"Symbol 108 MovieClip Frame 3Symbol 103 MovieClip
"goText"Symbol 108 MovieClip Frame 4Symbol 105 MovieClip
"blackScreen"Symbol 108 MovieClip Frame 7Symbol 35 MovieClip
"blackScreen"Symbol 108 MovieClip Frame 10Symbol 35 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 29 as "MainCharacter"
ExportAssets (56)Timeline Frame 15Symbol 29 as "MainCharacter"

Labels

"stand"Symbol 7 MovieClip Frame 3
"stand"Symbol 28 MovieClip Frame 3
"right"Symbol 29 MovieClip [MainCharacter] Frame 1
"up"Symbol 29 MovieClip [MainCharacter] Frame 2
"left"Symbol 29 MovieClip [MainCharacter] Frame 3
"down"Symbol 29 MovieClip [MainCharacter] Frame 4
"stand_right"Symbol 29 MovieClip [MainCharacter] Frame 5




http://swfchan.com/33/164300/info.shtml
Created: 19/10 -2018 07:36:26 Last modified: 19/10 -2018 07:36:26 Server time: 02/05 -2024 04:51:42