Frame 1 (514 B)
if (_root._framesloaded >= _root._totalframes) {
_root.gotoAndPlay("intro");
} else {
this.framesload.gotoAndStop(Math.ceil((_root._framesloaded / _root._totalframes) * this.framesload._totalframes));
this.bytesload.gotoAndStop(Math.ceil((_root.getBytesLoaded() / _root.getBytesTotal()) * this.bytesload._totalframes));
loaded = (math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) + " ") + "%";
proc_fr = (math.round((_root._framesloaded / _root._totalframes) * 100) + " ") + "%";
}
Frame 2 (25 B)
gotoAndPlay ("preload");
Frame 25 (100 B)
txtMelding = "";
txtNaam = "";
txtAdres = "";
txtPostcode = "";
txtPlaats = "";
txtEmail = "";
Frame 26 (23 B)
gotoAndPlay ("intro");
Instance of Symbol 45 MovieClip in Frame 35 (3.5 KiB) ●
onClipEvent (load) {
daTextBox = "<FONT SIZE=\"16\" COLOR=\"#6CB21D\">Doel van het spel</FONT><br>Als leerling van de Remia BBQ-Academy is het jouw taak om de juiste bestellingen te serveren aan de bezoekers van jouw Buurt Barbecue! Als je de highscore haalt maak je iedere week weer kans op schitterende prijzen!<br><br><FONT SIZE=\"16\" COLOR=\"#6CB21D\">Wat moet ik doen?</FONT><br>Bovenin je scherm verschijnen tijdens het spel bestellingen in de bestellijst. Je moet deze bestellingen klaarmaken en zo snel mogelijk serveren (helemaal rechts).<br><br><FONT SIZE=\"16\" COLOR=\"#6CB21D\">Besturing</FONT><br>Je bestuurt het spel met de pijtjestoetsen en je muis. De pijltjestoetsen gebruik je om Onno naar links of naar rechts langs de tafel te bewegen en met je muis kan je pakken, bakken en serveren.<br><br><FONT SIZE=\"16\" COLOR=\"#6CB21D\">Handelingen</FONT><br><FONT COLOR=\"#B56B00\">Een bord maken en serveren</FONT><br> 1. Pak een bord<br> 2. Bak het vlees<br> 3. Leg de gewenste items op het bord<br> 4. Plaats het bord op de serveertafel<br> 5. Klik de voltooide bestelling uit de bestellijst weg<br><br><FONT COLOR=\"#B56B00\">Items pakken en op een bord leggen</FONT><br>Klik op het gewenste item, Onno houd dit item dan in zijn hand. Klik vervolgens op het bord waar het op moet komen.<br>Uitzondering! Als je op vlees klikt wordt deze eerst op de barbecue gelegd om te braden. Als het gaar is kan je het pas weer ban de barbcue pakken.<br><br><FONT COLOR=\"#B56B00\">Items terugleggen</FONT><br>Als je iets in je hand hebt kan je dat terugleggen door op hetzelfde item op de tafel te klikken. Dit kan niet met vlees.<br><br><FONT COLOR=\"#B56B00\">Bord serveren</FONT><br>Is een bord klaar? Klik op het te serveren bord; Onno houdt het bord nu in zijn linkerhand. Scroll met de pijltjestoetsen naar de serveerplek (helemaal rechts) en klik op de serveertafel. Klik vervolgens de zojuist gemaakte bestelling uit de bestellijst weg. Je kan nu weer snel door met het volgende bord.<br><br><FONT SIZE=\"16\" COLOR=\"#6CB21D\">De Puntentelling</FONT><br>Wanneer je een bord serveert kan je dat maximaal 40 punten opleveren. Je krijgt 20 punten als het vlees en de saus overeen komen met de bestelling. Voor elk extra item dat goed is krijg je nog eens 10 punten. Komt het vlees en de saus niet overeen met de bestelling dan levert het je geen punten op. Het bord verdwijnt dan en de bestelling blijft gewoon in de lijst staan. Je moet dan de bestelling opnieuw klaarmaken.<br><br><FONT COLOR=\"#B56B00\">Minpunten</FONT><br>Laat je vlees aanbranden dan verlies je 10 punten. Hou het vlees dus in de gaten en haal het op tijd van de barbecue. Wanneer je een item in de prullenbak gooit verlies je ook 10 punten.<br><br><FONT SIZE=\"16\" COLOR=\"#6CB21D\">Game over!</FONT><br>Het spel is afgelopen als je meer dan vijf bestellingen in je lijst hebt staan.";
scrolling = 0;
frameCounter = 1;
speedFactor = 3;
}
onClipEvent (enterFrame) {
if ((frameCounter % speedFactor) == 0) {
if ((scrolling == "up") && (daTextBox.scroll > 1)) {
daTextBox.scroll--;
} else if ((scrolling == "down") && (daTextBox.scroll < daTextBox.maxscroll)) {
daTextBox.scroll++;
}
frameCounter = 0;
}
frameCounter++;
}
Frame 36 (22 B)
gotoAndPlay ("help");
Frame 45 (8.73 KiB) ● ●
function menu_add() {
var _local1 = _root;
menuNr++;
bestelling_roepen();
attachMovie("bord", "bordmenu" add menuNr, 50 + menuNr);
_local1["bordmenu" add menuNr]._x = 44.1 + (menuNr * 85);
_local1["bordmenu" add menuNr]._y = 46;
_local1.Onno.hoofd.gotoAndStop(menuNr);
menu_genereer();
}
function bestelling_roepen() {
wie_roept = "bestelling" + random(12);
bestel = new Sound();
bestel.Attachsound(wie_roept);
bestelPlaying = false;
bestelMusicTime = 0;
bestel.start();
bestelPlaying = true;
}
function menu_genereer() {
var _local1 = _root;
Qaantal = 2;
if (afgeleverd > grensbepaling[1]) {
Qaantal = 3;
}
if (afgeleverd > grensbepaling[2]) {
Qaantal = 4;
}
menuaantal[menuNr] = Qaantal;
Qplaats = menu_lijstplaats();
if (Qaantal >= 2) {
Qitem = random(vleeslist.length);
menu[Qplaats] = vleeslist[Qitem];
_local1["bordmenu" add menuNr].attachMovie(vleeslist[Qitem], vleeslist[Qitem], 200);
Qitem = random(sauslist.length);
menu[Qplaats + 1] = sauslist[Qitem];
_local1["bordmenu" add menuNr].attachMovie(sauslist[Qitem], sauslist[Qitem], 201);
}
if (Qaantal >= 3) {
Qitem = random(vullinglist.length);
menu[Qplaats + 2] = vullinglist[Qitem];
_local1["bordmenu" add menuNr].attachMovie(vullinglist[Qitem], vullinglist[Qitem], 202);
}
if (Qaantal >= 4) {
Qitem = random(groentenlist.length);
menu[Qplaats + 3] = groentenlist[Qitem];
_local1["bordmenu" add menuNr].attachMovie(groentenlist[Qitem], groentenlist[Qitem], 203);
}
}
function menu_lijstplaats() {
Qplaats = 0;
f = 0;
while (f < menuNr) {
Qplaats = Qplaats + menuaantal[f];
f++;
}
return(Qplaats);
}
function bord_add() {
var _local1 = _root;
f = 1;
while (f < (bordactieflist.length + 1)) {
if (bordactieflist[f - 1] == -1) {
bordPak.start();
bordPakPlaying = true;
bordactieflist[f - 1] = 1;
_local1.Onno["bord" add f]._alpha = 100;
_local1.Onno["bord" add f]._y = 82.25;
_local1.Onno["button" add f]._x = -94 + (91 * (f - 1));
return;
}
f++;
}
}
function Onno_Beweging() {
if (Key.isDown(37)) {
if (serveermenu == -1) {
tafel._x = tafel._x + 33;
Onno._x = Onno._x + 11;
if (tafel._x > 0) {
tafel._x = 0.15;
Onno._x = 298.8;
}
}
}
if (Key.isDown(39)) {
if (serveermenu == -1) {
tafel._x = tafel._x - 33;
Onno._x = Onno._x - 11;
if (tafel._x < -333) {
tafel._x = -329.95;
Onno._x = 188.8;
}
}
}
}
function tijdberekenen() {
i = 0;
while (i < 10) {
seconden_tien[i]._visible = false;
seconden_een[i]._visible = false;
i++;
}
sec_een = 0;
sec_tien = 0;
sec_een = math.floor(math.abs((getTimer() - menuwachttijd) - vorigetijd) / 1000) % 10;
sec_tien = math.floor(math.abs((getTimer() - menuwachttijd) - vorigetijd) / 10000);
seconden_een[sec_een]._visible = true;
seconden_tien[sec_tien]._visible = true;
}
function score_put() {
if (score < 0) {
score = 0;
}
scoren_duizend = Math.floor(score / 1000) % 10;
scoren_honderd = Math.floor(score / 100) % 10;
scoren_tien = Math.floor(score / 10) % 10;
scoren_een = Math.floor(score / 1) % 10;
i = 0;
while (i < 10) {
score_een[i]._visible = false;
score_tien[i]._visible = false;
score_honderd[i]._visible = false;
score_duizend[i]._visible = false;
i++;
}
score_een[scoren_een]._visible = true;
score_tien[scoren_tien]._visible = true;
score_honderd[scoren_honderd]._visible = true;
score_duizend[scoren_duizend]._visible = true;
}
function IsScoreAnHiScore(thisScore) {
var _local2 = thisScore;
var _local3 = new XML(("<SCORE>" + _local2) + "</SCORE>");
var _local1 = new XML();
_local1.onLoad = onreturnXML;
_local3.sendAndLoad("hiscore.asp?tijd=" + Date.getTime(), _local1);
}
function SendHiScore() {
var streamGegevens = "";
if (((((txtNaam == "") || (txtAdres == "")) || (txtPostcode == "")) || (txtPlaats == "")) || (txtEmail == "")) {
txtMelding = "U heeft niet alle gegevens ingevuld.!";
} else {
txtMelding = "";
var _local1 = new XML("<GEGEVENS></GEGEVENS>");
var _local2;
var _local3;
_local2 = _local1.createElement("score");
_local3 = _local1.createTextNode(score);
_local2.appendChild(_local3);
_local1.firstChild.appendChild(_local2);
_local2 = _local1.createElement("hoeranr");
_local3 = _local1.createTextNode(hoeranr);
_local2.appendChild(_local3);
_local1.firstChild.appendChild(_local2);
_local2 = _local1.createElement("naam");
_local3 = _local1.createTextNode(txtNaam);
_local2.appendChild(_local3);
_local1.firstChild.appendChild(_local2);
_local2 = _local1.createElement("adres");
_local3 = _local1.createTextNode(txtAdres);
_local2.appendChild(_local3);
_local1.firstChild.appendChild(_local2);
_local2 = _local1.createElement("postcode");
_local3 = _local1.createTextNode(txtPostcode);
_local2.appendChild(_local3);
_local1.firstChild.appendChild(_local2);
_local2 = _local1.createElement("plaats");
_local3 = _local1.createTextNode(txtPlaats);
_local2.appendChild(_local3);
_local1.firstChild.appendChild(_local2);
_local2 = _local1.createElement("email");
_local3 = _local1.createTextNode(txtEmail);
_local2.appendChild(_local3);
_local1.firstChild.appendChild(_local2);
var returnXML = new XML();
returnXML.onLoad = onreturnXML;
if (sendToggle) {
sendToggle = false;
_local1.sendAndLoad("hiscore.asp", returnXML);
}
}
}
function onreturnXML() {
var _local1 = this.firstChild;
if (_local1.nodeName == "hoera") {
hoeranr = _local1.firstChild.nodeValue;
gotoAndStop ("scoreformulier");
} else {
txtScores = "";
txtNamen = "";
txtPlaatsen = "";
lijst = this.firstChild.childNodes;
i = 0;
while (i < lijst.length) {
gegevens = lijst[i].childNodes;
txtScores = txtScores + (lijst[i].attributes.score + newline);
txtNamen = txtNamen + (gegevens[0].firstChild.nodeValue + newline);
txtPlaatsen = txtPlaatsen + (gegevens[3].firstChild.nodeValue + newline);
i++;
}
gotoAndStop ("scorelijst");
}
}
attachMovie("getallen_org", "score_duizend", 100);
score_duizend._x = 70;
score_duizend._y = 83;
score_duizend._xscale = 80;
score_duizend._yscale = 80;
attachMovie("getallen_org", "score_honderd", 101);
score_honderd._x = 87;
score_honderd._y = 83;
score_honderd._xscale = 80;
score_honderd._yscale = 80;
attachMovie("getallen_org", "score_tien", 102);
score_tien._x = 104;
score_tien._y = 83;
score_tien._xscale = 80;
score_tien._yscale = 80;
attachMovie("getallen_org", "score_een", 103);
score_een._x = 121;
score_een._y = 83;
score_een._xscale = 80;
score_een._yscale = 80;
score = 0;
attachMovie("getallen_org", "seconden_tien", 104);
seconden_tien._x = 408;
seconden_tien._y = 15;
seconden_tien._xscale = 64;
seconden_tien._yscale = 64;
seconden_tien._alpha = 0;
attachMovie("getallen_org", "seconden_een", 105);
seconden_een._x = 421;
seconden_een._y = 15;
seconden_een._xscale = 64;
seconden_een._yscale = 64;
seconden_een._alpha = 0;
tijdberekenen();
afgeleverd = 0;
spelstatus = 0;
grensbepaling = [2, 3, 10];
snelheidlist = ["", "", ""];
serveermenu = -1;
menuwachttijd = 14000;
menuwachttijdeerste = 5000;
tijdaftrek = 200;
vorigetijd = getTimer();
menudoorschuiven = -1;
menudoorschuifteller = 0;
menudoorschuifbegin = -1;
rolloverbeweging = 5;
clicked = -1;
clickedstring = -1;
clickedactief = -1;
clickedactiefstring = -1;
bbqmax = 5;
bbqlist = new Array(-1, -1, -1, -1, -1, -1);
bbqtijdlist = new Array(getTimer(), 6000, 20000, getTimer(), 6000, 20000, getTimer(), 6000, 20000, getTimer(), 6000, 20000, getTimer(), 6000, 20000, getTimer(), 6000, 20000);
bordactieflist = new Array(1, -1, -1);
bord1list = new Array(-1, -1, -1, -1);
bord2list = new Array(-1, -1, -1, -1);
bord3list = new Array(-1, -1, -1, -1);
bordhand = new Array(-1, -1, -1, -1);
bordhandnr = -1;
bordserveer = new Array(-1, -1, -1, -1);
f = 1;
while (f < (bordactieflist.length + 1)) {
if (bordactieflist[f - 1] == 1) {
_root.Onno["bord" add f]._alpha = 100;
}
f++;
}
vleesBak = new Sound();
vleesBak.Attachsound("vleesBakken");
vleesBakPlaying = false;
vleesBakMusicTime = 0;
bordPak = new Sound();
bordPak.Attachsound("bordPakken");
bordPakPlaying = false;
bordPakMusicTime = 0;
menumax = 4;
menuNr = -1;
menu = new Array();
menuaantal = new Array();
f = 0;
while (f < (menumax + 1)) {
menuaantal[f] = -1;
f++;
}
vleeslist = new Array("worst", "hamburger", "sate", "kip");
sauslist = new Array("satesaus", "whiskysaus", "barbecuesaus", "knoflooksaus");
vullinglist = new Array("brood", "patat");
groentenlist = new Array("tomaat", "sla", "champions", "paprica");
score_put();
gotoAndPlay ("game");
var hoeranr = 0;
var sendToggle = true;
Frame 60 (4.85 KiB) ●
Onno_Beweging();
f = 0;
while (f < (bbqmax + 1)) {
if (bbqlist[f] != -1) {
if ((getTimer() - bbqtijdlist[1 + (f * 3)]) > bbqtijdlist[(1 + (f * 3)) - 1]) {
if ((getTimer() - (bbqtijdlist[1 + (f * 3)] + bbqtijdlist[2 + (f * 3)])) > bbqtijdlist[(1 + (f * 3)) - 1]) {
if ((getTimer() - bbqtijdlist[1 + (f * 3)]) > bbqtijdlist[(1 + (f * 3)) - 1]) {
if (_root.tafel["vlees" add f]._currentframe < 70) {
score = score - 10;
score_put();
_root.tafel["vlees" add f].gotoAndPlay("verbrand");
VleesBrand = new Sound();
VleesBrand.Attachsound("aangebakken");
VleesBrandPlaying = false;
VleesBrandMusicTime = 0;
VleesBrand.start();
VleesBrand = true;
}
}
} else if (_root.tafel["vlees" add f]._currentframe < 10) {
_root.tafel["vlees" add f].gotoAndPlay("gaar");
}
}
}
f++;
}
if (menudoorschuiven == -1) {
if (spelstatus == 1) {
if ((getTimer() - menuwachttijd) > vorigetijd) {
if (menuNr == 4) {
f = 0;
while (f < 5) {
_root["menubutton" add f]._x = -100;
f++;
}
gotoAndPlay ("game_einde");
_root.Onno.gotoAndStop("dood");
_root.Onno.item.removeMovieClip();
_root.Onno.hoofd.gotoAndStop(6);
_root.background.gotoAndPlay("weglopen");
} else if (menuwachttijd > 3000) {
menuwachttijd = menuwachttijd - tijdaftrek;
menu_add();
vorigetijd = getTimer();
if (serveermenu == 1) {
_root["menubutton" add f]._x = 44.1 + (menuNr * 85);
}
}
}
}
if (spelstatus == 0) {
if ((getTimer() - menuwachttijdeerste) > vorigetijd) {
menu_add();
vorigetijd = getTimer();
spelstatus = 1;
}
}
}
if (menudoorschuiven != -1) {
f = menudoorschuifbegin;
while (f < (menuNr + 1)) {
_root["bordmenu" add f]._x = (44.1 + ((f + 1) * 85)) - (menudoorschuifteller * 21.25);
f++;
}
menudoorschuifteller++;
if (menudoorschuifteller == 5) {
menudoorschuiven = -1;
menudoorschuifteller = 0;
menudoorschuifbegin = -1;
Qtime = getTimer();
vorigetijd = vorigetijd + (Qtime - menudoorschuiftijd);
melding._alpha = 0;
punten._alpha = 0;
minuut._alpha = 0;
seconden_tien._alpha = 0;
seconden_een._alpha = 0;
_root.Onno.hoofd.gotoAndStop(menuNr);
}
}
if (menuNr == 4) {
melding._alpha = 100;
punten._alpha = 100;
minuut._alpha = 100;
seconden_tien._alpha = 100;
seconden_een._alpha = 100;
tijdberekenen();
}
if (clicked > -1) {
if (clickedactiefid != 1) {
if ((clicked > 4) && (clicked < 15)) {
item.removeMovieClip();
if ((clicked > 6) && (clicked < 11)) {
Onno.attachMovie(clickedstring add "_pot", "item", 300);
} else {
Onno.attachMovie(clickedstring, "item", 300);
}
}
}
if ((clicked > 0) && (clicked < 5)) {
Qnummer = -1;
f = 0;
while (f < (bbqmax + 1)) {
if (bbqlist[f] == -1) {
Qnummer = f;
break;
}
f++;
}
if (Qnummer != -1) {
bbqlist[Qnummer] = clickedstring;
vleesBak.start();
vleesBakPlaying = true;
_root.tafel.attachMovie("bbq_" add bbqlist[Qnummer], "vlees" add Qnummer, 250 - Qnummer);
if (Qnummer < 3) {
_root.tafel["vlees" add Qnummer]._x = 93 + (Qnummer * 14);
_root.tafel["vlees" add Qnummer]._y = 75 - (Qnummer * 27);
Qlist = new Array(55.5, 69.7, 86);
_root.tafel["bbqbutton" add Qnummer]._x = 34 + Qlist[Qnummer];
}
if (Qnummer > 2) {
_root.tafel["vlees" add Qnummer]._x = 37 + ((Qnummer - 3) * 14);
_root.tafel["vlees" add Qnummer]._y = 75 - ((Qnummer - 3) * 27);
Qlist = new Array(-9.2, 10.3, 29.7);
_root.tafel["bbqbutton" add Qnummer]._x = 34 + Qlist[Qnummer - 3];
}
_root.tafel["vlees" add Qnummer]._xscale = 120;
_root.tafel["vlees" add Qnummer]._yscale = 120;
bbqtijdlist[(1 + (Qnummer * 3)) - 1] = getTimer();
clickedstring = -1;
clicked = -1;
}
}
if (clickedactiefid != 1) {
if ((clicked > 4) && (clicked < 7)) {
clickedactiefid = 2;
Onno.gotoAndStop("links hold");
Onno.item._x = -150;
Onno.item._y = 29;
Onno.item._xscale = 140;
Onno.item._yscale = 140;
}
if ((clicked > 6) && (clicked < 11)) {
clickedactiefid = 3;
Onno.gotoAndStop("links hold");
Onno.item._x = -113;
Onno.item._y = 8;
Onno.item._xscale = 80;
Onno.item._yscale = 80;
}
if ((clicked > 10) && (clicked < 15)) {
clickedactiefid = 4;
Onno.gotoAndStop("links hold");
Onno.item._x = -114;
Onno.item._y = 19;
Onno.item._xscale = 140;
Onno.item._yscale = 140;
}
}
if (clicked == 15) {
bord_add();
clicked = -1;
}
if (clickedactiefid != 1) {
if ((clicked > 4) && (clicked < 15)) {
clickedactief = clicked;
clickedactiefstring = clickedstring;
clicked = -1;
}
}
clicked = -1;
}
Frame 61 (22 B)
gotoAndPlay ("game");
Frame 76 (28 B)
gotoAndPlay ("game_einde");
Frame 101 (28 B)
gotoAndPlay ("scorelijst");
Symbol 43 Button (111 B)
on (press) {
scrolling = "up";
frameCounter = speedFactor;
}
on (release, releaseOutside) {
scrolling = 0;
}
Symbol 44 Button (113 B)
on (press) {
scrolling = "down";
frameCounter = speedFactor;
}
on (release, releaseOutside) {
scrolling = 0;
}
Symbol 78 MovieClip [bbq_hamburger] Frame 1 (8 B)
stop();
Symbol 78 MovieClip [bbq_hamburger] Frame 66 (18 B)
gotoAndPlay (14);
Symbol 78 MovieClip [bbq_hamburger] Frame 80 (8 B)
stop();
Symbol 85 MovieClip [bbq_kip] Frame 1 (8 B)
stop();
Symbol 85 MovieClip [bbq_kip] Frame 10 (1 B)
Symbol 85 MovieClip [bbq_kip] Frame 62 (18 B)
gotoAndPlay (14);
Symbol 85 MovieClip [bbq_kip] Frame 83 (8 B)
stop();
Symbol 93 MovieClip [bbq_sate] Frame 1 (8 B)
stop();
Symbol 93 MovieClip [bbq_sate] Frame 62 (18 B)
gotoAndPlay (15);
Symbol 93 MovieClip [bbq_sate] Frame 80 (8 B)
stop();
Symbol 100 MovieClip [bbq_worst] Frame 1 (8 B)
stop();
Symbol 100 MovieClip [bbq_worst] Frame 62 (18 B)
gotoAndPlay (16);
Symbol 100 MovieClip [bbq_worst] Frame 80 (8 B)
stop();
Symbol 166 MovieClip Frame 1 (8 B)
stop();
Symbol 289 Button (444 B)
on (rollOver) {
_root.tafel.item12._y = 66 - _root.rolloverbeweging;
}
on (rollOut) {
_root.tafel.item12._y = 66;
}
on (press) {
if (_root.clickedactiefstring == "sla") {
_root.Onno.item.removeMovieClip();
_root.Onno.gotoAndStop("normaal");
_root.clickedactief = -1;
_root.clickedactiefstring = -1;
} else if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
_root.clicked = 12;
_root.clickedstring = "sla";
}
}
Symbol 290 Button (454 B)
on (rollOver) {
_root.tafel.item11._y = 31.3 - _root.rolloverbeweging;
}
on (rollOut) {
_root.tafel.item11._y = 31.3;
}
on (press) {
if (_root.clickedactiefstring == "tomaat") {
_root.Onno.item.removeMovieClip();
_root.Onno.gotoAndStop("normaal");
_root.clickedactief = -1;
_root.clickedactiefstring = -1;
} else if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
_root.clicked = 11;
_root.clickedstring = "tomaat";
}
}
Symbol 291 Button (460 B)
on (rollOver) {
_root.tafel.item13._y = 21.5 - _root.rolloverbeweging;
}
on (rollOut) {
_root.tafel.item13._y = 21.5;
}
on (press) {
if (_root.clickedactiefstring == "champions") {
_root.Onno.item.removeMovieClip();
_root.Onno.gotoAndStop("normaal");
_root.clickedactief = -1;
_root.clickedactiefstring = -1;
} else if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
_root.clicked = 13;
_root.clickedstring = "champions";
}
}
Symbol 293 Button (456 B)
on (rollOver) {
_root.tafel.item14._y = 56.7 - _root.rolloverbeweging;
}
on (rollOut) {
_root.tafel.item14._y = 56.7;
}
on (press) {
if (_root.clickedactiefstring == "paprica") {
_root.Onno.item.removeMovieClip();
_root.Onno.gotoAndStop("normaal");
_root.clickedactief = -1;
_root.clickedactiefstring = -1;
} else if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
_root.clicked = 12;
_root.clickedstring = "paprica";
}
}
Symbol 295 Button (449 B)
on (rollOver) {
_root.tafel.item5._y = 36.4 - _root.rolloverbeweging;
}
on (rollOut) {
_root.tafel.item5._y = 36.4;
}
on (press) {
if (_root.clickedactiefstring == "brood") {
_root.Onno.item.removeMovieClip();
_root.Onno.gotoAndStop("normaal");
_root.clickedactief = -1;
_root.clickedactiefstring = -1;
} else if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
_root.clicked = 5;
_root.clickedstring = "brood";
}
}
Symbol 297 Button (235 B)
on (rollOver) {
_root.tafel.item15._y = -69.55 - _root.rolloverbeweging;
}
on (rollOut) {
_root.tafel.item15._y = -69.55;
}
on (press) {
if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
_root.clicked = 15;
}
}
Symbol 299 Button (451 B)
on (rollOver) {
_root.tafel.item6._y = 36.45 - _root.rolloverbeweging;
}
on (rollOut) {
_root.tafel.item6._y = 36.45;
}
on (press) {
if (_root.clickedactiefstring == "patat") {
_root.Onno.item.removeMovieClip();
_root.Onno.gotoAndStop("normaal");
_root.clickedactief = -1;
_root.clickedactiefstring = -1;
} else if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
_root.clicked = 6;
_root.clickedstring = "patat";
}
}
Symbol 300 Button (257 B)
on (rollOver) {
_root.tafel.item1._y = 48 - _root.rolloverbeweging;
}
on (rollOut) {
_root.tafel.item1._y = 48;
}
on (press) {
if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
_root.clicked = 1;
_root.clickedstring = "worst";
}
}
Symbol 301 Button (262 B)
on (rollOver) {
_root.tafel.item3._y = 44.45 - _root.rolloverbeweging;
}
on (rollOut) {
_root.tafel.item3._y = 44.45;
}
on (press) {
if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
_root.clicked = 3;
_root.clickedstring = "sate";
}
}
Symbol 302 Button (267 B)
on (rollOver) {
_root.tafel.item2._y = 86.65 - _root.rolloverbeweging;
}
on (rollOut) {
_root.tafel.item2._y = 86.65;
}
on (press) {
if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
_root.clicked = 2;
_root.clickedstring = "hamburger";
}
}
Symbol 303 Button (261 B)
on (rollOver) {
_root.tafel.item4._y = 82.45 - _root.rolloverbeweging;
}
on (rollOut) {
_root.tafel.item4._y = 82.45;
}
on (press) {
if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
_root.clicked = 4;
_root.clickedstring = "kip";
}
}
Symbol 304 Button (1.55 KiB) ●
on (press) {
if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
if ((_root.tafel.vlees2._currentframe > 9) && (_root.tafel.vlees2._currentframe < 70)) {
if (_root.clickedactiefid != 1) {
_root.tafel.vlees2.removeMovieClip();
_root.tafel.bbqbutton2._x = -100;
_root.Onno.gotoAndStop("servet");
_root.Onno.item.removeMovieClip();
_root.Onno.attachMovie(_root.bbqlist[2], "item", 300);
if ((_root.bbqlist[2] == "sate") || (_root.bbqlist[2] == "kip")) {
_root.Onno.item._x = -123;
_root.Onno.item._y = 40;
_root.Onno.item._rotation = _root.Onno.item._rotation + 32;
} else {
_root.Onno.item._x = -120;
_root.Onno.item._y = 38;
_root.Onno.item._rotation = _root.Onno.item._rotation + 25;
}
_root.Onno.item._xscale = 130;
_root.Onno.item._yscale = 130;
_root.clickedactiefstring = _root.bbqlist[2];
_root.bbqlist[2] = -1;
_root.clickedactief = 1;
_root.clicked = -1;
_root.clickedactiefid = 1;
}
}
if (_root.tafel.vlees2._currentframe > 69) {
_root.tafel.vlees2.removeMovieClip();
_root.tafel.bbqbutton2._x = -100;
_root.bbqlist[2] = -1;
}
}
}
on (rollOver) {
if ((_root.tafel.vlees2._currentframe > 9) && (_root.tafel.vlees2._currentframe < 70)) {
_root.tafel.vlees2._y = _root.tafel.vlees2._y - _root.rolloverbeweging;
}
}
on (rollOut) {
if ((_root.tafel.vlees2._currentframe > 9) && (_root.tafel.vlees2._currentframe < 70)) {
_root.tafel.vlees2._y = _root.tafel.vlees2._y + _root.rolloverbeweging;
}
}
Symbol 305 Button (1.55 KiB) ●
on (press) {
if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
if ((_root.tafel.vlees5._currentframe > 9) && (_root.tafel.vlees5._currentframe < 70)) {
if (_root.clickedactiefid != 1) {
_root.tafel.vlees5.removeMovieClip();
_root.tafel.bbqbutton5._x = -100;
_root.Onno.gotoAndStop("servet");
_root.Onno.item.removeMovieClip();
_root.Onno.attachMovie(_root.bbqlist[5], "item", 300);
if ((_root.bbqlist[5] == "sate") || (_root.bbqlist[5] == "kip")) {
_root.Onno.item._x = -123;
_root.Onno.item._y = 40;
_root.Onno.item._rotation = _root.Onno.item._rotation + 32;
} else {
_root.Onno.item._x = -120;
_root.Onno.item._y = 38;
_root.Onno.item._rotation = _root.Onno.item._rotation + 25;
}
_root.Onno.item._xscale = 130;
_root.Onno.item._yscale = 130;
_root.clickedactiefstring = _root.bbqlist[5];
_root.bbqlist[5] = -1;
_root.clickedactief = 1;
_root.clicked = -1;
_root.clickedactiefid = 1;
}
}
if (_root.tafel.vlees5._currentframe > 69) {
_root.tafel.vlees5.removeMovieClip();
_root.tafel.bbqbutton5._x = -100;
_root.bbqlist[5] = -1;
}
}
}
on (rollOver) {
if ((_root.tafel.vlees5._currentframe > 9) && (_root.tafel.vlees5._currentframe < 70)) {
_root.tafel.vlees5._y = _root.tafel.vlees5._y - _root.rolloverbeweging;
}
}
on (rollOut) {
if ((_root.tafel.vlees5._currentframe > 9) && (_root.tafel.vlees5._currentframe < 70)) {
_root.tafel.vlees5._y = _root.tafel.vlees5._y + _root.rolloverbeweging;
}
}
Symbol 306 Button (1.55 KiB) ●
on (press) {
if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
if ((_root.tafel.vlees1._currentframe > 9) && (_root.tafel.vlees1._currentframe < 70)) {
if (_root.clickedactiefid != 1) {
_root.tafel.vlees1.removeMovieClip();
_root.tafel.bbqbutton1._x = -100;
_root.Onno.gotoAndStop("servet");
_root.Onno.item.removeMovieClip();
_root.Onno.attachMovie(_root.bbqlist[1], "item", 300);
if ((_root.bbqlist[1] == "sate") || (_root.bbqlist[1] == "kip")) {
_root.Onno.item._x = -123;
_root.Onno.item._y = 40;
_root.Onno.item._rotation = _root.Onno.item._rotation + 32;
} else {
_root.Onno.item._x = -120;
_root.Onno.item._y = 38;
_root.Onno.item._rotation = _root.Onno.item._rotation + 25;
}
_root.Onno.item._xscale = 130;
_root.Onno.item._yscale = 130;
_root.clickedactiefstring = _root.bbqlist[1];
_root.bbqlist[1] = -1;
_root.clickedactief = 1;
_root.clicked = -1;
_root.clickedactiefid = 1;
}
}
if (_root.tafel.vlees1._currentframe > 69) {
_root.tafel.vlees1.removeMovieClip();
_root.tafel.bbqbutton1._x = -100;
_root.bbqlist[1] = -1;
}
}
}
on (rollOver) {
if ((_root.tafel.vlees1._currentframe > 9) && (_root.tafel.vlees1._currentframe < 70)) {
_root.tafel.vlees1._y = _root.tafel.vlees1._y - _root.rolloverbeweging;
}
}
on (rollOut) {
if ((_root.tafel.vlees1._currentframe > 9) && (_root.tafel.vlees1._currentframe < 70)) {
_root.tafel.vlees1._y = _root.tafel.vlees1._y + _root.rolloverbeweging;
}
}
Symbol 307 Button (1.55 KiB) ●
on (press) {
if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
if ((_root.tafel.vlees4._currentframe > 9) && (_root.tafel.vlees4._currentframe < 70)) {
if (_root.clickedactiefid != 1) {
_root.tafel.vlees4.removeMovieClip();
_root.tafel.bbqbutton4._x = -100;
_root.Onno.gotoAndStop("servet");
_root.Onno.item.removeMovieClip();
_root.Onno.attachMovie(_root.bbqlist[4], "item", 300);
if ((_root.bbqlist[4] == "sate") || (_root.bbqlist[4] == "kip")) {
_root.Onno.item._x = -123;
_root.Onno.item._y = 40;
_root.Onno.item._rotation = _root.Onno.item._rotation + 32;
} else {
_root.Onno.item._x = -120;
_root.Onno.item._y = 38;
_root.Onno.item._rotation = _root.Onno.item._rotation + 25;
}
_root.Onno.item._xscale = 130;
_root.Onno.item._yscale = 130;
_root.clickedactiefstring = _root.bbqlist[4];
_root.bbqlist[4] = -1;
_root.clickedactief = 1;
_root.clicked = -1;
_root.clickedactiefid = 1;
}
}
if (_root.tafel.vlees4._currentframe > 69) {
_root.tafel.vlees4.removeMovieClip();
_root.tafel.bbqbutton4._x = -100;
_root.bbqlist[4] = -1;
}
}
}
on (rollOver) {
if ((_root.tafel.vlees4._currentframe > 9) && (_root.tafel.vlees4._currentframe < 70)) {
_root.tafel.vlees4._y = _root.tafel.vlees4._y - _root.rolloverbeweging;
}
}
on (rollOut) {
if ((_root.tafel.vlees4._currentframe > 9) && (_root.tafel.vlees4._currentframe < 70)) {
_root.tafel.vlees4._y = _root.tafel.vlees4._y + _root.rolloverbeweging;
}
}
Symbol 308 Button (1.55 KiB) ●
on (press) {
if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
if ((_root.tafel.vlees0._currentframe > 9) && (_root.tafel.vlees0._currentframe < 70)) {
if (_root.clickedactiefid != 1) {
_root.tafel.vlees0.removeMovieClip();
_root.tafel.bbqbutton0._x = -100;
_root.Onno.gotoAndStop("servet");
_root.Onno.item.removeMovieClip();
_root.Onno.attachMovie(_root.bbqlist[0], "item", 300);
if ((_root.bbqlist[0] == "sate") || (_root.bbqlist[0] == "kip")) {
_root.Onno.item._x = -123;
_root.Onno.item._y = 40;
_root.Onno.item._rotation = _root.Onno.item._rotation + 32;
} else {
_root.Onno.item._x = -120;
_root.Onno.item._y = 38;
_root.Onno.item._rotation = _root.Onno.item._rotation + 25;
}
_root.Onno.item._xscale = 130;
_root.Onno.item._yscale = 130;
_root.clickedactiefstring = _root.bbqlist[0];
_root.bbqlist[0] = -1;
_root.clickedactief = 1;
_root.clicked = -1;
_root.clickedactiefid = 1;
}
}
if (_root.tafel.vlees0._currentframe > 69) {
_root.tafel.vlees0.removeMovieClip();
_root.tafel.bbqbutton0._x = -100;
_root.bbqlist[0] = -1;
}
}
}
on (rollOver) {
if ((_root.tafel.vlees0._currentframe > 9) && (_root.tafel.vlees0._currentframe < 70)) {
_root.tafel.vlees0._y = _root.tafel.vlees0._y - _root.rolloverbeweging;
}
}
on (rollOut) {
if ((_root.tafel.vlees0._currentframe > 9) && (_root.tafel.vlees0._currentframe < 70)) {
_root.tafel.vlees0._y = _root.tafel.vlees0._y + _root.rolloverbeweging;
}
}
Symbol 309 Button (1.55 KiB) ●
on (press) {
if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
if ((_root.tafel.vlees3._currentframe > 9) && (_root.tafel.vlees3._currentframe < 70)) {
if (_root.clickedactiefid != 1) {
_root.tafel.vlees3.removeMovieClip();
_root.tafel.bbqbutton3._x = -100;
_root.Onno.gotoAndStop("servet");
_root.Onno.item.removeMovieClip();
_root.Onno.attachMovie(_root.bbqlist[3], "item", 300);
if ((_root.bbqlist[3] == "sate") || (_root.bbqlist[3] == "kip")) {
_root.Onno.item._x = -123;
_root.Onno.item._y = 40;
_root.Onno.item._rotation = _root.Onno.item._rotation + 32;
} else {
_root.Onno.item._x = -120;
_root.Onno.item._y = 38;
_root.Onno.item._rotation = _root.Onno.item._rotation + 25;
}
_root.Onno.item._xscale = 130;
_root.Onno.item._yscale = 130;
_root.clickedactiefstring = _root.bbqlist[3];
_root.bbqlist[3] = -1;
_root.clickedactief = 1;
_root.clicked = -1;
_root.clickedactiefid = 1;
}
}
if (_root.tafel.vlees3._currentframe > 69) {
_root.tafel.vlees3.removeMovieClip();
_root.tafel.bbqbutton3._x = -100;
_root.bbqlist[3] = -1;
}
}
}
on (rollOver) {
if ((_root.tafel.vlees3._currentframe > 9) && (_root.tafel.vlees3._currentframe < 70)) {
_root.tafel.vlees3._y = _root.tafel.vlees3._y - _root.rolloverbeweging;
}
}
on (rollOut) {
if ((_root.tafel.vlees3._currentframe > 9) && (_root.tafel.vlees3._currentframe < 70)) {
_root.tafel.vlees3._y = _root.tafel.vlees3._y + _root.rolloverbeweging;
}
}
Symbol 310 Button (304 B)
on (press) {
if (_root.clickedactief > -1) {
_root.Onno.item.removeMovieClip();
_root.Onno.gotoAndStop("normaal");
_root.clickedactief = -1;
_root.clickedactiefstring = -1;
_root.clickedactiefid = -1;
_root.score = _root.score - 10;
_root.score_put();
_root.tafel.gotoAndPlay(2);
}
}
Symbol 311 Button (457 B)
on (rollOver) {
_root.tafel.item7._y = 69.85 - _root.rolloverbeweging;
}
on (rollOut) {
_root.tafel.item7._y = 69.85;
}
on (press) {
if (_root.clickedactiefstring == "satesaus") {
_root.Onno.item.removeMovieClip();
_root.Onno.gotoAndStop("normaal");
_root.clickedactief = -1;
_root.clickedactiefstring = -1;
} else if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
_root.clicked = 7;
_root.clickedstring = "satesaus";
}
}
Symbol 312 Button (459 B)
on (rollOver) {
_root.tafel.item8._y = 70.2 - _root.rolloverbeweging;
}
on (rollOut) {
_root.tafel.item8._y = 70.2;
}
on (press) {
if (_root.clickedactiefstring == "whiskysaus") {
_root.Onno.item.removeMovieClip();
_root.Onno.gotoAndStop("normaal");
_root.clickedactief = -1;
_root.clickedactiefstring = -1;
} else if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
_root.clicked = 8;
_root.clickedstring = "whiskysaus";
}
}
Symbol 313 Button (465 B)
on (rollOver) {
_root.tafel.item9._y = 70.55 - _root.rolloverbeweging;
}
on (rollOut) {
_root.tafel.item9._y = 70.55;
}
on (press) {
if (_root.clickedactiefstring == "barbecuesaus") {
_root.Onno.item.removeMovieClip();
_root.Onno.gotoAndStop("normaal");
_root.clickedactief = -1;
_root.clickedactiefstring = -1;
} else if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
_root.clicked = 9;
_root.clickedstring = "barbecuesaus";
}
}
Symbol 314 Button (468 B)
on (rollOver) {
_root.tafel.item10._y = 70.15 - _root.rolloverbeweging;
}
on (rollOut) {
_root.tafel.item10._y = 70.15;
}
on (press) {
if (_root.clickedactiefstring == "knoflooksaus") {
_root.Onno.item.removeMovieClip();
_root.Onno.gotoAndStop("normaal");
_root.clickedactief = -1;
_root.clickedactiefstring = -1;
} else if ((_root.serveermenu == -1) && (_root.bordhandnr == -1)) {
_root.clicked = 10;
_root.clickedstring = "knoflooksaus";
}
}
Symbol 315 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 195 MovieClip "serveerbutton" in Symbol 315 MovieClip Frame 1 (1.63 KiB) ●
on (press) {
if (_root.bordactieflist[3] == 1) {
_root.Onno.gotoAndStop("wijzen");
_root.Onno["bord" add _root.bordhandnr]._alpha = 0;
_root.Onno.armlinksboven._x = -400;
_root.Onno.armlinksbeneden._x = 33.45;
_root.bordactieflist[3] = 0;
_root.tafel.bordserveer._alpha = 100;
_root.bordserveer = _root.bordhand;
_root.Onno.bordhand.removeMovieClip();
f = 0;
while (f < eval (("_root.bord" add _root.bordhandnr) add "list.length")) {
switch (_root.bordhandnr) {
case 1 :
_root.Onno.bord1[_root.bord1list[f]].removeMovieClip();
break;
case 2 :
_root.Onno.bord2[_root.bord2list[f]].removeMovieClip();
break;
case 3 :
_root.Onno.bord3[_root.bord3list[f]].removeMovieClip();
}
f++;
}
f = 0;
while (f < eval (("_root.bord" add _root.bordhandnr) add "list.length")) {
switch (_root.bordhandnr) {
case 1 :
_root.bordactieflist[0] = -1;
_root.tafel.bordserveer.attachMovie(_root.bord1list[f], _root.bord1list[f], 440 + f);
break;
case 2 :
_root.bordactieflist[1] = -1;
_root.tafel.bordserveer.attachMovie(_root.bord2list[f], _root.bord2list[f], 440 + f);
break;
case 3 :
_root.bordactieflist[2] = -1;
_root.tafel.bordserveer.attachMovie(_root.bord3list[f], _root.bord3list[f], 440 + f);
}
f++;
}
f = 0;
while (f < (_root.menuNr + 1)) {
_root["menubutton" add f]._x = 44.1 + (f * 85);
f++;
}
_root.Onno["button" add _root.bordhandnr]._x = -500;
_root[("bord" add _root.bordhandnr) add "list"] = new Array(-1, -1, -1, -1);
_root.bordhandnr = -1;
_root.bordactieflist[4] = 1;
_root.serveermenu = 1;
}
}
Symbol 315 MovieClip Frame 30 (17 B)
gotoAndStop (1);
Symbol 342 Button (100 B)
on (press) {
bordPak.start();
bordPakPlaying = true;
}
on (release) {
gotoAndPlay ("game_ini");
}
Symbol 344 Button (96 B)
on (press) {
bordPak.start();
bordPakPlaying = true;
}
on (release) {
gotoAndPlay ("help");
}
Symbol 350 Button (100 B)
on (press) {
bordPak.start();
bordPakPlaying = true;
}
on (release) {
gotoAndPlay ("game_ini");
}
Symbol 357 MovieClip Frame 1 (8 B)
stop();
Symbol 357 MovieClip Frame 42 (851 B)
_root.score_duizend.removeMovieClip();
_root.score_honderd.removeMovieClip();
_root.score_tien.removeMovieClip();
_root.score_een.removeMovieClip();
_root.seconden_tien.removeMovieClip();
_root.seconden_een.removeMovieClip();
_root.Onno.item.removeMovieClip();
_root.bordmenu0.removeMovieClip();
_root.bordmenu1.removeMovieClip();
_root.bordmenu2.removeMovieClip();
_root.bordmenu3.removeMovieClip();
_root.bordmenu4.removeMovieClip();
_root.tafel.vlees0.removeMovieClip();
_root.tafel.vlees1.removeMovieClip();
_root.tafel.vlees2.removeMovieClip();
_root.tafel.vlees3.removeMovieClip();
_root.tafel.vlees4.removeMovieClip();
_root.tafel.vlees5.removeMovieClip();
_root.tafel.vlees6.removeMovieClip();
_root.Onno.bordhand.removeMovieClip();
_root.tafel.bordserveer.removeMovieClip();
_root.IsScoreAnHiScore(_root.score);
stop();
Symbol 361 Button (1.47 KiB) ●
on (press) {
if (_root.serveermenu == -1) {
if (_root.bordhandnr == 2) {
bord2._alpha = 100;
_root.Onno.armlinksboven._x = -400;
_root.Onno.armlinksbeneden._x = 33.45;
_root.Onno.bordhand.removeMovieClip();
_root.bordhand = new Array(-1, -1, -1, -1);
_root.bordactieflist[3] = -1;
_root.bordhandnr = -1;
} else if (_root.bordhandnr == -1) {
if (_root.clickedactief > -1) {
if (_root.bord2list[_root.clickedactiefid - 1] == -1) {
_root.Onno.bord2.attachMovie(_root.clickedactiefstring, _root.clickedactiefstring, 410 + _root.clickedactief);
_root.bord2list[_root.clickedactiefid - 1] = _root.clickedactiefstring;
_root.Onno.item.removeMovieClip();
_root.Onno.gotoAndStop("normaal");
_root.clickedactief = -1;
_root.clickedactiefstring = -1;
_root.clickedactiefid = -1;
}
} else {
bord2._alpha = 50;
_root.Onno.attachMovie("bord", "bordhand", 430);
f = 0;
while (f < _root.bord2list.length) {
_root.Onno.bordhand.attachMovie(_root.bord2list[f], _root.bord2list[f], 430 + f);
f++;
}
_root.bordhand = _root.bord2list;
armlinksboven._x = 81;
armlinksbeneden._x = -400;
bordhand._x = 113;
bordhand._y = 13;
_root.bordhandnr = 2;
_root.bordactieflist[3] = 1;
}
}
}
}
on (rollOver) {
if (_root.bordhandnr != 2) {
bord2._y = bord2._y - _root.rolloverbeweging;
}
}
on (rollOut) {
if (_root.bordhandnr != 2) {
bord2._y = bord2._y + _root.rolloverbeweging;
}
}
Symbol 362 Button (1.47 KiB) ●
on (press) {
if (_root.serveermenu == -1) {
if (_root.bordhandnr == 1) {
bord1._alpha = 100;
_root.Onno.armlinksboven._x = -400;
_root.Onno.armlinksbeneden._x = 33.45;
_root.Onno.bordhand.removeMovieClip();
_root.bordhand = new Array(-1, -1, -1, -1);
_root.bordactieflist[3] = -1;
_root.bordhandnr = -1;
} else if (_root.bordhandnr == -1) {
if (_root.clickedactief > -1) {
if (_root.bord1list[_root.clickedactiefid - 1] == -1) {
_root.Onno.bord1.attachMovie(_root.clickedactiefstring, _root.clickedactiefstring, 400 + _root.clickedactief);
_root.bord1list[_root.clickedactiefid - 1] = _root.clickedactiefstring;
_root.Onno.item.removeMovieClip();
_root.Onno.gotoAndStop("normaal");
_root.clickedactief = -1;
_root.clickedactiefstring = -1;
_root.clickedactiefid = -1;
}
} else {
bord1._alpha = 50;
_root.Onno.attachMovie("bord", "bordhand", 430);
f = 0;
while (f < _root.bord1list.length) {
_root.Onno.bordhand.attachMovie(_root.bord1list[f], _root.bord1list[f], 430 + f);
f++;
}
_root.bordhand = _root.bord1list;
armlinksboven._x = 81;
armlinksbeneden._x = -400;
bordhand._x = 113;
bordhand._y = 13;
_root.bordhandnr = 1;
_root.bordactieflist[3] = 1;
}
}
}
}
on (rollOver) {
if (_root.bordhandnr != 1) {
bord1._y = bord1._y - _root.rolloverbeweging;
}
}
on (rollOut) {
if (_root.bordhandnr != 1) {
bord1._y = bord1._y + _root.rolloverbeweging;
}
}
Symbol 363 Button (1.47 KiB) ●
on (press) {
if (_root.serveermenu == -1) {
if (_root.bordhandnr == 3) {
bord3._alpha = 100;
_root.Onno.armlinksboven._x = -400;
_root.Onno.armlinksbeneden._x = 33.45;
_root.Onno.bordhand.removeMovieClip();
_root.bordhand = new Array(-1, -1, -1, -1);
_root.bordactieflist[3] = -1;
_root.bordhandnr = -1;
} else if (_root.bordhandnr == -1) {
if (_root.clickedactief > -1) {
if (_root.bord3list[_root.clickedactiefid - 1] == -1) {
_root.Onno.bord3.attachMovie(_root.clickedactiefstring, _root.clickedactiefstring, 420 + _root.clickedactief);
_root.bord3list[_root.clickedactiefid - 1] = _root.clickedactiefstring;
_root.Onno.item.removeMovieClip();
_root.Onno.gotoAndStop("normaal");
_root.clickedactief = -1;
_root.clickedactiefstring = -1;
_root.clickedactiefid = -1;
}
} else {
bord3._alpha = 50;
_root.Onno.attachMovie("bord", "bordhand", 430);
f = 0;
while (f < _root.bord3list.length) {
_root.Onno.bordhand.attachMovie(_root.bord3list[f], _root.bord3list[f], 430 + f);
f++;
}
_root.bordhand = _root.bord3list;
bordhand._x = 113;
bordhand._y = 13;
armlinksboven._x = 81;
armlinksbeneden._x = -400;
_root.bordhandnr = 3;
_root.bordactieflist[3] = 1;
}
}
}
}
on (rollOver) {
if (_root.bordhandnr != 3) {
bord3._y = bord3._y - _root.rolloverbeweging;
}
}
on (rollOut) {
if (_root.bordhandnr != 3) {
bord3._y = bord3._y + _root.rolloverbeweging;
}
}
Symbol 366 MovieClip Frame 1 (8 B)
stop();
Symbol 367 Button (1.96 KiB) ●
on (press) {
_root.tafel.bordserveer._alpha = 0;
f = 0;
while (f < _root.bordserveer.length) {
_root.tafel.bordserveer[_root.bordserveer[f]].removeMovieClip();
f++;
}
Qscore = 0;
Qbreak = -1;
Qteller = 0;
f = 0;
while (f < menuaantal[0]) {
if (Qteller == 0) {
if (menu[f] == bordserveer[0]) {
Qscore = Qscore + 10;
} else {
Qscore = 0;
Qbreak = 1;
MenuFout = new Sound();
MenuFout.Attachsound("Kok_mis");
MenuFoutPlaying = false;
MenuFoutMusicTime = 0;
MenuFout.start();
MenuFout = true;
break;
}
}
if (Qteller == 1) {
if (menu[f] == bordserveer[2]) {
Qscore = Qscore + 10;
} else {
Qscore = 0;
Qbreak = 1;
MenuFout = new Sound();
MenuFout.Attachsound("Kok_mis");
MenuFoutPlaying = false;
MenuFoutMusicTime = 0;
MenuFout.start();
MenuFout = true;
break;
}
}
if (Qteller == 2) {
if (menuaantal[0] >= 3) {
if (menu[f] == bordserveer[1]) {
Qscore = Qscore + 10;
}
}
}
if (Qteller == 3) {
if (menuaantal[0] == 4) {
if (menu[f] == bordserveer[3]) {
Qscore = Qscore + 10;
}
}
}
Qteller++;
f++;
}
_root.bordserveer = new Array(-1, -1, -1, -1);
f = 0;
while (f < 5) {
_root["menubutton" add f]._x = -100;
f++;
}
if (Qbreak == -1) {
menu.splice(0, menuaantal[0]);
f = 0;
while (f < (menuaantal.length - 1)) {
menuaantal[f] = menuaantal[f + 1];
f++;
}
menuaantal[4] = -1;
bordmenu0.removeMovieClip();
f = 1;
while (f < (menuNr + 1)) {
_root["bordmenu" add f]._name = "bordmenu" add (f - 1);
_root["bordmenu" add (f - 1)].swapDepths((50 + f) - 1);
f++;
}
menuNr = menuNr - 1;
_root.bordserveer = new Array(-1, -1, -1, -1);
menudoorschuiftijd = getTimer();
menudoorschuifbegin = 0;
menudoorschuiven = getTimer();
bordPak.start();
bordPakPlaying = true;
afgeleverd++;
score = score + Qscore;
score_put();
}
_root.serveermenu = -1;
_root.Onno.gotoAndStop("normaal");
}
Symbol 368 Button (1.95 KiB) ●
on (press) {
_root.tafel.bordserveer._alpha = 0;
f = 0;
while (f < _root.bordserveer.length) {
_root.tafel.bordserveer[_root.bordserveer[f]].removeMovieClip();
f++;
}
Qscore = 0;
Qbreak = -1;
Qteller = 0;
f = menuaantal[0];
while (f < (menuaantal[0] + menuaantal[1])) {
if (Qteller == 0) {
if (menu[f] == bordserveer[0]) {
Qscore = Qscore + 10;
} else {
Qscore = 0;
Qbreak = 1;
MenuFout = new Sound();
MenuFout.Attachsound("Kok_mis");
MenuFoutPlaying = false;
MenuFoutMusicTime = 0;
MenuFout.start();
MenuFout = true;
break;
}
}
if (Qteller == 1) {
if (menu[f] == bordserveer[2]) {
Qscore = Qscore + 10;
} else {
Qscore = 0;
Qbreak = 1;
MenuFout = new Sound();
MenuFout.Attachsound("Kok_mis");
MenuFoutPlaying = false;
MenuFoutMusicTime = 0;
MenuFout.start();
MenuFout = true;
break;
}
}
if (Qteller == 2) {
if (menuaantal[0] >= 3) {
if (menu[f] == bordserveer[1]) {
Qscore = Qscore + 10;
}
}
}
if (Qteller == 3) {
if (menuaantal[0] == 4) {
if (menu[f] == bordserveer[3]) {
Qscore = Qscore + 10;
}
}
}
Qteller++;
f++;
}
_root.bordserveer = new Array(-1, -1, -1, -1);
f = 0;
while (f < 5) {
_root["menubutton" add f]._x = -100;
f++;
}
if (Qbreak == -1) {
menu.splice(menuaantal[0], menuaantal[1]);
f = 1;
while (f < (menuaantal.length - 1)) {
menuaantal[f] = menuaantal[f + 1];
f++;
}
menuaantal[4] = -1;
bordmenu1.removeMovieClip();
f = 2;
while (f < (menuNr + 1)) {
_root["bordmenu" add f]._name = "bordmenu" add (f - 1);
_root["bordmenu" add (f - 1)].swapDepths((50 + f) - 1);
f++;
}
menuNr = menuNr - 1;
bordPak.start();
bordPakPlaying = true;
menudoorschuiftijd = getTimer();
menudoorschuifbegin = 1;
menudoorschuiven = getTimer();
afgeleverd++;
score = score + Qscore;
score_put();
}
_root.serveermenu = -1;
_root.Onno.gotoAndStop("normaal");
}
Symbol 369 Button (2 KiB) ●
on (press) {
_root.tafel.bordserveer._alpha = 0;
f = 0;
while (f < _root.bordserveer.length) {
_root.tafel.bordserveer[_root.bordserveer[f]].removeMovieClip();
f++;
}
Qscore = 0;
Qbreak = -1;
Qteller = 0;
f = menuaantal[0] + menuaantal[1];
while (f < ((menuaantal[0] + menuaantal[1]) + menuaantal[2])) {
if (Qteller == 0) {
if (menu[f] == bordserveer[0]) {
Qscore = Qscore + 10;
} else {
Qscore = 0;
Qbreak = 1;
MenuFout = new Sound();
MenuFout.Attachsound("Kok_mis");
MenuFoutPlaying = false;
MenuFoutMusicTime = 0;
MenuFout.start();
MenuFout = true;
break;
}
}
if (Qteller == 1) {
if (menu[f] == bordserveer[2]) {
Qscore = Qscore + 10;
} else {
Qscore = 0;
Qbreak = 1;
MenuFout = new Sound();
MenuFout.Attachsound("Kok_mis");
MenuFoutPlaying = false;
MenuFoutMusicTime = 0;
MenuFout.start();
MenuFout = true;
break;
}
}
if (Qteller == 2) {
if (menuaantal[0] >= 3) {
if (menu[f] == bordserveer[1]) {
Qscore = Qscore + 10;
}
}
}
if (Qteller == 3) {
if (menuaantal[0] == 4) {
if (menu[f] == bordserveer[3]) {
Qscore = Qscore + 10;
}
}
}
Qteller++;
f++;
}
_root.bordserveer = new Array(-1, -1, -1, -1);
f = 0;
while (f < 5) {
_root["menubutton" add f]._x = -100;
f++;
}
if (Qbreak == -1) {
menu.splice(menuaantal[0] + menuaantal[1], menuaantal[2]);
f = 2;
while (f < (menuaantal.length - 1)) {
menuaantal[f] = menuaantal[f + 1];
f++;
}
menuaantal[4] = -1;
bordmenu2.removeMovieClip();
f = 3;
while (f < (menuNr + 1)) {
_root["bordmenu" add f]._name = "bordmenu" add (f - 1);
_root["bordmenu" add (f - 1)].swapDepths((50 + f) - 1);
f++;
}
menuNr = menuNr - 1;
bordPak.start();
bordPakPlaying = true;
menudoorschuiftijd = getTimer();
menudoorschuifbegin = 2;
menudoorschuiven = getTimer();
afgeleverd++;
score = score + Qscore;
score_put();
}
_root.serveermenu = -1;
_root.Onno.gotoAndStop("normaal");
}
Symbol 370 Button (2.05 KiB) ●
on (press) {
_root.tafel.bordserveer._alpha = 0;
f = 0;
while (f < _root.bordserveer.length) {
_root.tafel.bordserveer[_root.bordserveer[f]].removeMovieClip();
f++;
}
Qscore = 0;
Qbreak = -1;
Qteller = 0;
f = (menuaantal[0] + menuaantal[1]) + menuaantal[2];
while (f < (((menuaantal[0] + menuaantal[1]) + menuaantal[2]) + menuaantal[3])) {
if (Qteller == 0) {
if (menu[f] == bordserveer[0]) {
Qscore = Qscore + 10;
} else {
Qscore = 0;
Qbreak = 1;
MenuFout = new Sound();
MenuFout.Attachsound("Kok_mis");
MenuFoutPlaying = false;
MenuFoutMusicTime = 0;
MenuFout.start();
MenuFout = true;
break;
}
}
if (Qteller == 1) {
if (menu[f] == bordserveer[2]) {
Qscore = Qscore + 10;
} else {
Qscore = 0;
Qbreak = 1;
MenuFout = new Sound();
MenuFout.Attachsound("Kok_mis");
MenuFoutPlaying = false;
MenuFoutMusicTime = 0;
MenuFout.start();
MenuFout = true;
break;
}
}
if (Qteller == 2) {
if (menuaantal[0] >= 3) {
if (menu[f] == bordserveer[1]) {
Qscore = Qscore + 10;
}
}
}
if (Qteller == 3) {
if (menuaantal[0] == 4) {
if (menu[f] == bordserveer[3]) {
Qscore = Qscore + 10;
}
}
}
Qteller++;
f++;
}
_root.bordserveer = new Array(-1, -1, -1, -1);
f = 0;
while (f < 5) {
_root["menubutton" add f]._x = -100;
f++;
}
if (Qbreak == -1) {
menu.splice((menuaantal[0] + menuaantal[1]) + menuaantal[2], menuaantal[3]);
f = 3;
while (f < (menuaantal.length - 1)) {
menuaantal[f] = menuaantal[f + 1];
f++;
}
menuaantal[4] = -1;
bordmenu3.removeMovieClip();
f = 4;
while (f < (menuNr + 1)) {
_root["bordmenu" add f]._name = "bordmenu" add (f - 1);
_root["bordmenu" add (f - 1)].swapDepths((50 + f) - 1);
f++;
}
menuNr = menuNr - 1;
menudoorschuiftijd = getTimer();
menudoorschuifbegin = 3;
menudoorschuiven = getTimer();
bordPak.start();
bordPakPlaying = true;
afgeleverd++;
score = score + Qscore;
score_put();
}
_root.serveermenu = -1;
_root.Onno.gotoAndStop("normaal");
}
Symbol 371 Button (1.85 KiB) ●
on (press) {
_root.tafel.bordserveer._alpha = 0;
f = 0;
while (f < _root.bordserveer.length) {
_root.tafel.bordserveer[_root.bordserveer[f]].removeMovieClip();
f++;
}
Qscore = 0;
Qbreak = -1;
Qteller = 0;
f = ((menuaantal[0] + menuaantal[1]) + menuaantal[2]) + menuaantal[3];
while (f < ((((menuaantal[0] + menuaantal[1]) + menuaantal[2]) + menuaantal[3]) + menuaantal[4])) {
if (Qteller == 0) {
if (menu[f] == bordserveer[0]) {
Qscore = Qscore + 10;
} else {
Qscore = 0;
Qbreak = 1;
MenuFout = new Sound();
MenuFout.Attachsound("Kok_mis");
MenuFoutPlaying = false;
MenuFoutMusicTime = 0;
MenuFout.start();
MenuFout = true;
break;
}
}
if (Qteller == 1) {
if (menu[f] == bordserveer[2]) {
Qscore = Qscore + 10;
} else {
Qscore = 0;
Qbreak = 1;
MenuFout = new Sound();
MenuFout.Attachsound("Kok_mis");
MenuFoutPlaying = false;
MenuFoutMusicTime = 0;
MenuFout.start();
MenuFout = true;
break;
}
}
if (Qteller == 2) {
if (menuaantal[0] >= 3) {
if (menu[f] == bordserveer[1]) {
Qscore = Qscore + 10;
}
}
}
if (Qteller == 3) {
if (menuaantal[0] == 4) {
if (menu[f] == bordserveer[3]) {
Qscore = Qscore + 10;
}
}
}
Qteller++;
f++;
}
_root.bordserveer = new Array(-1, -1, -1, -1);
f = 0;
while (f < 5) {
_root["menubutton" add f]._x = -100;
f++;
}
if (Qbreak == -1) {
menu.splice(((menuaantal[0] + menuaantal[1]) + menuaantal[2]) + menuaantal[3], menuaantal[4]);
f = 4;
while (f < (menuaantal.length - 1)) {
menuaantal[f] = menuaantal[f + 1];
f++;
}
menuaantal[4] = -1;
bordmenu4.removeMovieClip();
menuNr = menuNr - 1;
bordPak.start();
bordPakPlaying = true;
afgeleverd++;
score = score + Qscore;
score_put();
}
_root.serveermenu = -1;
_root.Onno.gotoAndStop("normaal");
}
Symbol 373 Button (201 B)
on (press) {
Splash = new Sound();
Splash.Attachsound("sausSplash");
SplashPlaying = false;
PauseMusicTime = 0;
Splash.start();
SplashPlaying = true;
}
on (release) {
gotoAndPlay ("game_ini");
}
Symbol 403 Button (190 B)
on (press) {
Splash = new Sound();
Splash.Attachsound("sausSplash");
SplashPlaying = false;
PauseMusicTime = 0;
Splash.start();
SplashPlaying = true;
}
on (release) {
SendHiScore();
}
Symbol 406 MovieClip Frame 1 (1 B)