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

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

knifethrow.swf

This is the info page for
Flash #12129

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


Text
s

e

m

a

G

h

l

F

k

c

i

u

Q

m

o

c

.

PLAY

PLAY

INSTRUCTIONS

INSTRUCTIONS

HIGH SCORES

HIGH SCORES

s

e

m

a

G

h

l

F

k

c

i

u

Q

m

o

c

.

your lovely assistant, Knancy
Knife, is in a precarious position
now! You can see, she's been tied
to a rotating wheel, which also has
4 target spots  placed in strategic
areas about her. Your objective
here is to hit these targets on the
wheel before you run out of
knives.  Closer you you hit Knancy
(but not her) more points you will
get.
Take care not to hit Knancy. She's
a real whiner and will surely let
you know if your aim is off. In
addition, you'll be penalized score
and her health (even her life)
whenever your dagger dents her.

Target Spot
(250)

20

50

70

100

INSTRUCTIONS

BACK

BACK

TARGET HEALTH

TARGET HEALTH

PLAY AGAIN

PLAY AGAIN

GAME
OVER

you killed her!!

0000000

SCORE:

0000000

SUBMIT SCORE

SUBMIT SCORE

Enter your name

CANCEL

CANCEL

WWWWWWWWWWWWWWW

123456789

123456789

12/12/2005 20:12

20.

No.

Player Name

Score

Health

Date

LOADING...

LOADING...

HIGH SCORES

GO BACK

GO BACK

GO BACK

ActionScript [AS1/AS2]

Frame 1
System.useCodepage = true;
Frame 4
tb = getBytesTotal(); lb = getBytesLoaded(); v = int((lb / tb) * 100); _root.preloader._xscale = v; if (lb < tb) { gotoAndPlay (2); } else { play(); }
Frame 262
url = _url; url = url.toLowerCase(); if ((url.indexOf("http://www.quickflashgames.com/") == 0) || (url.indexOf("http://quickflashgames.com/") == 0)) { play(); } else { play(); }
Frame 263
stop();
Frame 267
function hit() { if (gameOn == true) { } else { dagger_mc._x = dagger_mc.tx; dagger_mc._y = dagger_mc.ty; if (sound_is_on) { dum_sound.start(0, 1); } this["dagger_" + (20 - daggerno)].removeMovieClip(); if ((20 - daggerno) == 0) { this.dagger_0._visible = false; } if (daggerno == 20) { gameOver(); } daggerno++; factor = 1 + (daggerno * 0.1); myPoint = new Object(); myPoint.x = dagger_mc.tx; myPoint.y = dagger_mc.ty; she_mc.globalToLocal(myPoint); var _local1 = she_mc.singlehit_mc.duplicateMovieClip("singlehit_" + (daggerno - 1), daggerno - 1); _local1._visible = true; _local1._x = myPoint.x; _local1._y = myPoint.y; dagger_mc._visible = false; _local1._rotation = she_mc._rotation; _local1.blood._visible = false; if (she_mc.bonus_mc.hitTest(dagger_mc.tx, dagger_mc.ty, true)) { score = score + 250; addScore(250); } else if (she_mc.hershadow_mc.body.hitTest(dagger_mc.tx, dagger_mc.ty, true)) { health = 0; score = score + -250; addScore(-250); updateHealth(); _local1.blood._visible = true; she_mc.oh._visible = true; if (sound_is_on) { ouch_sound.start(0, 1); } } else if (she_mc.hershadow_mc.hitTest(dagger_mc.tx, dagger_mc.ty, true)) { score = score + -100; addScore(-100); health = health - 20; updateHealth(); _local1.blood._visible = true; she_mc.oh._visible = true; if (sound_is_on) { ouch_sound.start(0, 1); } } else if (she_mc.pt100.hitTest(dagger_mc.tx, dagger_mc.ty, true)) { score = score + 100; addScore(100); } else if (she_mc.pt70.hitTest(dagger_mc.tx, dagger_mc.ty, true)) { score = score + 70; addScore(70); } else if (she_mc.pt50.hitTest(dagger_mc.tx, dagger_mc.ty, true)) { score = score + 50; addScore(50); } else if (she_mc.pt20.hitTest(dagger_mc.tx, dagger_mc.ty, true)) { score = score + 20; addScore(20); } waiter.gotoAndPlay(2); } } function updateHealth() { if (health <= 0) { health = 0; if (sound_is_on) { die_sound.start(0, 1); } } health_mc._xscale = health; trace("health:" + health); if (health == 0) { gameOver(); } } function addScore(n) { var _local1 = n; if (_local1 > 0) { _local1 = "+" + _local1; } scoreup_mc.scoreup = _local1; scoreup_mc.play(); } function gameOver() { vgameOver = true; trace("end"); gameOn = false; he_mc._visible = false; factor = 1.5; gameover_mc._visible = true; gameover_mc.killed_mc._visible = false; if (health <= 0) { gameover_mc.killed_mc._visible = true; } } var score = 0; dagger_mc._visible = false; daggerno = 1; totaldaggers = 9; var vgameOver = false; daggerx = dagger_mc._x; daggery = dagger_mc._y; dagger_mc.going = false; gameover_mc._visible = false; gameover_mc.killed_mc._visible = false; var health = 100; var i = 0; while (i < 19) { if (i == 0) { dag = dagger_0; } else { dag = dagger_0.duplicateMovieClip("dagger_" + i, i); dag._y = dagger_0._y; dag._x = dagger_0._x + (i * 12); dag._visible = true; } i++; } var shex = she_mc._x; var shey = she_mc._y; var shesz = (she_mc._width / 2); var factor = (1 + (daggerno * 0.2)); var woosh_sound = new Sound(); woosh_sound.attachSound("throwknife"); var dum_sound = new Sound(); dum_sound.attachSound("throwknife2"); var ouch_sound = new Sound(); ouch_sound.attachSound("scream_x"); var die_sound = new Sound(); die_sound.attachSound("diescream"); this.onEnterFrame = function () { she_mc._rotation = she_mc._rotation + factor; if (she_mc._rotation > 360) { she_mc._rotation = she_mc._rotation - 360; } if (dagger_mc.going == true) { dagger_mc._x = dagger_mc._x + dagger_mc.dx; dagger_mc._y = dagger_mc._y + dagger_mc.dy; } }; this.onMouseDown = function () { if ((gameOn == false) || (vgameOver == true)) { } else { she_mc.oh._visible = false; var _local2; var _local1; _local2 = _xmouse; _local1 = _ymouse; var x1 = (_local2 - shex); var _local3 = _local1 - shey; x2 = x1 * x1; y2 = _local3 * _local3; var dist = Math.sqrt(x2 + y2); if (dist < shesz) { he_mc.play(); dagger_mc._visible = true; if (sound_is_on) { woosh_sound.start(0, 1); } dagger_mc._x = daggerx; dagger_mc._y = daggery; dagger_mc.play(); dagger_mc.dx = (_local2 - daggerx) / 14; dagger_mc.dy = (_local1 - daggery) / 14; dagger_mc.tx = _local2; dagger_mc.ty = _local1; dagger_mc.going = true; gameOn = false; } } }; gameOn = true; if (sound_is_on == undefined) { sound_is_on = true; soundcontroller.gotoAndStop(1); } stop();
Frame 268
var i = 1; while (i < 20) { this["dagger_" + i].removeMovieClip(); i++; } this.onEnterFrame = null; if (score > 0) { play(); } else { gotoAndStop ("title"); }
Frame 282
stop();
Frame 287
highscores_mc.LoadScores("player_name", "knifethrow", 12, 3, 0, 0, "", false); stop();
Frame 292
highscores_mc.LoadScores(myplayername, "knifethrow", score, health, 0, 0, "", true); stop();
Symbol 71 MovieClip Frame 1
stop();
Symbol 77 MovieClip Frame 1
stop();
Symbol 79 MovieClip Frame 1
singlehit_mc._visible = false; hershadow_mc._visible = false; oh._visible = false; pt100._visible = false; pt70._visible = false; pt50._visible = false; pt20._visible = false;
Symbol 86 Button
on (release) { gotoAndPlay ("game"); }
Symbol 89 Button
on (release) { gotoAndStop ("instructions"); }
Symbol 92 Button
on (release) { gotoAndPlay ("viewscores"); }
Symbol 112 Button
on (release) { getURL ("http://www.quickflashgames.com/", "_blank"); }
Symbol 124 Button
on (release) { gotoAndStop ("title"); }
Symbol 134 MovieClip Frame 15
going = false; _parent.hit(); stop();
Symbol 140 MovieClip Frame 31
stop();
Symbol 149 Button
on (release) { _parent.play(); }
Symbol 153 MovieClip Frame 1
killed_mc._visible = false;
Symbol 168 MovieClip Frame 1
stop();
Symbol 173 MovieClip Frame 2
stop();
Symbol 173 MovieClip Frame 55
gotoAndStop (2);
Symbol 174 MovieClip Frame 1
stop();
Symbol 174 MovieClip Frame 25
_parent.she_mc.bonus_mc.gotoAndStop(_parent.daggerno); _parent.gameOn = true; _parent.he_mc.gotoAndStop(1);
Symbol 178 MovieClip Frame 1
if (_parent.sound_is_on == true) { stop(); } else { gotoAndPlay (2); }
Symbol 180 Button
on (release) { sound_is_on = !sound_is_on; if (sound_is_on == true) { soundcontroller.gotoAndStop(1); } else { soundcontroller.gotoAndStop(2); } }
Symbol 189 Button
on (release) { txt_str = new String(myplayername); while (txt_str.charAt(0) == " ") { txt_str = txt_str.substring(1, txt_str.length); } while (txt_str.charAt(txt_str.length - 1) == " ") { txt_str = txt_str.substring(0, txt_str.length - 1); } if (txt_str.length > 0) { gotoAndPlay ("sendScores2"); } }
Symbol 194 Button
on (release) { gotoAndStop ("title"); }
Symbol 210 MovieClip Frame 2
function LoadScores(player_name, game_name, score1, score2, score3, score4, score_date, isUpdate) { sender_lv.game_name2 = game_name; sender_lv.isUpdate = isUpdate; sender_lv.player = player_name; sender_lv.email = ""; sender_lv.score1 = score1; sender_lv.score2 = score2; sender_lv.score3 = score3; sender_lv.score4 = score4; sender_lv.sendAndLoad("/scores.php", receiver_lv, "POST"); } var sender_lv = new LoadVars(); var receiver_lv = new LoadVars(); receiver_lv.barholder = this; var i = 0; while (i < 20) { if (i == 0) { bar = score_bar_mc_0; } else { bar = score_bar_mc_0.duplicateMovieClip("score_bar_mc_" + i, i); } bar._visible = true; bar._x = score_bar_mc_0._x; bar._y = score_bar_mc_0._y + (i * score_bar_mc_0._height); bar.txtNo.text = (i + 1) + "."; bar.txtName.text = "---"; bar.txtScore1.text = "---"; bar.txtScore2.text = "---"; bar.txtDate.text = "---"; i++; } receiver_lv.onLoad = function (success) { var _local2 = this; my_xml = new XML(_local2.xml); var _local1 = 0; while (_local1 < my_xml.firstChild.childNodes.length) { _local2.barholder["score_bar_mc_" + _local1].txtName.text = my_xml.firstChild.childNodes[_local1].attributes.player; _local2.barholder["score_bar_mc_" + _local1].txtScore1.text = my_xml.firstChild.childNodes[_local1].attributes.score1; _local2.barholder["score_bar_mc_" + _local1].txtScore2.text = my_xml.firstChild.childNodes[_local1].attributes.score2; _local2.barholder["score_bar_mc_" + _local1].txtDate.text = my_xml.firstChild.childNodes[_local1].attributes.datetime; _local1++; } _local2.barholder.nextFrame(); }; stop();
Symbol 210 MovieClip Frame 3
stop();
Symbol 216 Button
on (release) { gotoAndStop ("title"); }
Symbol 219 Button
on (release) { getURL ("http://www.quickflashgames.com/", "_blank"); }

Library Items

Symbol 5 GraphicUsed by:6
Symbol 6 MovieClipUses:5Used by:Timeline
Symbol 7 GraphicUsed by:Timeline
Symbol 1 Sound [throwknife2]
Symbol 2 Sound [throwknife]
Symbol 3 Sound [scream_x]
Symbol 4 Sound [diescream]
Symbol 8 GraphicUsed by:Timeline
Symbol 9 FontUsed by:10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
Symbol 10 TextUses:9Used by:112  Timeline
Symbol 11 TextUses:9Used by:112  Timeline
Symbol 12 TextUses:9Used by:112  Timeline
Symbol 13 TextUses:9Used by:112  Timeline
Symbol 14 TextUses:9Used by:112  Timeline
Symbol 15 TextUses:9Used by:112  Timeline
Symbol 16 TextUses:9Used by:112  Timeline
Symbol 17 TextUses:9Used by:112  Timeline
Symbol 18 TextUses:9Used by:112  Timeline
Symbol 19 TextUses:9Used by:112  Timeline
Symbol 20 TextUses:9Used by:112  Timeline
Symbol 21 TextUses:9Used by:112  Timeline
Symbol 22 TextUses:9Used by:112  Timeline
Symbol 23 TextUses:9Used by:112  Timeline
Symbol 24 TextUses:9Used by:112  Timeline
Symbol 25 TextUses:9Used by:112  Timeline
Symbol 26 TextUses:9Used by:112  Timeline
Symbol 27 BitmapUsed by:28
Symbol 28 GraphicUses:27Used by:29
Symbol 29 MovieClipUses:28Used by:Timeline
Symbol 30 GraphicUsed by:Timeline
Symbol 31 GraphicUsed by:Timeline
Symbol 32 GraphicUsed by:Timeline
Symbol 33 GraphicUsed by:Timeline
Symbol 34 GraphicUsed by:Timeline
Symbol 35 GraphicUsed by:Timeline
Symbol 36 GraphicUsed by:Timeline
Symbol 37 GraphicUsed by:Timeline
Symbol 38 GraphicUsed by:Timeline
Symbol 39 GraphicUsed by:Timeline
Symbol 40 GraphicUsed by:Timeline
Symbol 41 GraphicUsed by:Timeline
Symbol 42 GraphicUsed by:Timeline
Symbol 43 GraphicUsed by:Timeline
Symbol 44 GraphicUsed by:Timeline
Symbol 45 GraphicUsed by:Timeline
Symbol 46 GraphicUsed by:Timeline
Symbol 47 GraphicUsed by:Timeline
Symbol 48 GraphicUsed by:Timeline
Symbol 49 GraphicUsed by:Timeline
Symbol 50 GraphicUsed by:Timeline
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:Timeline
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:79
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:55Used by:79
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:79
Symbol 59 GraphicUsed by:79
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:79
Symbol 62 GraphicUsed by:65
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClipUses:63Used by:65
Symbol 65 MovieClipUses:62 64Used by:79
Symbol 66 BitmapUsed by:67
Symbol 67 GraphicUses:66Used by:79
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:71
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClipUses:69 70Used by:79
Symbol 72 BitmapUsed by:73
Symbol 73 GraphicUses:72Used by:74
Symbol 74 MovieClipUses:73Used by:79
Symbol 75 GraphicUsed by:76
Symbol 76 MovieClipUses:75Used by:77
Symbol 77 MovieClipUses:76Used by:79
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:54 56 58 59 61 65 67 71 74 77 78Used by:Timeline
Symbol 80 GraphicUsed by:Timeline
Symbol 81 FontUsed by:82 87 90 122 147
Symbol 82 TextUses:81Used by:86
Symbol 83 FontUsed by:84 88 91 123 148
Symbol 84 TextUses:83Used by:86
Symbol 85 GraphicUsed by:86 89 92 124 149
Symbol 86 ButtonUses:82 84 85Used by:Timeline
Symbol 87 TextUses:81Used by:89
Symbol 88 TextUses:83Used by:89
Symbol 89 ButtonUses:87 88 85Used by:Timeline
Symbol 90 TextUses:81Used by:92
Symbol 91 TextUses:83Used by:92
Symbol 92 ButtonUses:90 91 85Used by:Timeline
Symbol 93 GraphicUsed by:112
Symbol 94 TextUses:9Used by:112
Symbol 95 TextUses:9Used by:112
Symbol 96 TextUses:9Used by:112
Symbol 97 TextUses:9Used by:112
Symbol 98 TextUses:9Used by:112
Symbol 99 TextUses:9Used by:112
Symbol 100 TextUses:9Used by:112
Symbol 101 TextUses:9Used by:112
Symbol 102 TextUses:9Used by:112
Symbol 103 TextUses:9Used by:112
Symbol 104 TextUses:9Used by:112
Symbol 105 TextUses:9Used by:112
Symbol 106 TextUses:9Used by:112
Symbol 107 TextUses:9Used by:112
Symbol 108 TextUses:9Used by:112
Symbol 109 TextUses:9Used by:112
Symbol 110 TextUses:9Used by:112
Symbol 111 GraphicUsed by:112
Symbol 112 ButtonUses:93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 111Used by:Timeline
Symbol 113 GraphicUsed by:Timeline
Symbol 114 FontUsed by:115 116 117 118 119 120 121 169 170 172 190 197 198 199 200 201 203 204 205 206 207 208 209
Symbol 115 TextUses:114Used by:Timeline
Symbol 116 TextUses:114Used by:Timeline
Symbol 117 TextUses:114Used by:Timeline
Symbol 118 TextUses:114Used by:Timeline
Symbol 119 TextUses:114Used by:Timeline
Symbol 120 TextUses:114Used by:Timeline
Symbol 121 TextUses:114Used by:Timeline
Symbol 122 TextUses:81Used by:124
Symbol 123 TextUses:83Used by:124
Symbol 124 ButtonUses:122 123 85Used by:Timeline
Symbol 125 GraphicUsed by:134
Symbol 126 GraphicUsed by:134
Symbol 127 GraphicUsed by:134
Symbol 128 GraphicUsed by:134
Symbol 129 GraphicUsed by:134
Symbol 130 GraphicUsed by:134
Symbol 131 GraphicUsed by:134
Symbol 132 GraphicUsed by:134
Symbol 133 GraphicUsed by:134
Symbol 134 MovieClipUses:125 126 127 128 129 130 131 132 133Used by:Timeline
Symbol 135 GraphicUsed by:140
Symbol 136 GraphicUsed by:137
Symbol 137 MovieClipUses:136Used by:138
Symbol 138 MovieClipUses:137Used by:139
Symbol 139 MovieClipUses:138Used by:140
Symbol 140 MovieClipUses:135 139Used by:168  Timeline
Symbol 141 GraphicUsed by:Timeline
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClipUses:142Used by:Timeline
Symbol 144 FontUsed by:145 146 150 151
Symbol 145 TextUses:144Used by:Timeline
Symbol 146 TextUses:144Used by:Timeline
Symbol 147 TextUses:81Used by:149
Symbol 148 TextUses:83Used by:149
Symbol 149 ButtonUses:147 148 85Used by:153
Symbol 150 TextUses:144Used by:153
Symbol 151 TextUses:144Used by:152
Symbol 152 MovieClipUses:151Used by:153
Symbol 153 MovieClipUses:149 150 152Used by:Timeline
Symbol 154 BitmapUsed by:155
Symbol 155 GraphicUses:154Used by:168
Symbol 156 BitmapUsed by:157
Symbol 157 GraphicUses:156Used by:168
Symbol 158 BitmapUsed by:159
Symbol 159 GraphicUses:158Used by:168
Symbol 160 BitmapUsed by:161
Symbol 161 GraphicUses:160Used by:168
Symbol 162 BitmapUsed by:163
Symbol 163 GraphicUses:162Used by:168
Symbol 164 BitmapUsed by:165
Symbol 165 GraphicUses:164Used by:168
Symbol 166 BitmapUsed by:167
Symbol 167 GraphicUses:166Used by:168
Symbol 168 MovieClipUses:140 155 157 159 161 163 165 167Used by:Timeline
Symbol 169 EditableTextUses:114Used by:Timeline
Symbol 170 TextUses:114Used by:Timeline
Symbol 171 GraphicUsed by:173 174
Symbol 172 EditableTextUses:114Used by:173
Symbol 173 MovieClipUses:171 172Used by:Timeline
Symbol 174 MovieClipUses:171Used by:Timeline
Symbol 175 GraphicUsed by:178
Symbol 176 GraphicUsed by:178
Symbol 177 GraphicUsed by:178
Symbol 178 MovieClipUses:175 176 177Used by:Timeline
Symbol 179 GraphicUsed by:180
Symbol 180 ButtonUses:179Used by:Timeline
Symbol 181 BitmapUsed by:182
Symbol 182 GraphicUses:181Used by:Timeline
Symbol 183 GraphicUsed by:Timeline
Symbol 184 FontUsed by:185 186 187 191 192 211 212 213 214
Symbol 185 EditableTextUses:184Used by:Timeline
Symbol 186 TextUses:184Used by:189
Symbol 187 TextUses:184Used by:189
Symbol 188 GraphicUsed by:189
Symbol 189 ButtonUses:186 187 188Used by:Timeline
Symbol 190 TextUses:114Used by:Timeline
Symbol 191 TextUses:184Used by:194
Symbol 192 TextUses:184Used by:194
Symbol 193 GraphicUsed by:194
Symbol 194 ButtonUses:191 192 193Used by:Timeline
Symbol 195 GraphicUsed by:210
Symbol 196 GraphicUsed by:202
Symbol 197 EditableTextUses:114Used by:202
Symbol 198 EditableTextUses:114Used by:202
Symbol 199 EditableTextUses:114Used by:202
Symbol 200 EditableTextUses:114Used by:202
Symbol 201 EditableTextUses:114Used by:202
Symbol 202 MovieClipUses:196 197 198 199 200 201Used by:210
Symbol 203 TextUses:114Used by:210
Symbol 204 TextUses:114Used by:210
Symbol 205 TextUses:114Used by:210
Symbol 206 TextUses:114Used by:210
Symbol 207 TextUses:114Used by:210
Symbol 208 TextUses:114Used by:210
Symbol 209 TextUses:114Used by:210
Symbol 210 MovieClipUses:195 202 203 204 205 206 207 208 209Used by:Timeline
Symbol 211 TextUses:184Used by:Timeline
Symbol 212 TextUses:184Used by:216
Symbol 213 TextUses:184Used by:216
Symbol 214 TextUses:184Used by:216
Symbol 215 GraphicUsed by:216
Symbol 216 ButtonUses:212 213 214 215Used by:Timeline
Symbol 217 GraphicUsed by:219
Symbol 218 GraphicUsed by:219
Symbol 219 ButtonUses:217 218Used by:Timeline
Streaming Sound 1Used by:Timeline

Instance Names

"preloader"Frame 1Symbol 6 MovieClip
"she_mc"Frame 263Symbol 79 MovieClip
"dagger_mc"Frame 267Symbol 134 MovieClip
"dagger_0"Frame 267Symbol 140 MovieClip
"health_mc"Frame 267Symbol 143 MovieClip
"gameover_mc"Frame 267Symbol 153 MovieClip
"he_mc"Frame 267Symbol 168 MovieClip
"scoreup_mc"Frame 267Symbol 173 MovieClip
"waiter"Frame 267Symbol 174 MovieClip
"soundcontroller"Frame 267Symbol 178 MovieClip
"highscores_mc"Frame 285Symbol 210 MovieClip
"body"Symbol 65 MovieClip Frame 1Symbol 64 MovieClip
"blood"Symbol 71 MovieClip Frame 1Symbol 69 MovieClip
"pt20"Symbol 79 MovieClip Frame 1Symbol 54 MovieClip
"pt50"Symbol 79 MovieClip Frame 1Symbol 56 MovieClip
"pt70"Symbol 79 MovieClip Frame 1Symbol 58 MovieClip
"pt100"Symbol 79 MovieClip Frame 1Symbol 61 MovieClip
"hershadow_mc"Symbol 79 MovieClip Frame 1Symbol 65 MovieClip
"singlehit_mc"Symbol 79 MovieClip Frame 1Symbol 71 MovieClip
"oh"Symbol 79 MovieClip Frame 1Symbol 74 MovieClip
"bonus_mc"Symbol 79 MovieClip Frame 1Symbol 77 MovieClip
"killed_mc"Symbol 153 MovieClip Frame 1Symbol 152 MovieClip
"txtName"Symbol 202 MovieClip Frame 1Symbol 197 EditableText
"txtScore1"Symbol 202 MovieClip Frame 1Symbol 198 EditableText
"txtScore2"Symbol 202 MovieClip Frame 1Symbol 199 EditableText
"txtDate"Symbol 202 MovieClip Frame 1Symbol 200 EditableText
"txtNo"Symbol 202 MovieClip Frame 1Symbol 201 EditableText
"score_bar_mc_0"Symbol 210 MovieClip Frame 1Symbol 202 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "throwknife2"
ExportAssets (56)Timeline Frame 1Symbol 2 as "throwknife"
ExportAssets (56)Timeline Frame 1Symbol 3 as "scream_x"
ExportAssets (56)Timeline Frame 1Symbol 4 as "diescream"

Labels

"title"Frame 263
"instructions"Frame 264
"game"Frame 265
"sendScores"Frame 282
"viewscores"Frame 286
"sendScores2"Frame 291

Dynamic Text Variables

scoreSymbol 169 EditableText"0000000"
scoreupSymbol 172 EditableText"0000000"
myplayernameSymbol 185 EditableText""




http://swfchan.com/3/12129/info.shtml
Created: 6/6 -2019 09:56:13 Last modified: 6/6 -2019 09:56:13 Server time: 08/05 -2024 09:10:56