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

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

Manic Medic.swf

This is the info page for
Flash #23893

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


Text
6

7

minutes

7

Manic Medic

NB Score table doesn't work on sess.net - PLAY HERE instead!

NB Score tabel doesn't work on sess.net - PLAY HERE instead !

Play

Play

Instructions

Instructions

Highscores

Highscores

Game concieved, designed, programmed and published by
Ian G Parker -"Multimedian"  Copyright November 2004

<P ALIGN="CENTER"><FONT FACE="Comic Sans MS" SIZE="15" COLOR="#FF0000">Click here to visit <FONT COLOR="#0000FF"><A HREF="http://www.multimedian.co.uk" target = "_blank"><B>multimedian.co.uk</B></A><B> &nbsp;&nbsp;</B><FONT COLOR="#FF0000">or &nbsp;&nbsp;<FONT COLOR="#0000FF"><A HREF="mailto:ian@multimedian.co.uk" target = "_blank"><B>e-mail me</B></A><B> &nbsp;&nbsp;&nbsp;&nbsp;</B></FONT></FONT></FONT></FONT></P>

Version 1 Beta 4
Flash MX
php
mySQL

H

bla

Ambulance

%

Crash Damage

Taken

Attended

Last
response
time

minutes

Out -
standing

Patients
on board

Total Driving Time

minutes

999 Calls

Crashing into kerbs and traffic will damage your ambulance
- be careful to watch the crashometer - 100% = game over.

Ready for you first shift ?.....

" Manic  Medic "  Instructions

Home

Home

Drive your ambulance around the streets picking up patients.
up arrow = forward         down arrow = reverse
left arrow = turn left         right arrow = turn right

Emergency calls flash and show how long they have been waiting -
you MUST arrive within 7 minutes or the boss will sack you !
Just drive into the flashing zone .

7

7

Maximum 2 patients in the ambulance  -
go and stop at the hospital to empty
but be quick there may be another call waiting !

Ambulance

Your score is ...

1

1

Game Over

The ambulance is a write off !
You're fired !

Your paramedic career spanned                 minutes
and you attended an amazing                 emergencies

Please enter you name...

Comment on your score...

Enter

Enter

%

Crash Damage

Taken

Attended

minutes

Out -
standing

Patients
on board

Total Driving Time

minutes

999 Calls

1

1

Over 7 minutes to arrive !
The boss fired you !

Manic Medics Hall Of Fame

3

4

6

7

8

9

5

2

1

10

ActionScript [AS1/AS2]

Frame 1
iStatus = 0;
Frame 2
iBytesTotal = _root.getBytesTotal(); iBytesLoaded = _root.getBytesLoaded(); iBytes = math.round((iBytesLoaded / iBytesTotal) * 100); sStatus = iBytes add "% loaded";
Frame 3
if (iBytes < 100) { gotoAndPlay (2); } else { sStatus = "Loaded"; gotoAndPlay (4); }
Frame 4
sStatus = "Loaded";
Frame 6
stop();
Frame 7
Instance of Symbol 86 MovieClip in Frame 7
onClipEvent (load) { var c = 500; var callstaken; var callsattended; var lastonscenetime; var outstandingcalls = 0; var patients = 0; var gameover = 0; var totalcrashes; _root.drivingtime = 0; _root.totalcrashes = 0; _root.gameover = 0; _root.outstandingcalls = 0; _root.patients = 0; _root.callstaken = 0; _root.lastonscenetime = 0; _root.callsattended = 0; _root.car.swapDepths(200); myDoor = new Sound(); myDoor.attachSound("door"); myCrash = new Sound(); myCrash.attachSound("crash"); myScreech = new Sound(); myScreech.attachSound("screech"); }
Instance of Symbol 45 MovieClip "car" in Frame 7
onClipEvent (enterFrame) { _root.drivingtime = _root.drivingtime + 0.025; _root.totaltime = Math.round(_root.drivingtime); var totalcrashes; var damage; _root.damage = _root.totalcrashes; if (Key.isDown(38)) { speed = speed + 0.5; } if (Key.isDown(40)) { speed = speed - 0.5; } if (Math.abs(speed) > 6) { speed = speed * 0.5; } if (Key.isDown(37)) { if (speed != 0) { _rotation = (_rotation - 15); } } if (Key.isDown(39)) { if (speed != 0) { _rotation = (_rotation + 15); } } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (_root.road.hitTest((_x + x) + 10, (_y + y) + 10, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.8; myScreech = new Sound(); myScreech.attachSound("screech"); myScreech.start(0, 1); _root.totalcrashes = _root.totalcrashes + 1; _root.crashometer._xscale = _root.crashometer._xscale + 1; if (_root.totalcrashes >= 100) { _root.totalcrashes = 100; _root.gameover = 1; removeMovieClip(_root["scene" + _root.callstaken]); removeMovieClip(_root["scene" + (_root.callstaken - 1)]); removeMovieClip(_root["scene" + (_root.callstaken - 2)]); stopAllSounds(); _root.gotoAndStop(20); } } if (_root.road.hitTest((_x + x) - 10, (_y + y) - 10, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.8; myScreech = new Sound(); myScreech.attachSound("screech"); myScreech.start(0, 1); _root.totalcrashes = _root.totalcrashes + 1; _root.crashometer._xscale = _root.crashometer._xscale + 1; if (_root.totalcrashes >= 100) { _root.totalcrashes = 100; _root.gameover = 1; removeMovieClip(_root["scene" + _root.callstaken]); removeMovieClip(_root["scene" + (_root.callstaken - 1)]); removeMovieClip(_root["scene" + (_root.callstaken - 2)]); stopAllSounds(); _root.gotoAndStop(20); } } myCrash = new Sound(); myCrash.attachSound("crash"); if (this.hitTest(_root.traffic1.car1)) { trace(smash); _root.car.speed = _root.car.speed * -1; _root.traffic1.stop(); _root.traffic1.car1.gotoAndStop("crash"); myCrash.start(0, 1); _root.totalcrashes = _root.totalcrashes + 5; _root.crashometer._xscale = _root.crashometer._xscale + 5; if (_root.totalcrashes >= 100) { _root.totalcrashes = 100; _root.gameover = 1; removeMovieClip(_root["scene" + _root.callstaken]); removeMovieClip(_root["scene" + (_root.callstaken - 1)]); removeMovieClip(_root["scene" + (_root.callstaken - 2)]); stopAllSounds(); _root.gotoAndStop(20); } } if (this.hitTest(_root.traffic2.car1)) { trace(smash); _root.car.speed = _root.car.speed * -1; _root.traffic2.stop(); _root.traffic2.vehicle1.gotoAndStop("crash"); myCrash.start(0, 1); _root.totalcrashes = _root.totalcrashes + 5; _root.crashometer._xscale = _root.crashometer._xscale + 5; if (_root.totalcrashes >= 100) { _root.totalcrashes = 100; _root.gameover = 1; removeMovieClip(_root["scene" + _root.callstaken]); removeMovieClip(_root["scene" + (_root.callstaken - 1)]); removeMovieClip(_root["scene" + (_root.callstaken - 2)]); stopAllSounds(); _root.gotoAndStop(20); } } if (this.hitTest(_root.traffic3.car1)) { trace(smash); _root.car.speed = _root.car.speed * -1; _root.traffic3.stop(); _root.traffic3.vehicle1.gotoAndStop("crash"); myCrash.start(0, 1); _root.totalcrashes = _root.totalcrashes + 5; _root.crashometer._xscale = _root.crashometer._xscale + 5; if (_root.totalcrashes >= 100) { _root.totalcrashes = 100; _root.gameover = 1; removeMovieClip(_root["scene" + _root.callstaken]); removeMovieClip(_root["scene" + (_root.callstaken - 1)]); removeMovieClip(_root["scene" + (_root.callstaken - 2)]); stopAllSounds(); _root.gotoAndStop(20); } } if (this.hitTest(_root.traffic4.car1)) { trace(smash); _root.car.speed = _root.car.speed * -1; _root.traffic4.stop(); _root.traffic4.vehicle1.gotoAndStop("crash"); myCrash.start(0, 1); _root.totalcrashes = _root.totalcrashes + 8; _root.crashometer._xscale = _root.crashometer._xscale + 10; if (_root.totalcrashes >= 100) { _root.totalcrashes = 100; _root.gameover = 1; removeMovieClip(_root["scene" + _root.callstaken]); removeMovieClip(_root["scene" + (_root.callstaken - 1)]); removeMovieClip(_root["scene" + (_root.callstaken - 2)]); stopAllSounds(); _root.gotoAndStop(20); } } if (this.hitTest(_root.traffic5.car1)) { trace(smash); _root.car.speed = _root.car.speed * -1; _root.traffic5.stop(); _root.traffic5.vehicle1.gotoAndStop("crash"); myCrash.start(0, 1); _root.totalcrashes = _root.totalcrashes + 5; _root.crashometer._xscale = _root.crashometer._xscale + 5; if (_root.totalcrashes >= 100) { _root.totalcrashes = 100; _root.gameover = 1; removeMovieClip(_root["scene" + _root.callstaken]); removeMovieClip(_root["scene" + (_root.callstaken - 1)]); removeMovieClip(_root["scene" + (_root.callstaken - 2)]); stopAllSounds(); _root.gotoAndStop(20); } } if (this.hitTest(_root.traffic6.car1)) { trace(smash); _root.car.speed = _root.car.speed * -1; _root.traffic6.stop(); _root.traffic6.vehicle1.gotoAndStop("crash"); myCrash.start(0, 1); _root.totalcrashes = _root.totalcrashes + 5; _root.crashometer._xscale = _root.crashometer._xscale + 5; if (_root.totalcrashes >= 100) { _root.totalcrashes = 100; _root.gameover = 1; removeMovieClip(_root["scene" + _root.callstaken]); removeMovieClip(_root["scene" + (_root.callstaken - 1)]); removeMovieClip(_root["scene" + (_root.callstaken - 2)]); stopAllSounds(); _root.gotoAndStop(20); } } if (_root.hospitaldropzone.hitTest((_x + x) - 7, (_y + y) - 7, true)) { speed = 0; mySiren.stop("siren"); siren = 0; if (doorplayed != 1) { myDoor = new Sound(); myDoor.attachSound("door"); myDoor.start(0, 1); doorplayed = 1; } _root.patients = 0; } if (speed != 0) { if (outstandingcalls > 0) { doorplayed = 0; if (siren != 1) { mySiren = new Sound(); mySiren.attachSound("siren"); mySiren.start(0, 99999); siren = 1; } } } if (outstandingcalls < 2) { newcall = Math.floor(Math.Random() * 700); if (newcall < 5) { _root.callstaken = _root.callstaken + 1; outstandingcalls = outstandingcalls + 1; _root.outstandingcalls = outstandingcalls; i = 1; while (i <= 1) { xpos = Math.floor(Math.Random() * 690); ypos = Math.floor(Math.Random() * 475); _root.attachMovie("scene", "scene" + _root.callstaken, _root.callstaken); _root["scene" + _root.callstaken]._alpha = 50; _root["scene" + _root.callstaken]._x = xpos; _root["scene" + _root.callstaken]._y = ypos; i++; } } } }
Frame 8
gotoAndStop (20);
Frame 10
gotoAndStop (21);
Frame 20
score = _root.totaltime * _root.callsattended; playerscore.text = score; playername = ""; playercomment = ""; stop(); removeMovieClip(_root.car); removeMovieClip(_root["scene" + _root.callstaken]); removeMovieClip(_root["scene" + (_root.callstaken - 1)]); removeMovieClip(_root["scene" + (_root.callstaken - 2)]); removeMovieClip(_root.traffic1); removeMovieClip(_root.traffic2); removeMovieClip(_root.traffic3); removeMovieClip(_root.traffic4); removeMovieClip(_root.traffic5); removeMovieClip(_root.traffic6); _root.damage = 100; score = totaltime * callsattended;
Frame 21
score = _root.totaltime * _root.callsattended; playerscore.text = score; playername = ""; playercomment = ""; stop(); removeMovieClip(_root.car); removeMovieClip(_root["scene" + _root.callstaken]); removeMovieClip(_root["scene" + (_root.callstaken - 1)]); removeMovieClip(_root["scene" + (_root.callstaken - 2)]); removeMovieClip(_root.traffic1); removeMovieClip(_root.traffic2); removeMovieClip(_root.traffic3); removeMovieClip(_root.traffic4); removeMovieClip(_root.traffic5); removeMovieClip(_root.traffic6); _root.damage = 100; totalscore = totaltime * callsattended;
Frame 39
var url2 = "http://www.multimedian.co.uk/manicmedic/highscore.php?nocache"; url2 = url2 + random(65000); loadVariablesNum (url2, myData, "POST"); Set(undefined, undefined); stop();
Symbol 15 MovieClip Frame 1
trace(_root.gameover); if ((_root.gameover = 1)) { removeMovieClip(_root[scene + _root.callstaken]); }
Symbol 23 MovieClip [scene] Frame 1
var timecount = 0;
Symbol 23 MovieClip [scene] Frame 3
if (this.hitTest(_root.car)) { if (_root.patients < 2) { _root.callsattended = _root.callsattended + 1; _root.lastonscenetime = timecount; _root.car.outstandingcalls = _root.car.outstandingcalls - 1; _root.outstandingcalls = _root.car.outstandingcalls; _root.patients = _root.patients + 1; _root.car.speed = 0; _root.car.mySiren.stop("siren"); _root.car.siren = 0; removeMovieClip(this); if (_root.car.doorplayed != 1) { myDoor = new Sound(); myDoor.attachSound("door"); myDoor.start(0, 1); _root.car.doorplayed = 1; } } }
Symbol 23 MovieClip [scene] Frame 6
if (this.hitTest(_root.car)) { if (_root.patients < 2) { _root.callsattended = _root.callsattended + 1; _root.lastonscenetime = timecount; _root.car.outstandingcalls = _root.car.outstandingcalls - 1; _root.outstandingcalls = _root.car.outstandingcalls; _root.patients = _root.patients + 1; _root.car.speed = 0; _root.car.mySiren.stop("siren"); _root.car.siren = 0; removeMovieClip(this); if (_root.car.doorplayed != 1) { myDoor = new Sound(); myDoor.attachSound("door"); myDoor.start(0, 1); _root.car.doorplayed = 1; } } }
Symbol 23 MovieClip [scene] Frame 10
if (this.hitTest(_root.car)) { if (_root.patients < 2) { _root.callsattended = _root.callsattended + 1; _root.lastonscenetime = timecount; _root.car.outstandingcalls = _root.car.outstandingcalls - 1; _root.outstandingcalls = _root.car.outstandingcalls; _root.patients = _root.patients + 1; _root.car.speed = 0; _root.car.mySiren.stop("siren"); _root.car.siren = 0; removeMovieClip(this); if (_root.car.doorplayed != 1) { myDoor = new Sound(); myDoor.attachSound("door"); myDoor.start(0, 1); _root.car.doorplayed = 1; } } }
Symbol 23 MovieClip [scene] Frame 12
if (this.hitTest(_root.car)) { if (_root.patients < 2) { _root.callsattended = _root.callsattended + 1; _root.lastonscenetime = timecount; _root.car.outstandingcalls = _root.car.outstandingcalls - 1; _root.outstandingcalls = _root.car.outstandingcalls; _root.patients = _root.patients + 1; _root.car.speed = 0; _root.car.mySiren.stop("siren"); _root.car.siren = 0; removeMovieClip(this); if (_root.car.doorplayed != 1) { myDoor = new Sound(); myDoor.attachSound("door"); myDoor.start(0, 1); _root.car.doorplayed = 1; } } }
Symbol 23 MovieClip [scene] Frame 15
if (this.hitTest(_root.car)) { if (_root.patients < 2) { _root.callsattended = _root.callsattended + 1; _root.lastonscenetime = timecount; _root.car.outstandingcalls = _root.car.outstandingcalls - 1; _root.outstandingcalls = _root.car.outstandingcalls; _root.patients = _root.patients + 1; _root.car.speed = 0; _root.car.mySiren.stop("siren"); _root.car.siren = 0; removeMovieClip(this); if (_root.car.doorplayed != 1) { myDoor = new Sound(); myDoor.attachSound("door"); myDoor.start(0, 1); _root.car.doorplayed = 1; } } }
Symbol 23 MovieClip [scene] Frame 18
if (this.hitTest(_root.car)) { if (_root.patients < 2) { _root.callsattended = _root.callsattended + 1; _root.lastonscenetime = timecount; _root.car.outstandingcalls = _root.car.outstandingcalls - 1; _root.outstandingcalls = _root.car.outstandingcalls; _root.patients = _root.patients + 1; _root.car.speed = 0; _root.car.mySiren.stop("siren"); _root.car.siren = 0; removeMovieClip(this); if (_root.car.doorplayed != 1) { myDoor = new Sound(); myDoor.attachSound("door"); myDoor.start(0, 1); _root.car.doorplayed = 1; } } }
Symbol 23 MovieClip [scene] Frame 21
var timecount; timecount = timecount + 0.5; if (timecount >= 7) { _root.gameover = 1; removeMovieClip(_root["scene" + _root.callstaken]); removeMovieClip(_root["scene" + (_root.callstaken - 1)]); removeMovieClip(_root["scene" + (_root.callstaken - 2)]); removeMovieClip(_root.car); stopAllSounds(); _root.gotoAndStop(21); } if (this.hitTest(_root.car)) { if (_root.patients < 2) { _root.callsattended = _root.callsattended + 1; _root.lastonscenetime = timecount; _root.car.outstandingcalls = _root.car.outstandingcalls - 1; _root.outstandingcalls = _root.car.outstandingcalls; _root.patients = _root.patients + 1; _root.car.speed = 0; _root.car.mySiren.stop("siren"); _root.car.siren = 0; removeMovieClip(this); if (_root.car.doorplayed != 1) { myDoor = new Sound(); myDoor.attachSound("door"); myDoor.start(0, 1); _root.car.doorplayed = 1; } } } if ((_root.gameover = 1)) { } gotoAndPlay (2);
Symbol 58 Button
on (release) { gotoAndStop (7); }
Symbol 64 MovieClip Frame 1
Symbol 68 Button
on (release) { gotoAndStop (15); }
Symbol 71 Button
on (release) { gotoAndStop (39); }
Symbol 90 MovieClip Frame 1
if (this.hitTest(_root.car)) { _root.patients = 0; trace(_root.patients); }
Symbol 93 MovieClip Frame 1
stop();
Symbol 93 MovieClip Frame 2
stop();
Instance of Symbol 93 MovieClip "car1" in Symbol 94 MovieClip Frame 1
/* no clip actions */
Instance of Symbol 93 MovieClip "car1" in Symbol 94 MovieClip Frame 100
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { _parent.stop(); this.gotoAndStop("crash"); _root.car.speed = _root.car.speed * -0.4; _root.totalcrashes = _root.totalcrashes + 1; _root.crashometer._xscale = _root.crashometer._xscale + 1; if (_root.totalcrashes >= 100) { _root.gameover = 1; removeMovieClip(_root[scene + _root.callstaken]); _root.gotoAndStop(3); } } }
Symbol 97 MovieClip Frame 1
stop();
Symbol 97 MovieClip Frame 2
stop(); stop();
Instance of Symbol 97 MovieClip "car1" in Symbol 98 MovieClip Frame 1
/* no clip actions */
Instance of Symbol 97 MovieClip "car1" in Symbol 98 MovieClip Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { _parent.stop(); this.gotoAndStop("crash"); } }
Symbol 101 MovieClip Frame 1
stop();
Symbol 101 MovieClip Frame 2
stop(); stop();
Instance of Symbol 101 MovieClip "car1" in Symbol 102 MovieClip Frame 1
/* no clip actions */
Instance of Symbol 101 MovieClip "car1" in Symbol 102 MovieClip Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { _parent.stop(); this.gotoAndStop("crash"); } }
Symbol 105 MovieClip Frame 1
stop();
Symbol 105 MovieClip Frame 2
stop(); stop();
Instance of Symbol 105 MovieClip "car1" in Symbol 106 MovieClip Frame 1
/* no clip actions */
Instance of Symbol 105 MovieClip "car1" in Symbol 106 MovieClip Frame 32
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { _parent.stop(); this.gotoAndStop("crash"); } }
Symbol 109 MovieClip Frame 1
stop();
Symbol 109 MovieClip Frame 2
stop(); stop();
Instance of Symbol 109 MovieClip "car1" in Symbol 110 MovieClip Frame 1
/* no clip actions */
Instance of Symbol 109 MovieClip "car1" in Symbol 110 MovieClip Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { _parent.stop(); this.gotoAndStop("crash"); } }
Instance of Symbol 109 MovieClip "car1" in Symbol 110 MovieClip Frame 156
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { _parent.stop(); this.gotoAndStop("crash"); } }
Symbol 113 MovieClip Frame 1
stop();
Symbol 113 MovieClip Frame 2
stop(); stop();
Instance of Symbol 113 MovieClip "car1" in Symbol 114 MovieClip Frame 1
/* no clip actions */
Instance of Symbol 113 MovieClip "car1" in Symbol 114 MovieClip Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { _parent.stop(); this.gotoAndStop("crash"); } }
Symbol 147 Button
on (release) { gotoAndStop (6); }
Symbol 152 MovieClip Frame 1
var timecount = 0;
Symbol 152 MovieClip Frame 3
if (this.hitTest(_root.car)) { if (_root.patients < 2) { _root.callsattended = _root.callsattended + 1; _root.lastonscenetime = timecount; _root.car.outstandingcalls = _root.car.outstandingcalls - 1; _root.outstandingcalls = _root.car.outstandingcalls; _root.patients = _root.patients + 1; _root.car.speed = 0; _root.car.mySiren.stop("siren"); _root.car.siren = 0; removeMovieClip(this); if (_root.car.doorplayed != 1) { myDoor = new Sound(); myDoor.attachSound("door"); myDoor.start(0, 1); _root.car.doorplayed = 1; } } }
Symbol 152 MovieClip Frame 6
if (this.hitTest(_root.car)) { if (_root.patients < 2) { _root.callsattended = _root.callsattended + 1; _root.lastonscenetime = timecount; _root.car.outstandingcalls = _root.car.outstandingcalls - 1; _root.outstandingcalls = _root.car.outstandingcalls; _root.patients = _root.patients + 1; _root.car.speed = 0; _root.car.mySiren.stop("siren"); _root.car.siren = 0; removeMovieClip(this); if (_root.car.doorplayed != 1) { myDoor = new Sound(); myDoor.attachSound("door"); myDoor.start(0, 1); _root.car.doorplayed = 1; } } }
Symbol 152 MovieClip Frame 10
if (this.hitTest(_root.car)) { if (_root.patients < 2) { _root.callsattended = _root.callsattended + 1; _root.lastonscenetime = timecount; _root.car.outstandingcalls = _root.car.outstandingcalls - 1; _root.outstandingcalls = _root.car.outstandingcalls; _root.patients = _root.patients + 1; _root.car.speed = 0; _root.car.mySiren.stop("siren"); _root.car.siren = 0; removeMovieClip(this); if (_root.car.doorplayed != 1) { myDoor = new Sound(); myDoor.attachSound("door"); myDoor.start(0, 1); _root.car.doorplayed = 1; } } }
Symbol 152 MovieClip Frame 12
if (this.hitTest(_root.car)) { if (_root.patients < 2) { _root.callsattended = _root.callsattended + 1; _root.lastonscenetime = timecount; _root.car.outstandingcalls = _root.car.outstandingcalls - 1; _root.outstandingcalls = _root.car.outstandingcalls; _root.patients = _root.patients + 1; _root.car.speed = 0; _root.car.mySiren.stop("siren"); _root.car.siren = 0; removeMovieClip(this); if (_root.car.doorplayed != 1) { myDoor = new Sound(); myDoor.attachSound("door"); myDoor.start(0, 1); _root.car.doorplayed = 1; } } }
Symbol 152 MovieClip Frame 15
if (this.hitTest(_root.car)) { if (_root.patients < 2) { _root.callsattended = _root.callsattended + 1; _root.lastonscenetime = timecount; _root.car.outstandingcalls = _root.car.outstandingcalls - 1; _root.outstandingcalls = _root.car.outstandingcalls; _root.patients = _root.patients + 1; _root.car.speed = 0; _root.car.mySiren.stop("siren"); _root.car.siren = 0; removeMovieClip(this); if (_root.car.doorplayed != 1) { myDoor = new Sound(); myDoor.attachSound("door"); myDoor.start(0, 1); _root.car.doorplayed = 1; } } }
Symbol 152 MovieClip Frame 18
if (this.hitTest(_root.car)) { if (_root.patients < 2) { _root.callsattended = _root.callsattended + 1; _root.lastonscenetime = timecount; _root.car.outstandingcalls = _root.car.outstandingcalls - 1; _root.outstandingcalls = _root.car.outstandingcalls; _root.patients = _root.patients + 1; _root.car.speed = 0; _root.car.mySiren.stop("siren"); _root.car.siren = 0; removeMovieClip(this); if (_root.car.doorplayed != 1) { myDoor = new Sound(); myDoor.attachSound("door"); myDoor.start(0, 1); _root.car.doorplayed = 1; } } }
Symbol 152 MovieClip Frame 21
var timecount; timecount = timecount + 0.5; if (timecount >= 7) { timecount = 0; } if (this.hitTest(_root.car)) { if (_root.patients < 2) { _root.callsattended = _root.callsattended + 1; _root.lastonscenetime = timecount; _root.car.outstandingcalls = _root.car.outstandingcalls - 1; _root.outstandingcalls = _root.car.outstandingcalls; _root.patients = _root.patients + 1; _root.car.speed = 0; _root.car.mySiren.stop("siren"); _root.car.siren = 0; removeMovieClip(this); if (_root.car.doorplayed != 1) { myDoor = new Sound(); myDoor.attachSound("door"); myDoor.start(0, 1); _root.car.doorplayed = 1; } } } if ((_root.gameover = 1)) { } gotoAndPlay (2);
Symbol 175 Button
on (release) { var url = "http://www.multimedian.co.uk/manicmedic/savehighscore.php?nocache"; url1 = url1 + random(65000); myHighscoreData = new LoadVars(); myHighscoreData.score = score; myHighscoreData.playername = playername; myHighscoreData.playercomment = playercomment; myDate = new Date(); dateadded = myDate.getDate(); myHighscoreData.dateadded = dateadded; myHighscoreData.sendAndLoad("http://www.multimedian.co.uk/manicmedic/savehighscore.php", myHighscoreData, "POST"); gotoAndStop (39); }
Symbol 198 Button
on (release) { gotoAndStop (15); }
Symbol 203 MovieClip Frame 7
gotoAndPlay (1);

Library Items

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

Instance Names

"road"Frame 7Symbol 88 MovieClip
"hospitaldropzone"Frame 7Symbol 90 MovieClip
"traffic1"Frame 7Symbol 94 MovieClip
"traffic2"Frame 7Symbol 98 MovieClip
"traffic3"Frame 7Symbol 102 MovieClip
"traffic4"Frame 7Symbol 106 MovieClip
"traffic5"Frame 7Symbol 110 MovieClip
"traffic6"Frame 7Symbol 114 MovieClip
"crashometer"Frame 7Symbol 25 MovieClip [crashometerscale]
"car"Frame 7Symbol 45 MovieClip
"totalcrashesbox"Frame 7Symbol 120 EditableText
"callsattendedbox"Frame 7Symbol 125 EditableText
"lastresponsetime"Frame 7Symbol 127 EditableText
"callsattendedbox"Frame 7Symbol 129 EditableText
"outstandingcalls"Frame 7Symbol 131 EditableText
"patients"Frame 7Symbol 133 EditableText
"drivingtime"Frame 7Symbol 135 EditableText
"crashometer"Frame 20Symbol 25 MovieClip [crashometerscale]
"drivingtime"Frame 20Symbol 160 EditableText
"callsattendedbox"Frame 20Symbol 161 EditableText
"totalcrashesbox"Frame 20Symbol 176 EditableText
"callsattendedbox"Frame 20Symbol 181 EditableText
"lastresponsetime"Frame 20Symbol 182 EditableText
"callsattendedbox"Frame 20Symbol 184 EditableText
"outstandingcalls"Frame 20Symbol 186 EditableText
"patients"Frame 20Symbol 188 EditableText
"drivingtime"Frame 20Symbol 190 EditableText
"playerscore"Frame 21Symbol 193 EditableText
"drivingtime"Frame 21Symbol 194 EditableText
"callsattendedbox"Frame 21Symbol 195 EditableText
"car1"Symbol 94 MovieClip Frame 1Symbol 93 MovieClip
"car1"Symbol 94 MovieClip Frame 100Symbol 93 MovieClip
"car1"Symbol 98 MovieClip Frame 1Symbol 97 MovieClip
"car1"Symbol 98 MovieClip Frame 15Symbol 97 MovieClip
"car1"Symbol 102 MovieClip Frame 1Symbol 101 MovieClip
"car1"Symbol 102 MovieClip Frame 15Symbol 101 MovieClip
"car1"Symbol 106 MovieClip Frame 1Symbol 105 MovieClip
"car1"Symbol 106 MovieClip Frame 32Symbol 105 MovieClip
"car1"Symbol 110 MovieClip Frame 1Symbol 109 MovieClip
"car1"Symbol 110 MovieClip Frame 6Symbol 109 MovieClip
"car1"Symbol 110 MovieClip Frame 156Symbol 109 MovieClip
"car1"Symbol 114 MovieClip Frame 1Symbol 113 MovieClip
"car1"Symbol 114 MovieClip Frame 10Symbol 113 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "screech"
ExportAssets (56)Timeline Frame 1Symbol 2 as "door"
ExportAssets (56)Timeline Frame 1Symbol 3 as "crash"
ExportAssets (56)Timeline Frame 1Symbol 4 as "fired"
ExportAssets (56)Timeline Frame 1Symbol 5 as "theme_casualty"
ExportAssets (56)Timeline Frame 1Symbol 6 as "siren"
ExportAssets (56)Timeline Frame 1Symbol 10 as "block6"
ExportAssets (56)Timeline Frame 1Symbol 11 as "block"
ExportAssets (56)Timeline Frame 1Symbol 13 as "crashometer_mask"
ExportAssets (56)Timeline Frame 1Symbol 23 as "scene"
ExportAssets (56)Timeline Frame 1Symbol 25 as "crashometerscale"
ExportAssets (56)Timeline Frame 1Symbol 27 as "block4"
ExportAssets (56)Timeline Frame 1Symbol 29 as "block2"
ExportAssets (56)Timeline Frame 1Symbol 32 as "block5"
ExportAssets (56)Timeline Frame 1Symbol 34 as "block3"
ExportAssets (56)Timeline Frame 1Symbol 37 as "block1"
ExportAssets (56)Timeline Frame 6Symbol 6 as "siren"
ExportAssets (56)Timeline Frame 7Symbol 37 as "block1"
ExportAssets (56)Timeline Frame 7Symbol 34 as "block3"
ExportAssets (56)Timeline Frame 7Symbol 32 as "block5"
ExportAssets (56)Timeline Frame 7Symbol 29 as "block2"
ExportAssets (56)Timeline Frame 7Symbol 34 as "block3"
ExportAssets (56)Timeline Frame 7Symbol 34 as "block3"
ExportAssets (56)Timeline Frame 7Symbol 27 as "block4"
ExportAssets (56)Timeline Frame 7Symbol 27 as "block4"
ExportAssets (56)Timeline Frame 7Symbol 37 as "block1"
ExportAssets (56)Timeline Frame 7Symbol 37 as "block1"
ExportAssets (56)Timeline Frame 7Symbol 29 as "block2"
ExportAssets (56)Timeline Frame 7Symbol 32 as "block5"
ExportAssets (56)Timeline Frame 7Symbol 32 as "block5"
ExportAssets (56)Timeline Frame 7Symbol 34 as "block3"
ExportAssets (56)Timeline Frame 7Symbol 29 as "block2"
ExportAssets (56)Timeline Frame 7Symbol 37 as "block1"
ExportAssets (56)Timeline Frame 7Symbol 37 as "block1"
ExportAssets (56)Timeline Frame 7Symbol 34 as "block3"
ExportAssets (56)Timeline Frame 7Symbol 34 as "block3"
ExportAssets (56)Timeline Frame 7Symbol 29 as "block2"
ExportAssets (56)Timeline Frame 7Symbol 27 as "block4"
ExportAssets (56)Timeline Frame 7Symbol 27 as "block4"
ExportAssets (56)Timeline Frame 7Symbol 27 as "block4"
ExportAssets (56)Timeline Frame 7Symbol 27 as "block4"
ExportAssets (56)Timeline Frame 7Symbol 37 as "block1"
ExportAssets (56)Timeline Frame 7Symbol 37 as "block1"
ExportAssets (56)Timeline Frame 7Symbol 27 as "block4"
ExportAssets (56)Timeline Frame 7Symbol 29 as "block2"
ExportAssets (56)Timeline Frame 7Symbol 29 as "block2"
ExportAssets (56)Timeline Frame 7Symbol 29 as "block2"
ExportAssets (56)Timeline Frame 7Symbol 34 as "block3"
ExportAssets (56)Timeline Frame 7Symbol 32 as "block5"
ExportAssets (56)Timeline Frame 7Symbol 37 as "block1"
ExportAssets (56)Timeline Frame 7Symbol 32 as "block5"
ExportAssets (56)Timeline Frame 7Symbol 37 as "block1"
ExportAssets (56)Timeline Frame 7Symbol 29 as "block2"
ExportAssets (56)Timeline Frame 7Symbol 34 as "block3"
ExportAssets (56)Timeline Frame 7Symbol 27 as "block4"
ExportAssets (56)Timeline Frame 7Symbol 32 as "block5"
ExportAssets (56)Timeline Frame 7Symbol 37 as "block1"
ExportAssets (56)Timeline Frame 7Symbol 29 as "block2"
ExportAssets (56)Timeline Frame 7Symbol 29 as "block2"
ExportAssets (56)Timeline Frame 7Symbol 32 as "block5"
ExportAssets (56)Timeline Frame 7Symbol 25 as "crashometerscale"
ExportAssets (56)Timeline Frame 7Symbol 5 as "theme_casualty"
ExportAssets (56)Timeline Frame 8Symbol 25 as "crashometerscale"
ExportAssets (56)Timeline Frame 9Symbol 25 as "crashometerscale"
ExportAssets (56)Timeline Frame 10Symbol 25 as "crashometerscale"
ExportAssets (56)Timeline Frame 10Symbol 4 as "fired"
ExportAssets (56)Timeline Frame 11Symbol 25 as "crashometerscale"
ExportAssets (56)Timeline Frame 12Symbol 25 as "crashometerscale"
ExportAssets (56)Timeline Frame 13Symbol 25 as "crashometerscale"
ExportAssets (56)Timeline Frame 14Symbol 25 as "crashometerscale"
ExportAssets (56)Timeline Frame 20Symbol 25 as "crashometerscale"
ExportAssets (56)Timeline Frame 21Symbol 25 as "crashometerscale"
ExportAssets (56)Timeline Frame 21Symbol 4 as "fired"
ExportAssets (56)Timeline Frame 22Symbol 25 as "crashometerscale"

Labels

"crash"Symbol 93 MovieClip Frame 2
"crash"Symbol 97 MovieClip Frame 2
"crash"Symbol 101 MovieClip Frame 2
"crash"Symbol 105 MovieClip Frame 2
"crash"Symbol 109 MovieClip Frame 2
"crash"Symbol 113 MovieClip Frame 2

Dynamic Text Variables

timecountSymbol 18 EditableText"7"
timecountSymbol 22 EditableText"7"
sStatusSymbol 47 EditableText""
sStatusSymbol 48 EditableText""
_root.damageSymbol 120 EditableText""
callsattendedSymbol 125 EditableText""
lastonscenetimeSymbol 127 EditableText""
callstakenSymbol 129 EditableText""
outstandingcallsSymbol 131 EditableText""
patientsSymbol 133 EditableText""
_root.totaltimeSymbol 135 EditableText""
timecountSymbol 150 EditableText"7"
timecountSymbol 151 EditableText"7"
scoreSymbol 159 EditableText""
totaltimeSymbol 160 EditableText"1"
callsattendedSymbol 161 EditableText"1"
playernameSymbol 171 EditableText""
playercommentSymbol 172 EditableText""
_root.damageSymbol 176 EditableText""
callsattendedSymbol 181 EditableText""
lastonscenetimeSymbol 182 EditableText""
callstakenSymbol 184 EditableText""
outstandingcallsSymbol 186 EditableText""
patientsSymbol 188 EditableText""
totaltimeSymbol 190 EditableText""
totaltimeSymbol 194 EditableText"1"
callsattendedSymbol 195 EditableText"1"
playername3Symbol 205 EditableText""
playercomment3Symbol 207 EditableText""
dateadded3Symbol 208 EditableText""
playername4Symbol 209 EditableText""
playercomment4Symbol 211 EditableText""
dateadded4Symbol 212 EditableText""
playername6Symbol 213 EditableText""
playercomment6Symbol 215 EditableText""
playername7Symbol 216 EditableText""
playercomment7Symbol 218 EditableText""
dateadded7Symbol 219 EditableText""
dateadded6Symbol 220 EditableText""
playername8Symbol 221 EditableText""
playercomment8Symbol 223 EditableText""
dateadded8Symbol 224 EditableText""
playername9Symbol 225 EditableText""
playercomment9Symbol 227 EditableText""
dateadded9Symbol 228 EditableText""
playername5Symbol 229 EditableText""
playercomment5Symbol 231 EditableText""
dateadded5Symbol 232 EditableText""
playername2Symbol 233 EditableText""
playercomment2Symbol 235 EditableText""
dateadded2Symbol 236 EditableText""
playername1Symbol 237 EditableText""
playercomment1Symbol 239 EditableText""
dateadded1Symbol 240 EditableText""
playername10Symbol 241 EditableText""
playercomment10Symbol 243 EditableText""
dateadded10Symbol 244 EditableText""
score3Symbol 245 EditableText""
score4Symbol 246 EditableText""
score6Symbol 247 EditableText""
score7Symbol 248 EditableText""
score8Symbol 249 EditableText""
score9Symbol 250 EditableText""
score5Symbol 251 EditableText""
score2Symbol 252 EditableText""
score1Symbol 253 EditableText""
score10Symbol 254 EditableText""




http://swfchan.com/5/23893/info.shtml
Created: 25/5 -2019 19:45:19 Last modified: 25/5 -2019 19:45:19 Server time: 10/05 -2024 17:45:13