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

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

City_Jumper.swf

This is the info page for
Flash #18326

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


Text
20

Ghirardelli

Level:

Men:

Jump [Space bar]

Instructions:  Jump over obstacles.

Left Arrow: small jump

Right Arrow: big jump

key controls:

<P ALIGN="CENTER"><FONT FACE="Arial" SIZE="18" COLOR="#FFFFFF">by</FONT></P><P ALIGN="CENTER"><FONT FACE="Arial" SIZE="18" COLOR="#FFFFFF">Eric LaBadie</FONT></P><P ALIGN="CENTER"><FONT FACE="Arial" SIZE="18" COLOR="#FFFFFF"><A HREF="http://www.nationlocation.com">www.NationLocation.com</A></FONT></P>

CITY JUMPER

CITY JUMPER

play!

Loading...

Bonus
+5 Men!

TIP: Catch seagull
for +5 bonus men!

Up Arrow key  to continue...

Congratulations!

You finished all Levels!

CITY JUMPER

<P ALIGN="CENTER"><FONT FACE="Impact" SIZE="31" COLOR="#FFFFFF">by</FONT></P><P ALIGN="CENTER"><FONT FACE="Impact" SIZE="31" COLOR="#FFFFFF">Eric LaBadie</FONT></P><P ALIGN="CENTER"><FONT FACE="Impact" SIZE="31" COLOR="#FFFFFF"><A HREF="http://www.nationlocation.com">www.NationLocation.com</A></FONT></P>

Enter score

Enter score

Enter score

Enter score

Game Over

You reached Level:

CITY JUMPER

<P ALIGN="CENTER"><FONT FACE="Impact" SIZE="20" COLOR="#FFFFFF">by</FONT></P><P ALIGN="CENTER"><FONT FACE="Impact" SIZE="20" COLOR="#FFFFFF">Eric LaBadie</FONT></P><P ALIGN="CENTER"><FONT FACE="Impact" SIZE="20" COLOR="#FFFFFF"><A HREF="http://www.nationlocation.com">www.NationLocation.com</A></FONT></P>

Enter your name for the High Score...

NAME:

SUBMIT

SUBMIT

SUBMIT

SUBMIT

Leader Board

Name

11
12
13
14
15
16
17
18
19
20

Level

<P ALIGN="LEFT"><FONT FACE="Impact" SIZE="31" COLOR="#000000"><A HREF="http://www.nationlocation.com/cityJumper.htm">Play <SBR/>Again!</A></FONT></P>

Loading
High Scores

Loading
High Scores

Loading
High Scores

refresh scoreboard

refresh scoreboard

refresh scoreboard

refresh scoreboard

No more free men

ActionScript [AS1/AS2]

Frame 1
function Initialize() { _root.loadinginfo._visible = false; firsttime++; if (firsttime == 1) { scoretable.filename = "scores/demo.sco"; scoretable.scoresize = 20; scoretable.viewtype = "FLASH"; scoretable.loadVariables("http://www.nationlocation.com/cgi-bin/scores.php", "GET"); } if (firsttime == 80) { _root.scoreload._visible = false; } _root.crash1.stop(); _root.crash2.stop(); _root.crash3.stop(); _root.bum.stop(); _root.victorysplash.stop(); _root.men10.stop(); _root.men10._visible = false; initial = 0; done = false; RX = 19; crashed = false; bumLive = false; spin = false; men = 10; runcount = 24; RY = 152; bumcrash = false; Speed = 5; crashcount = 0; keyjump = 0; once = 0; bigjump = 0; _root.smalldown = 0; _root.bigdown = 0; sendScale = 100; lvlfinished = false; one = 30; rot = 0; wait = true; level = 1; pause = 15; gullLive = false; gulltime = 0; insideLevel = 1; publishedLevel = 1; _root.Rman._visible = true; gullwait = false; hornSound = new Sound(); hornSound.attachSound("beachHorn"); hornSound.setVolume(50); runningSound = new Sound(); runningSound.attachSound("runman"); runningSound.setVolume(70); ouchSound = new Sound(); ouchSound.attachSound("ouchman"); ouchSound.setVolume(70); clapSound = new Sound(); clapSound.attachSound("clapman"); clapSound.setVolume(70); SeagullSound = new Sound(); SeagullSound.attachSound("Sgull"); SeagullSound.setVolume(70); cashSound = new Sound(); cashSound.attachSound("cashregister"); cashSound.setVolume(70); cableSound = new Sound(); cableSound.attachSound("tram"); cableSound.setVolume(70); changeSound = new Sound(); changeSound.attachSound("spare"); changeSound.setVolume(70); } function Running() { if (((speed == 5) and (smalldown == 0)) and (bigdown == 0)) { runcount++; if (25 < runcount) { runcount = 0; runningsound.start(); } } if (wait == true) { speed = 0; } pause = pause - 1; if (0 < pause) { speed = 0; } if ((pause < 0) and (wait == false)) { pause = 0; speed = 5; } if (bumcrash == true) { speed = 0; } RX = RX + speed; if (775 < RX) { _root.runningsound.stop(); _root.clapSound.start(); if (publishedLevel < 60) { men = men + 1; } FindLevel(); lvlfinished = true; } _root.RMan._x = RX; _root.RMan._y = RY; } function JumpEngine() { if (((lvlfinished == false) and (pause < 1)) and (crashed == false)) { if ((0 < smalldown) or (0 < bigdown)) { if (crashed == false) { runningsound.stop(); } RY = RY - loft; loft = loft - gravity; _root.Rman._visible = false; _root.Jman._alpha = 100; _root.Jman._x = RX; _root.Jman._y = RY; _root.Jman._visible = true; if (spin == true) { _root.Jman._rotation = _root.Jman._rotation + 11; } if (RY >= startRY) { RY = startRY; _root.smalldown = 0; _root.bigdown = 0; loft = 0; _root.Jman._visible = false; _root.Rman._x = RX; _root.Rman._y = RY; runcount = 30; _root.Rman._visible = true; spin = false; } } } } function CollisionCheck() { if ((0 < insideLevel) and (insideLevel < 5)) { if (_root.Level1.hitTest(RX + 12, RY - 1, true)) { Crash(); } if (_root.Level1.hitTest(RX + 8, RY - 24, true)) { Crash(); } if (_root.Level1.hitTest(RX - 10, RY - 14, true)) { Crash(); } if (_root.Level1.hitTest(RX - 8, RY - 1, true)) { Crash(); } } if ((4 < insideLevel) and (insideLevel < 9)) { if (_root.Level2.hitTest(RX + 12, RY - 1, true)) { Crash(); } if (_root.Level2.hitTest(RX - 10, RY - 1, true)) { Crash(); } if (_root.Level2.hitTest(RX - 8, RY - 14, true)) { Crash(); } if (_root.Level2.hitTest(RX + 8, RY - 24, true)) { Crash(); } } if ((8 < insideLevel) and (insideLevel < 13)) { if (_root.Level3.hitTest(RX + 12, RY - 1, true)) { Crash(); } if (_root.Level3.hitTest(RX - 10, RY - 1, true)) { Crash(); } if (_root.Level3.hitTest(RX - 8, RY - 14, true)) { Crash(); } if (_root.Level3.hitTest(RX + 8, RY - 24, true)) { Crash(); } } if ((12 < insideLevel) and (insideLevel < 17)) { if (_root.Level4.hitTest(RX + 12, RY - 1, true)) { Crash(); } if (_root.Level4.hitTest(RX - 10, RY - 1, true)) { Crash(); } if (_root.Level4.hitTest(RX - 8, RY - 14, true)) { Crash(); } if (_root.Level4.hitTest(RX + 8, RY - 24, true)) { Crash(); } } if ((16 < insideLevel) and (insideLevel < 21)) { if (_root.Level5.hitTest(RX + 12, RY - 1, true)) { Crash(); } if (_root.Level5.hitTest(RX - 10, RY - 1, true)) { Crash(); } if (_root.Level5.hitTest(RX - 8, RY - 14, true)) { Crash(); } if (_root.Level5.hitTest(RX + 8, RY - 24, true)) { Crash(); } } if ((20 < insideLevel) and (insideLevel < 25)) { if (_root.Level6.hitTest(RX + 12, RY - 1, true)) { Crash(); } if (_root.Level6.hitTest(RX - 10, RY - 1, true)) { Crash(); } if (_root.Level6.hitTest(RX - 8, RY - 14, true)) { Crash(); } if (_root.Level6.hitTest(RX + 8, RY - 24, true)) { Crash(); } } if ((24 < insideLevel) and (insideLevel < 29)) { if (_root.Level7.hitTest(RX + 12, RY - 1, true)) { Crash(); } if (_root.Level7.hitTest(RX - 10, RY - 1, true)) { Crash(); } if (_root.Level7.hitTest(RX - 8, RY - 14, true)) { Crash(); } if (_root.Level7.hitTest(RX + 8, RY - 24, true)) { Crash(); } } if ((28 < insideLevel) and (insideLevel < 33)) { if (_root.Level8.hitTest(RX + 12, RY - 1, true)) { Crash(); } if (_root.Level8.hitTest(RX - 10, RY - 1, true)) { Crash(); } if (_root.Level8.hitTest(RX - 8, RY - 14, true)) { Crash(); } if (_root.Level8.hitTest(RX + 8, RY - 24, true)) { Crash(); } } if ((32 < insideLevel) and (insideLevel < 37)) { if (_root.Level9.hitTest(RX + 12, RY - 1, true)) { Crash(); } if (_root.Level9.hitTest(RX - 10, RY - 1, true)) { Crash(); } if (_root.Level9.hitTest(RX - 8, RY - 14, true)) { Crash(); } if (_root.Level9.hitTest(RX + 8, RY - 24, true)) { Crash(); } } if ((36 < insideLevel) and (insideLevel < 41)) { if (_root.Level10.hitTest(RX + 12, RY - 1, true)) { Crash(); } if (_root.Level10.hitTest(RX - 10, RY - 1, true)) { Crash(); } if (_root.Level10.hitTest(RX - 8, RY - 14, true)) { Crash(); } if (_root.Level10.hitTest(RX + 8, RY - 24, true)) { Crash(); } } if ((40 < insideLevel) and (insideLevel < 45)) { if (_root.Level11.hitTest(RX + 12, RY - 1, true)) { Crash(); } if (_root.Level11.hitTest(RX - 10, RY - 1, true)) { Crash(); } if (_root.Level11.hitTest(RX - 8, RY - 14, true)) { Crash(); } if (_root.Level11.hitTest(RX + 8, RY - 24, true)) { Crash(); } } if ((44 < insideLevel) and (insideLevel < 49)) { if (_root.Level12.hitTest(RX + 12, RY - 1, true)) { Crash(); } if (_root.Level12.hitTest(RX - 10, RY - 1, true)) { Crash(); } if (_root.Level12.hitTest(RX - 8, RY - 14, true)) { Crash(); } if (_root.Level12.hitTest(RX + 8, RY - 24, true)) { Crash(); } } if ((48 < insideLevel) and (insideLevel < 53)) { if (_root.Level13.hitTest(RX + 12, RY - 1, true)) { Crash(); } if (_root.Level13.hitTest(RX - 10, RY - 1, true)) { Crash(); } if (_root.Level13.hitTest(RX - 8, RY - 14, true)) { Crash(); } if (_root.Level13.hitTest(RX + 8, RY - 24, true)) { Crash(); } } if ((52 < insideLevel) and (insideLevel < 57)) { if (_root.Level14.hitTest(RX + 12, RY - 1, true)) { Crash(); } if (_root.Level14.hitTest(RX - 10, RY - 1, true)) { Crash(); } if (_root.Level14.hitTest(RX - 8, RY - 14, true)) { Crash(); } if (_root.Level14.hitTest(RX + 8, RY - 24, true)) { Crash(); } } if ((56 < insideLevel) and (insideLevel < 61)) { if (_root.Level15.hitTest(RX + 12, RY - 1, true)) { Crash(); } if (_root.Level15.hitTest(RX - 10, RY - 1, true)) { Crash(); } if (_root.Level15.hitTest(RX - 8, RY - 14, true)) { Crash(); } if (_root.Level15.hitTest(RX + 8, RY - 24, true)) { Crash(); } } } function Crash() { if (crashed == false) { WhichCrash = random(3); cx = rx; cy = ry; _root.runningsound.stop(); _root.ouchsound.start(); if (bumcrash == true) { changeSound.start(); } } _root.crashed = true; _root.speed = 0; _root.loft = 0; _root.pause = 15; _root.Rman._alpha = 50; _root.Rman.stop(); _root.Jman._alpha = 30; if (whichcrash == 0) { _root.crash1._x = cX; _root.crash1._y = cY; _root.crash1.play(); } if (whichcrash == 1) { _root.crash2._x = cX; _root.crash2._y = cY; _root.crash2.play(); } if (whichcrash == 2) { _root.crash3._x = cX; _root.crash3._y = cY; _root.crash3.play(); } } function SendBack() { _root.MenBox._visible = true; _root.MenBox._xscale = 150; _root.MenBox._yscale = 150; _root.Rman._visible = false; _root.Jman._x = RX; _root.Jman._y = RY; _root.Jman._visible = true; speed = 0; RX = RX - 20; RY = RY + 3.75; rot = rot + 14; Sendscale = SendScale + one; if (RX < 400) { one = -30; } _root.Jman._xscale = SendScale; _root.Jman._yscale = sendScale; _root.Jman._rotation = 0; _root.JMan._x = RX; _root.JMan._y = RY; if (RX < 25) { nextlevel(); } } function NextLevel() { pause = 15; level = level + 1; insideLevel++; publishedLevel++; _root.Jman._visible = false; RX = 19; lvlfinished = false; _root.Jman._rotation = 0; one = 30; rot = 0; _root.smalldown = 0; _root.bigdown = 0; FindLevel(); _root.startRY = _root.RY; _root.menBox._xscale = 100; _root.menBox._yscale = 100; _root.MenBox._x = 742; _root.MenBox._y = 40; runcount = 30; _root.Rman._x = rx; _root.Rman._y = ry; _root.Rman._visible = true; if (bumLive == false) { BumLaunch(); } } function BumLaunch() { rb = random(3); if (rb == 1) { bumspeed = random(3) + 1; _root.bum._x = 780; _root.bum._y = ry; bumlive = true; _root.bum._visible = true; _root.bum.play(); } } function BumEngine() { if ((bumcrash == false) and (lvlfinished == false)) { _root.Bum._x = _root.Bum._x - bumspeed; if (_root.Bum._x < 105) { bumlive = false; _root.bum._visible = false; } if (_root.Bum.hitTest(_root.Rman)) { bumcrash = true; Crash(); } else if (_root.Bum.hitTest(_root.Jman)) { bumcrash = true; Crash(); } } } function FindLevel() { if (level == 1) { RY = 152; } if (level == 2) { RY = 290; } if (level == 3) { RY = 435; } if (level == 4) { RY = 580; } } function NewScreen() { if (publishedLevel < 60) { men = men + 2; } if (insideLevel == 4) { _root.Level1._visible = false; _root.Level1._y = 2000; _root.Level2._visible = true; _root.Level2._x = 400; _root.Level2._y = 300; } if (insideLevel == 8) { _root.Level2._visible = false; _root.Level2._y = 2000; _root.Level3._visible = true; _root.Level3._x = 400; _root.Level3._y = 300; } if (insideLevel == 12) { _root.Level3._visible = false; _root.Level3._y = 2000; _root.Level4._visible = true; _root.Level4._x = 400; _root.Level4._y = 300; } if (insideLevel == 16) { _root.Level4._visible = false; _root.Level4._y = 2000; _root.Level5._visible = true; _root.Level5._x = 400; _root.Level5._y = 300; } if (insideLevel == 20) { _root.Level5._visible = false; _root.Level5._y = 2000; _root.Level6._visible = true; _root.Level6._x = 400; _root.Level6._y = 300; } if (insideLevel == 24) { _root.Level6._visible = false; _root.Level6._y = 2000; _root.Level7._visible = true; _root.Level7._x = 400; _root.Level7._y = 300; } if (insideLevel == 28) { _root.Level7._visible = false; _root.Level7._y = 2000; _root.Level8._visible = true; _root.Level8._x = 400; _root.Level8._y = 300; } if (insideLevel == 32) { _root.Level8._visible = false; _root.Level8._y = 2000; _root.Level9._visible = true; _root.Level9._x = 400; _root.Level9._y = 300; } if (insideLevel == 36) { _root.Level9._visible = false; _root.Level9._y = 2000; _root.Level10._visible = true; _root.Level10._x = 400; _root.Level10._y = 300; } if (insideLevel == 40) { _root.Level10._visible = false; _root.Level10._y = 2000; _root.Level11._visible = true; _root.Level11._x = 400; _root.Level11._y = 300; } if (insideLevel == 44) { _root.Level11._visible = false; _root.Level11._y = 2000; _root.Level12._visible = true; _root.Level12._x = 400; _root.Level12._y = 300; } if (insideLevel == 48) { _root.Level12._visible = false; _root.Level12._y = 2000; _root.Level13._visible = true; _root.Level13._x = 400; _root.Level13._y = 300; } if (insideLevel == 52) { _root.Level13._visible = false; _root.Level13._y = 2000; _root.Level14._visible = true; _root.Level14._x = 400; _root.Level14._y = 300; } if (insideLevel == 56) { _root.Level14._visible = false; _root.Level14._y = 2000; _root.Level15._visible = true; _root.Level15._x = 400; _root.Level15._y = 300; } if (insideLevel == 60) { _root.Level15._visible = false; _root.Level1._x = 400; _root.Level1._y = 300; _root.Level1._visible = true; insideLevel = 0; _root.NoFreeMen._y = 33; } lvlfinished = false; level = 1; insideLevel++; publishedLevel++; _root.Jman._visible = false; RX = 19; _root.Rman._xscale = 100; _root.Rman._yscale = 100; _root.Jman._rotation = 0; one = 30; rot = 0; _root.smalldown = 0; _root.bigdown = 0; FindLevel(); _root.startRY = _root.RY; _root.Rman._visible = true; _root.wait = true; _root.anykey._y = 300; runcount = 24; _root.SeaGullL._visible = false; _root.SeaGullR._visible = false; gullLive = false; gullwait = false; bumlive = false; bum._visible = false; } function Main() { if (_root.done == false) { if (bumlive == true) { bumEngine(); } if (crashed == true) { CrashEngine(); } if (lvlfinished == true) { if (level == 4) { NewScreen(); } else { SendBack(); } } } if (_root.done == true) { _root.bum._visible = false; _root.gull._visible = false; _root.rman._visible = false; } } function CrashEngine() { if (whichcrash == 0) { if ((0 < smalldown) or (0 < bigdown)) { cY = cY + 4; _root.crash1._x = cX; _root.crash1._y = cY; if (cY >= startRY) { cY = startRY; _root.smalldown = 0; _root.bigdown = 0; loft = 0; runcount = 30; spin = false; } } } if (whichcrash == 1) { if ((0 < smalldown) or (0 < bigdown)) { cY = cY + 4; _root.crash2._x = cX; _root.crash2._y = cY; if (cY >= startRY) { cY = startRY; _root.smalldown = 0; _root.bigdown = 0; loft = 0; runcount = 30; spin = false; } } } if (whichcrash == 2) { if ((0 < smalldown) or (0 < bigdown)) { cY = cY + 4; _root.crash3._x = cX; _root.crash3._y = cY; if (cY >= startRY) { cY = startRY; _root.smalldown = 0; _root.bigdown = 0; loft = 0; runcount = 30; spin = false; } } } } function InitGull() { if (gullwait == false) { GullLive = true; GullX = random(700) + 50; GullY = (random(500) + RY) - 100; if (580 < GullY) { GullLive = false; } else { GUllTime = random(400) + 100; rightgull = true; _root.SeaGullR._visible = true; _root.SeaGullR._x = GullX; _root.SeaGullR._y = GullY; SeagullSound.start(); } } } function Gull() { r = random(200); if ((((r == 1) and (wait == false)) and (4 < insideLevel)) and (gullLive == false)) { InitGull(); } if (gullLive == true) { GullTime = Gulltime - 1; rr = random(60); if (rr == 1) { if (rightgull == true) { _root.SeaGullR._visible = false; _root.SeaGullL._x = GullX; _root.SeaGullL._y = GullY; _root.SeaGullL._visible = true; rightgull = false; } else { _root.SeaGullL._visible = false; _root.SeaGullR._x = GullX; _root.SeaGullR._y = GullY; _root.SeaGullR._visible = true; rightgull = true; } } if (GullTime < 0) { GullLive = false; _root.SeaGullR._visible = false; _root.SeaGullL._visible = false; } if (pause < 1) { if (_root.SeaGullR.hitTest(_root.Rman)) { Cash(); } if (_root.SeaGullR.hitTest(_root.Jman)) { Cash(); } if (_root.SeaGullL.hitTest(_root.Rman)) { Cash(); } if (_root.SeaGullL.hitTest(_root.Jman)) { Cash(); } } } } function Cash() { if ((pause < 1) and (gullLive == true)) { pause = 30; _root.cashSound.start(); _root.men10._x = 720; _root.men10._y = 60; _root.men10._visible = true; _root.men10.play(); men = men + 5; gullLive = false; gullwait = true; } } if (initial < 1) { Initialize(); } if ((1 < initial) and (lvlfinished == false)) { JumpEngine(); CollisionCheck(); Running(); Gull(); } Main();
Instance of Symbol 67 MovieClip "mouse" in Frame 1
onClipEvent (keyDown) { if (_root.pause < 1) { if (Key.isDown(37) and (_root.bigdown == 0)) { _root.smalldown = _root.smalldown + 1; if (_root.smalldown == 1) { _root.startRY = _root.RY; _root.loft = 8; _root.gravity = 0.6; _root.Jman._rotation = 0; _root.spin = false; r = random(36); if (r == 1) { _root.spin = true; } } } if (Key.isDown(39) and (_root.smalldown == 0)) { _root.bigdown = _root.bigdown + 1; if (_root.bigdown == 1) { _root.startRY = _root.RY; _root.loft = 10.5; _root.gravity = 0.6; _root.Jman._rotation = 0; _root.spin = false; r = random(36); if (r == 1) { _root.spin = true; } } } } }
Instance of Symbol 142 MovieClip "AnyKey" in Frame 1
onClipEvent (keyDown) { if (_root.wait == true) { if (Key.isDown(38)) { _root.wait = false; _root.anykey._y = 2000; _root.speed = 5; _root.pause = 15; if (_root.initial == 0) { _root.cableSound.stop(); unloadMovie (_root.splash); _root.initial = 2; } } } }
Instance of Symbol 156 MovieClip "VictorySplash" in Frame 1
/* no clip actions */
Instance of Symbol 176 MovieClip "DeadSplash" in Frame 1
/* no clip actions */
Symbol 87 Button
on (release) { _root.wait = false; _root.anykey._y = 2000; _root.speed = 5; _root.pause = 15; _root.cableSound.stop(); unloadMovie (_root.splash); _root.initial = 2; _root.scoretable._visible = false; _root.scoreload._visible = false; _root.refreshmovie._visible = false; unloadMovie (_root.scoreload); unloadMovie (_root.refreshmovie); }
Symbol 93 MovieClip Frame 1
Symbol 93 MovieClip Frame 2
_root.loader._visible = false; _root.soundstart++; _root.cableSound.start(); _root.splash._y = 230; _root.MenBox._x = 742; _root.MenBox._y = 40; _root.LevelBox._y = 40; _root.Men._xscale = 100; _root.Men._yscale = 100; _root.Level1._x = 400; _root.Level1._y = 300; _root.loader.stop();
Symbol 105 MovieClip Frame 1
_root.crash1._visible = true;
Symbol 105 MovieClip Frame 55
_root.RX = 19; _root.smalldown = 0; _root.bigdown = 0; _root.Speed = 5; _root.FindLevel(); _root.Jman._visible = false; _root.men = _root.men - 1; _root.Rman.play(); _root.crashcount = 0; _root.crashed = false; if (_root.men < 0) { _root.DeadSplash._y = 280; _root.done = true; _root.speed = 0; _root.wait = true; } _root.Rman._alpha = 100; _root.crash1.stop(); _root.crash1._visible = false; _root.Rman._x = RX; _root.Rman._alpha = 100; _root.Jman._y = 2000; _root.Rman._visible = true; if (_root.bumcrash == true) { _root.bumcrash = false; _root.bum.stop(); _root.bumlive = false; _root.bum._visible = false; }
Symbol 117 MovieClip Frame 1
_root.crash2._visible = true;
Symbol 117 MovieClip Frame 55
_root.RX = 19; _root.smalldown = 0; _root.bigdown = 0; _root.Speed = 5; _root.FindLevel(); _root.Jman._visible = false; _root.men = _root.men - 1; _root.Rman.play(); _root.crashcount = 0; _root.crashed = false; if (_root.men < 0) { _root.DeadSplash._y = 280; _root.done = true; _root.speed = 0; _root.wait = true; } _root.crash2.stop(); _root.crash2._visible = false; _root.Rman._x = RX; _root.Rman._visible = true; _root.Jman._y = 2000; _root.Rman._alpha = 100; if (_root.bumcrash == true) { _root.bumcrash = false; _root.bumlive = false; _root.bum.stop(); _root.bum._visible = false; }
Symbol 124 MovieClip Frame 1
_root.crash3._visible = true;
Symbol 124 MovieClip Frame 85
_root.RX = 19; _root.smalldown = 0; _root.bigdown = 0; _root.Speed = 5; _root.FindLevel(); _root.Jman._visible = false; _root.men = _root.men - 1; _root.Rman.play(); _root.crashcount = 0; _root.crashed = false; if (_root.men < 0) { _root.DeadSplash._y = 280; _root.speed = 0; _root.done = true; _root.wait = true; } _root.crash3.stop(); _root.crash3._visible = false; _root.Rman._x = RX; _root.Rman._visible = true; _root.Jman._y = 2000; _root.Rman._alpha = 100; if (_root.bumcrash == true) { _root.bumcrash = false; _root.bum.stop(); _root.bumlive = false; _root.bum._visible = false; }
Symbol 129 MovieClip Frame 30
_root.men10._visible = false; speed = 5; _root.SeaGullL._visible = false; _root.SeaGullR._visible = false; _root.men10.stop();
Symbol 155 Button
on (release) { _root.DeadSplash._y = 280; }
Symbol 175 Button
on (release) { _root.loadinginfo._visible = true; _root.scoretable.filename = "scores/demo.sco"; _root.scoretable.scoresize = 20; _root.scoretable.action = "INSERT"; _root.scoretable.viewtype = "FLASH"; _root.scoretable.winname = _root.name; _root.scoretable.winscore = _root.publishedlevel; _root.scoretable.loadVariables("http://www.nationlocation.com/cgi-bin/scores.php", "GET"); _root.scoretable._visible = true; _root.playagain._x = 400; _root.stopscoreload(); }
Symbol 176 MovieClip Frame 1
_root.Rman._visible = false; _root.Jman._visible = false;
Symbol 243 Button
on (release) { _root.scoretable.filename = "scores/demo.sco"; _root.scoretable.scoresize = 20; _root.scoretable.viewtype = "FLASH"; _root.scoretable.loadVariables("http://www.nationlocation.com/cgi-bin/scores.php", "GET"); }

Library Items

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

Instance Names

"Level15"Frame 1Symbol 27 MovieClip
"Level14"Frame 1Symbol 40 MovieClip
"Level12"Frame 1Symbol 45 MovieClip
"Level13"Frame 1Symbol 46 MovieClip
"Level11"Frame 1Symbol 47 MovieClip
"Level10"Frame 1Symbol 49 MovieClip
"Level8"Frame 1Symbol 50 MovieClip
"Level9"Frame 1Symbol 51 MovieClip
"Level7"Frame 1Symbol 53 MovieClip
"levelbox"Frame 1Symbol 58 MovieClip
"MenBox"Frame 1Symbol 61 MovieClip
"Level5"Frame 1Symbol 63 MovieClip
"Level4"Frame 1Symbol 64 MovieClip
"Level1"Frame 1Symbol 65 MovieClip
"mouse"Frame 1Symbol 67 MovieClip
"Level6"Frame 1Symbol 69 MovieClip
"Splash"Frame 1Symbol 88 MovieClip
"loader"Frame 1Symbol 93 MovieClip
"Level2"Frame 1Symbol 94 MovieClip
"Level3"Frame 1Symbol 95 MovieClip
"SBlock"Frame 1Symbol 97 MovieClip
"BBlock"Frame 1Symbol 99 MovieClip
"SBlock"Frame 1Symbol 97 MovieClip
"RMan"Frame 1Symbol 91 MovieClip
"JMan"Frame 1Symbol 76 MovieClip
"crash1"Frame 1Symbol 105 MovieClip
"crash2"Frame 1Symbol 117 MovieClip
"crash3"Frame 1Symbol 124 MovieClip
"seagullR"Frame 1Symbol 126 MovieClip
"men10"Frame 1Symbol 129 MovieClip
"seagullL"Frame 1Symbol 131 MovieClip
"AnyKey"Frame 1Symbol 142 MovieClip
"VictorySplash"Frame 1Symbol 156 MovieClip
"bum"Frame 1Symbol 159 MovieClip
"DeadSplash"Frame 1Symbol 176 MovieClip
"scoretable"Frame 1Symbol 226 MovieClip
"playagain"Frame 1Symbol 229 MovieClip
"scoreload"Frame 1Symbol 233 MovieClip
"refreshmovie"Frame 1Symbol 244 MovieClip
"noFreeMen"Frame 1Symbol 248 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "tram"
ExportAssets (56)Timeline Frame 1Symbol 2 as "spare"
ExportAssets (56)Timeline Frame 1Symbol 3 as "beachHorn"
ExportAssets (56)Timeline Frame 1Symbol 4 as "Sgull"
ExportAssets (56)Timeline Frame 1Symbol 5 as "runman"
ExportAssets (56)Timeline Frame 1Symbol 6 as "ouchman"
ExportAssets (56)Timeline Frame 1Symbol 7 as "cashregister"
ExportAssets (56)Timeline Frame 1Symbol 8 as "clapman"

Dynamic Text Variables

_root.publishedLevelSymbol 56 EditableText""
_root.menSymbol 59 EditableText""
TextField3Symbol 144 EditableText"Congratulations!"
TextField4Symbol 145 EditableText"You finished all Levels!"
TextField15Symbol 149 EditableText"Enter score"
TextField15Symbol 151 EditableText"Enter score"
TextField15Symbol 153 EditableText"Enter score"
TextField15Symbol 154 EditableText"Enter score"
TextField3Symbol 161 EditableText"Game Over"
TextField4Symbol 162 EditableText"You reached Level: "
_root.publishedlevelSymbol 163 EditableText""
TextField10Symbol 166 EditableText"Enter your name for the High Score..."
TextField11Symbol 167 EditableText"NAME:"
_root.nameSymbol 168 EditableText""
TextField13Symbol 170 EditableText"SUBMIT"
TextField13Symbol 171 EditableText"SUBMIT"
TextField13Symbol 173 EditableText"SUBMIT"
TextField13Symbol 174 EditableText"SUBMIT"
TextField7Symbol 183 EditableText"Level"
NAME0Symbol 185 EditableText""
SCORE0Symbol 186 EditableText""
NAME1Symbol 187 EditableText""
SCORE1Symbol 188 EditableText""
NAME2Symbol 189 EditableText""
SCORE2Symbol 190 EditableText""
NAME3Symbol 191 EditableText""
SCORE3Symbol 192 EditableText""
NAME4Symbol 193 EditableText""
SCORE4Symbol 194 EditableText""
NAME5Symbol 195 EditableText""
SCORE5Symbol 196 EditableText""
NAME6Symbol 197 EditableText""
SCORE6Symbol 198 EditableText""
NAME7Symbol 199 EditableText""
SCORE7Symbol 200 EditableText""
NAME8Symbol 201 EditableText""
SCORE8Symbol 202 EditableText""
NAME9Symbol 203 EditableText""
SCORE9Symbol 204 EditableText""
NAME10Symbol 205 EditableText""
SCORE10Symbol 206 EditableText""
NAME11Symbol 207 EditableText""
SCORE11Symbol 208 EditableText""
NAME12Symbol 209 EditableText""
SCORE12Symbol 210 EditableText""
NAME13Symbol 211 EditableText""
SCORE13Symbol 212 EditableText""
NAME14Symbol 213 EditableText""
SCORE14Symbol 214 EditableText""
NAME15Symbol 215 EditableText""
SCORE15Symbol 216 EditableText""
NAME16Symbol 217 EditableText""
SCORE16Symbol 218 EditableText""
NAME17Symbol 219 EditableText""
SCORE17Symbol 220 EditableText""
NAME18Symbol 221 EditableText""
SCORE18Symbol 222 EditableText""
NAME19Symbol 223 EditableText""
SCORE19Symbol 224 EditableText""
TextField16Symbol 230 EditableText"Loading High Scores"
TextField16Symbol 231 EditableText"Loading High Scores"
TextField16Symbol 232 EditableText"Loading High Scores"
TextField19Symbol 236 EditableText"refresh scoreboard"
TextField19Symbol 238 EditableText"refresh scoreboard"
TextField19Symbol 240 EditableText"refresh scoreboard"
TextField19Symbol 242 EditableText"refresh scoreboard"




http://swfchan.com/4/18326/info.shtml
Created: 31/5 -2019 02:00:40 Last modified: 31/5 -2019 02:00:40 Server time: 09/05 -2024 05:33:45