Frame 1
ifFrameLoaded (27) {
gotoAndStop (16);
}
Frame 15
gotoAndPlay (1);
Frame 16
stop();
Frame 17
stop();
Frame 19
play();
Frame 25
stop();
Symbol 10 Button
on (press, keyPress "<Enter>") {
nextFrame();
}
Symbol 16 Button
on (press) {
nextFrame();
}
Symbol 35 MovieClip Frame 1
if (../:dir eq "left") {
if ("50" < getProperty("/scorpian", _x)) {
setProperty("/scorpian", _x , getProperty("/scorpian", _x) - "10");
}
} else if (../:dir eq "right") {
if (getProperty("/scorpian", _x) < getProperty("/ryu", _x)) {
setProperty("/scorpian", _x , getProperty("/scorpian", _x) + "15");
}
}
Symbol 35 MovieClip Frame 2
call("move");
Symbol 35 MovieClip Frame 3
call("move");
Symbol 35 MovieClip Frame 4
tellTarget ("/scorpian") {
gotoAndPlay ("stand");
}
Symbol 46 MovieClip Frame 5
gotoAndPlay (1);
Symbol 46 MovieClip Frame 6
stop();
Symbol 46 MovieClip Frame 8
gotoAndPlay (1);
Symbol 46 MovieClip Frame 9
gotoAndPlay (1);
Symbol 46 MovieClip Frame 10
obj1_hwidth = getProperty("/Scorpian", _width) / "2";
obj1_hheight = getProperty("/Scorpian", _height) / "2";
obj2_hwidth = getProperty("/ryu", _width) / "2";
obj2_hheight = getProperty("/ryu", _height) / "2";
obj1_x1 = getProperty("/Scorpian", _x) - obj1_hwidth;
obj1_x2 = getProperty("/Scorpian", _x) + obj1_hwidth;
obj1_y1 = getProperty("/Scorpian", _y) - obj1_hheight;
obj1_y2 = getProperty("/Scorpian", _y) + obj1_hheight;
obj2_x1 = getProperty("/ryu", _x) - obj2_hwidth;
obj2_x2 = getProperty("/ryu", _x) + obj2_hwidth;
obj2_y1 = getProperty("/ryu", _y) - obj2_hheight;
obj2_y2 = getProperty("/ryu", _y) + obj2_hheight;
if ((obj1_x2 >= obj2_x1) and (obj2_x1 >= obj1_x1)) {
left_hit = "1";
}
if ((obj2_y1 >= obj1_y1) and (obj1_y2 >= obj2_y1)) {
top_hit = "1";
}
if ((obj1_x2 >= obj2_x2) and (obj2_x2 >= obj1_x1)) {
right_hit = "1";
}
if ((obj2_y2 >= obj1_y1) and (obj1_y2 >= obj2_y2)) {
bottom_hit = "1";
}
if (((((left_hit == "1") and (top_hit == "1")) or ((right_hit == "1") and (top_hit == "1"))) or ((left_hit == "1") and (bottom_hit == "1"))) or ((right_hit == "1") and (bottom_hit == "1"))) {
tellTarget ("/ryu") {
gotoAndPlay ("hit");
};
}
top_hit = "0";
left_hit = "0";
right_hit = "0";
bottom_hit = "0";
Symbol 46 MovieClip Frame 16
gotoAndPlay (1);
Symbol 46 MovieClip Frame 17
obj1_hwidth = getProperty("/scorpian", _width) / "2";
obj1_hheight = getProperty("/scorpian", _height) / "2";
obj2_hwidth = getProperty("/ryu", _width) / "2";
obj2_hheight = getProperty("/ryu", _height) / "2";
obj1_x1 = getProperty("/scorpian", _x) - obj1_hwidth;
obj1_x2 = getProperty("/scorpian", _x) + obj1_hwidth;
obj1_y1 = getProperty("/scorpian", _y) - obj1_hheight;
obj1_y2 = getProperty("/scorpian", _y) + obj1_hheight;
obj2_x1 = getProperty("/ryu", _x) - obj2_hwidth;
obj2_x2 = getProperty("/ryu", _x) + obj2_hwidth;
obj2_y1 = getProperty("/ryu", _y) - obj2_hheight;
obj2_y2 = getProperty("/ryu", _y) + obj2_hheight;
if ((obj1_x2 >= obj2_x1) and (obj2_x1 >= obj1_x1)) {
left_hit = "1";
}
if ((obj2_y1 >= obj1_y1) and (obj1_y2 >= obj2_y1)) {
top_hit = "1";
}
if ((obj1_x2 >= obj2_x2) and (obj2_x2 >= obj1_x1)) {
right_hit = "1";
}
if ((obj2_y2 >= obj1_y1) and (obj1_y2 >= obj2_y2)) {
bottom_hit = "1";
}
if (((((left_hit == "1") and (top_hit == "1")) or ((right_hit == "1") and (top_hit == "1"))) or ((left_hit == "1") and (bottom_hit == "1"))) or ((right_hit == "1") and (bottom_hit == "1"))) {
tellTarget ("/scorpian") {
gotoAndPlay ("hit");
};
}
top_hit = "0";
left_hit = "0";
right_hit = "0";
bottom_hit = "0";
Symbol 46 MovieClip Frame 23
gotoAndPlay (1);
Symbol 46 MovieClip Frame 26
tellTarget ("/1health") {
nextFrame();
}
Symbol 46 MovieClip Frame 30
gotoAndPlay (1);
Symbol 46 MovieClip Frame 55
tellTarget ("/") {
gotoAndStop ("rwin");
}
Symbol 49 Button
on (keyPress "f") {
Set("scorpian:dir", "right");
tellTarget ("/scorpian") {
gotoAndStop ("run");
}
}
on (keyPress "d") {
Set("scorpian:dir", "left");
tellTarget ("/scorpian") {
gotoAndStop ("run");
}
}
Symbol 51 Button
on (keyPress "<Right>") {
Set("ryu:dir", "right2");
tellTarget ("/ryu") {
gotoAndStop ("run");
}
}
on (keyPress "<Left>") {
Set("ryu:dir", "left2");
tellTarget ("/ryu") {
gotoAndStop ("run");
}
}
Symbol 56 MovieClip Frame 1
if (../:dir eq "left2") {
if (getProperty("/Scorpian", _x) < getProperty("/ryu", _x)) {
setProperty("/ryu", _x , getProperty("/ryu", _x) - "15");
}
} else if (../:dir eq "right2") {
if (getProperty("/ryu", _x) < "450") {
setProperty("/ryu", _x , getProperty("/ryu", _x) + "10");
}
}
Symbol 56 MovieClip Frame 2
call("move");
Symbol 56 MovieClip Frame 3
call("move");
Symbol 56 MovieClip Frame 4
call("move");
Symbol 56 MovieClip Frame 5
call("move");
Symbol 56 MovieClip Frame 6
gotoAndPlay (1);
Symbol 65 MovieClip Frame 10
gotoAndPlay (1);
Symbol 65 MovieClip Frame 11
stop();
Symbol 65 MovieClip Frame 13
obj1_hwidth = getProperty("/ryu", _width) / "2";
obj1_hheight = getProperty("/ryu", _height) / "2";
obj2_hwidth = getProperty("/scorpian", _width) / "2";
obj2_hheight = getProperty("/scorpian", _height) / "2";
obj1_x1 = getProperty("/ryu", _x) - obj1_hwidth;
obj1_x2 = getProperty("/ryu", _x) + obj1_hwidth;
obj1_y1 = getProperty("/ryu", _y) - obj1_hheight;
obj1_y2 = getProperty("/ryu", _y) + obj1_hheight;
obj2_x1 = getProperty("/scorpian", _x) - obj2_hwidth;
obj2_x2 = getProperty("/scorpian", _x) + obj2_hwidth;
obj2_y1 = getProperty("/scorpian", _y) - obj2_hheight;
obj2_y2 = getProperty("/scorpian", _y) + obj2_hheight;
if ((obj1_x2 >= obj2_x1) and (obj2_x1 >= obj1_x1)) {
left_hit = "1";
}
if ((obj2_y1 >= obj1_y1) and (obj1_y2 >= obj2_y1)) {
top_hit = "1";
}
if ((obj1_x2 >= obj2_x2) and (obj2_x2 >= obj1_x1)) {
right_hit = "1";
}
if ((obj2_y2 >= obj1_y1) and (obj1_y2 >= obj2_y2)) {
bottom_hit = "1";
}
if (((((left_hit == "1") and (top_hit == "1")) or ((right_hit == "1") and (top_hit == "1"))) or ((left_hit == "1") and (bottom_hit == "1"))) or ((right_hit == "1") and (bottom_hit == "1"))) {
tellTarget ("/scorpian") {
gotoAndPlay ("hit");
};
}
top_hit = "0";
left_hit = "0";
right_hit = "0";
bottom_hit = "0";
Symbol 65 MovieClip Frame 19
gotoAndPlay (1);
Symbol 65 MovieClip Frame 20
obj1_hwidth = getProperty("/ryu", _width) / "2";
obj1_hheight = getProperty("/ryu", _height) / "2";
obj2_hwidth = getProperty("/scorpian", _width) / "2";
obj2_hheight = getProperty("/scorpian", _height) / "2";
obj1_x1 = getProperty("/ryu", _x) - obj1_hwidth;
obj1_x2 = getProperty("/ryu", _x) + obj1_hwidth;
obj1_y1 = getProperty("/ryu", _y) - obj1_hheight;
obj1_y2 = getProperty("/ryu", _y) + obj1_hheight;
obj2_x1 = getProperty("/scorpian", _x) - obj2_hwidth;
obj2_x2 = getProperty("/scorpian", _x) + obj2_hwidth;
obj2_y1 = getProperty("/scorpian", _y) - obj2_hheight;
obj2_y2 = getProperty("/scorpian", _y) + obj2_hheight;
if ((obj1_x2 >= obj2_x1) and (obj2_x1 >= obj1_x1)) {
left_hit = "1";
}
if ((obj2_y1 >= obj1_y1) and (obj1_y2 >= obj2_y1)) {
top_hit = "1";
}
if ((obj1_x2 >= obj2_x2) and (obj2_x2 >= obj1_x1)) {
right_hit = "1";
}
if ((obj2_y2 >= obj1_y1) and (obj1_y2 >= obj2_y2)) {
bottom_hit = "1";
}
if (((((left_hit == "1") and (top_hit == "1")) or ((right_hit == "1") and (top_hit == "1"))) or ((left_hit == "1") and (bottom_hit == "1"))) or ((right_hit == "1") and (bottom_hit == "1"))) {
tellTarget ("/scorpian") {
gotoAndPlay ("hit");
};
}
top_hit = "0";
left_hit = "0";
right_hit = "0";
bottom_hit = "0";
Symbol 65 MovieClip Frame 25
gotoAndPlay (1);
Symbol 65 MovieClip Frame 30
tellTarget ("/2health") {
nextFrame();
}
Symbol 65 MovieClip Frame 35
gotoAndPlay (1);
Symbol 65 MovieClip Frame 62
tellTarget ("/") {
gotoAndStop ("swin");
}
Symbol 67 Button
on (keyPress "a") {
play();
tellTarget ("/scorpian") {
gotoAndPlay ("punch");
}
}
Symbol 68 MovieClip Frame 1
stop();
Symbol 68 MovieClip Frame 9
gotoAndStop (1);
Symbol 70 Button
on (keyPress "l") {
play();
tellTarget ("/ryu") {
gotoAndPlay ("kick");
}
}
Symbol 71 MovieClip Frame 1
stop();
Symbol 71 MovieClip Frame 10
gotoAndStop (1);
Symbol 76 MovieClip Frame 1
stop();
Symbol 76 MovieClip Frame 2
stop();
Symbol 76 MovieClip Frame 3
stop();
Symbol 76 MovieClip Frame 4
stop();
Symbol 76 MovieClip Frame 5
stop();
Symbol 76 MovieClip Frame 6
stop();
Symbol 76 MovieClip Frame 7
stop();
Symbol 76 MovieClip Frame 8
stopAllSounds();
play();
Symbol 76 MovieClip Frame 9
stop();
Symbol 76 MovieClip Frame 10
tellTarget ("/scorpian") {
gotoAndPlay ("die");
};
play();
tellTarget ("/winone") {
gotoAndPlay ("a");
}
Symbol 76 MovieClip Frame 30
tellTarget ("/") {
gotoAndStop ("rwin");
}
Symbol 79 MovieClip Frame 1
stop();
Symbol 79 MovieClip Frame 2
stop();
Symbol 79 MovieClip Frame 3
stop();
Symbol 79 MovieClip Frame 4
stop();
Symbol 79 MovieClip Frame 5
stop();
Symbol 79 MovieClip Frame 6
stop();
Symbol 79 MovieClip Frame 7
stop();
Symbol 79 MovieClip Frame 8
stop();
Symbol 79 MovieClip Frame 9
stop();
Symbol 79 MovieClip Frame 10
stop();
Symbol 79 MovieClip Frame 11
stop();
Symbol 79 MovieClip Frame 12
stop();
Symbol 79 MovieClip Frame 13
stop();
Symbol 79 MovieClip Frame 14
stop();
Symbol 79 MovieClip Frame 15
stop();
Symbol 79 MovieClip Frame 16
stop();
Symbol 79 MovieClip Frame 17
stop();
Symbol 79 MovieClip Frame 18
stopAllSounds();
play();
Symbol 79 MovieClip Frame 19
stop();
Symbol 79 MovieClip Frame 20
play();
tellTarget ("/ryu") {
gotoAndPlay ("die");
};
tellTarget ("/wintwo") {
gotoAndPlay ("b");
}
Symbol 79 MovieClip Frame 35
tellTarget ("/") {
gotoAndStop ("swin");
}
Symbol 81 MovieClip Frame 1
stop();
Symbol 81 MovieClip Frame 2
play();
Symbol 81 MovieClip Frame 16
tellTarget ("/") {
gotoAndStop ("rwin");
}
Symbol 82 MovieClip Frame 1
stop();
Symbol 82 MovieClip Frame 2
play();
Symbol 82 MovieClip Frame 15
tellTarget ("/") {
gotoAndStop ("swin");
}
Symbol 86 Button
on (press) {
gotoAndStop (1);
}
Symbol 90 Button
on (press) {
getURL ("http://www.errorweb.cjb.net", "_blank");
}