Frame 1
stop();
_root.honeygath = 5;
_root.strength = 5;
_root.dex = 5;
_root.totalstats = 0;
_root.aclass = 0;
_root.needle = 0;
_root.healing = 0;
_root.magic = 0;
_root.days = 1;
_root.daycounter = 5;
_root.cash = 0;
_root.pollen = 0;
_root.necter = 0;
_root.turn = 1;
_root.enemyhp = 0;
_root.hp = 15;
_root.maxhp = 15;
_root.hppotions = 0;
_root.damagepotions = 0;
_root.win = 0;
_root.helmet = 0;
_root.night = 0;
_root.light = 0;
_root.band = 0;
_root.beatgame = 0;
Stage.showMenu = false;
Frame 2
stop();
_root.totalstats = ((_root.honeygath + _root.strength) + _root.dex) + _root.aclass;
_root.turn = 1;
_root.enemyhp = 0;
_root.enemycash = 0;
_root.enemypollen = 0;
_root.enemydamage = 0;
_root.win = 0;
Instance of Symbol 28 MovieClip in Frame 2
on (press) {
_root.gotoAndStop(3);
}
Instance of Symbol 33 MovieClip in Frame 2
onClipEvent (enterFrame) {
this._width = _root.daycounter * 10;
}
Instance of Symbol 36 MovieClip in Frame 2
on (press) {
_root.days = _root.days + 1;
_root.daycounter = 5;
_root.hp = _root.maxhp;
}
Instance of Symbol 50 MovieClip in Frame 2
onClipEvent (enterFrame) {
this._width = _root.hp * 3;
if (_root.hp >= 30) {
this._width = 90;
}
}
Instance of Symbol 57 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (_root.strength >= 50) {
this._visible = true;
} else {
this._visible = false;
}
}
on (press) {
startDrag (this);
}
on (release) {
stopDrag();
}
Instance of Symbol 60 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (_root.honeygath >= 50) {
this._visible = true;
} else {
this._visible = false;
}
}
on (press) {
startDrag (this);
}
on (release) {
stopDrag();
}
Instance of Symbol 62 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (_root.dex >= 50) {
this._visible = true;
} else {
this._visible = false;
}
}
on (press) {
startDrag (this);
}
on (release) {
stopDrag();
}
Instance of Symbol 64 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (_root.beatgame == 1) {
this._visible = true;
} else {
this._visible = false;
}
}
on (press) {
startDrag (this);
}
on (release) {
stopDrag();
}
Instance of Symbol 65 MovieClip in Frame 2
onClipEvent (enterFrame) {
this._x = _root._xmouse;
this._y = _root._ymouse;
Mouse.hide();
}
Frame 3
stop();
Mouse.show();
Instance of Symbol 100 MovieClip in Frame 3
on (press) {
stopAllSounds();
_root.gotoAndStop(2);
}
Frame 4
stop();
Mouse.show();
Instance of Symbol 109 MovieClip in Frame 4
onClipEvent (load) {
gotoAndStop(random(4));
}
Instance of Symbol 110 MovieClip "bee" in Frame 4
onClipEvent (enterFrame) {
if (_root.win == 0) {
if (_root.hp <= 0) {
stopAllSounds();
_root.hp = _root.maxhp;
_root.daycounter = 0;
_root.gotoAndStop(2);
}
}
}
Instance of Symbol 157 MovieClip in Frame 4
onClipEvent (load) {
if (_root.totalstats <= 20) {
gotoAndStop (2);
}
if (_root.totalstats >= 20) {
if (_root.totalstats <= 50) {
gotoAndStop(random(2) + 2);
}
}
if (_root.totalstats >= 50) {
if (_root.totalstats <= 80) {
gotoAndStop(random(3) + 2);
}
}
if (_root.totalstats >= 80) {
if (_root.totalstats <= 120) {
gotoAndStop(random(3) + 3);
}
}
if (_root.totalstats >= 120) {
gotoAndStop(random(5) + 3);
}
}
onClipEvent (enterFrame) {
if (_root.enemyhp <= 0) {
_root.cash = _root.cash + _root.enemycash;
_root.pollen = (_root.pollen + _root.enemypollen) + _root.honeygath;
_root.enemycash = 0;
_root.enemypollen = 0;
_root.daycounter = _root.daycounter - 1;
_root.enemyhp = 100;
_root.vic._visible = true;
_root.win = 1;
}
}
Instance of Symbol 50 MovieClip in Frame 4
onClipEvent (enterFrame) {
this._width = _root.hp * 3;
}
Instance of Symbol 50 MovieClip in Frame 4
onClipEvent (enterFrame) {
this._width = _root.enemyhp * 5;
}
Instance of Symbol 160 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (_root.turn == 1) {
this._visible = true;
} else {
this._visible = false;
}
if (_root.win == 1) {
this._visible = false;
}
}
on (press) {
if (_root.turn == 1) {
_root.bee.gotoAndPlay(33);
_root.turn = 3;
}
}
Instance of Symbol 164 MovieClip in Frame 4
on (press) {
_root.daycounter = 0;
stopAllSounds();
_root.gotoAndStop(2);
}
onClipEvent (enterFrame) {
if (_root.turn == 1) {
this._visible = true;
} else {
this._visible = false;
}
if (_root.win == 1) {
this._visible = false;
}
}
Instance of Symbol 168 MovieClip in Frame 4
on (press) {
if (_root.hppotions >= 1) {
_root.hp = _root.hp + 25;
_root.hppotions = _root.hppotions - 1;
}
}
onClipEvent (enterFrame) {
if (_root.hppotions >= 1) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 171 MovieClip in Frame 4
on (press) {
if (_root.damagepotions >= 1) {
_root.enemyhp = _root.enemyhp - 15;
_root.damagepotions = _root.damagepotions - 1;
}
}
onClipEvent (enterFrame) {
if (_root.damagepotions >= 1) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 180 MovieClip "vic" in Frame 4
onClipEvent (load) {
this._visible = false;
}
Frame 5
stop();
Mouse.show();
Instance of Symbol 100 MovieClip in Frame 5
on (press) {
stopAllSounds();
_root.gotoAndStop(2);
}
Instance of Symbol 168 MovieClip in Frame 5
on (press) {
if (_root.cash >= 30) {
_root.hppotions = _root.hppotions + 1;
_root.cash = _root.cash - 30;
}
}
Instance of Symbol 171 MovieClip in Frame 5
on (press) {
if (_root.cash >= 15) {
_root.damagepotions = _root.damagepotions + 1;
_root.cash = _root.cash - 15;
}
}
Frame 6
stop();
Mouse.show();
Instance of Symbol 160 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.turn == 1) {
this._visible = true;
} else {
this._visible = false;
}
if (_root.win == 1) {
this._visible = false;
}
}
on (press) {
if (_root.turn == 1) {
_root.bee.gotoAndPlay(33);
_root.turn = 3;
}
}
Instance of Symbol 164 MovieClip in Frame 6
on (press) {
_root.daycounter = 0;
_root.gotoAndStop(2);
}
onClipEvent (enterFrame) {
if (_root.turn == 1) {
this._visible = true;
} else {
this._visible = false;
}
if (_root.win == 1) {
this._visible = false;
}
}
Instance of Symbol 168 MovieClip in Frame 6
on (press) {
if (_root.hppotions >= 1) {
_root.hp = _root.hp + 10;
_root.hppotions = _root.hppotions - 1;
}
}
onClipEvent (enterFrame) {
if (_root.hppotions >= 1) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 171 MovieClip in Frame 6
on (press) {
if (_root.damagepotions >= 1) {
_root.enemyhp = _root.enemyhp - 5;
_root.damagepotions = _root.damagepotions - 1;
}
}
onClipEvent (enterFrame) {
if (_root.damagepotions >= 1) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 50 MovieClip in Frame 6
onClipEvent (enterFrame) {
this._width = _root.hp * 3;
}
Instance of Symbol 50 MovieClip in Frame 6
onClipEvent (enterFrame) {
this._width = _root.enemyhp * 5;
}
Instance of Symbol 110 MovieClip "bee" in Frame 6
onClipEvent (enterFrame) {
if (_root.win == 0) {
if (_root.hp <= 0) {
_root.hp = _root.maxhp;
_root.daycounter = 0;
_root.gotoAndStop(2);
}
}
}
Instance of Symbol 129 MovieClip in Frame 6
onClipEvent (load) {
_root.enemyhp = 250;
_root.enemypollen = 200;
_root.enemycash = 250;
_root.enemydamage = 50;
}
onClipEvent (enterFrame) {
if (_root.turn == 0) {
gotoAndPlay (27);
_root.turn = 2;
}
if (_root.enemyhp <= 0) {
_root.cash = (_root.cash + _root.enemycash) + _root.dex;
_root.pollen = (_root.pollen + _root.enemypollen) + _root.honeygath;
_root.enemycash = 0;
_root.enemypollen = 0;
_root.beatgame = 1;
_root.gotoAndStop(7);
}
}
Frame 7
stop();
Mouse.show();
Frame 8
stop();
Mouse.show();
Instance of Symbol 100 MovieClip in Frame 8
on (press) {
stopAllSounds();
_root.gotoAndStop(2);
}
Frame 9
stop();
Instance of Symbol 227 MovieClip in Frame 9
on (press) {
_root.gotoAndStop(1);
}
Symbol 12 MovieClip Frame 1
stop();
if (_root.copper == 1) {
gotoAndStop (2);
}
if (_root.silver == 1) {
gotoAndStop (3);
}
if (_root.gold == 1) {
gotoAndStop (4);
}
Symbol 12 MovieClip Frame 2
stop();
Symbol 12 MovieClip Frame 3
stop();
Symbol 12 MovieClip Frame 4
stop();
Symbol 12 MovieClip Frame 5
stop();
Symbol 14 Button
on (press) {
_root.gotoAndStop(2);
}
Symbol 18 Button
on (press) {
_root.gotoAndStop(9);
}
Symbol 22 Button
on (press) {
gotoAndStop (5);
}
Symbol 39 Button
on (press) {
if (_root.daycounter >= 1) {
stopAllSounds();
_root.gotoAndStop(4);
}
}
Symbol 42 Button
on (press) {
if (_root.necter >= 500) {
_root.gotoAndStop(6);
}
}
Symbol 54 Button
on (press) {
gotoAndStop (8);
}
Symbol 70 Button
on (press) {
if (_root.daycounter >= 1) {
if (_root.cash >= 5) {
_root.cash = _root.cash - 5;
_root.bumbee.gotoAndPlay(3);
_root.honeygath = _root.honeygath + 1;
_root.daycounter = _root.daycounter - 1;
}
}
}
Symbol 72 Button
on (press) {
if (_root.daycounter >= 1) {
if (_root.cash >= 8) {
_root.cash = _root.cash - 8;
_root.bumbee.gotoAndPlay(3);
_root.honeygath = _root.honeygath + 2;
_root.daycounter = _root.daycounter - 1;
}
}
}
Symbol 77 Button
on (press) {
if (_root.daycounter >= 1) {
if (_root.cash >= 5) {
_root.cash = _root.cash - 5;
_root.bumbee.gotoAndPlay(14);
_root.strength = _root.strength + 1;
_root.daycounter = _root.daycounter - 1;
}
}
}
Symbol 80 Button
on (press) {
if (_root.daycounter >= 1) {
if (_root.cash >= 9) {
_root.cash = _root.cash - 9;
_root.bumbee.gotoAndPlay(14);
_root.strength = _root.strength + 2;
_root.daycounter = _root.daycounter - 1;
}
}
}
Symbol 85 MovieClip Frame 1
stop();
if (_root.helmet == 1) {
gotoAndStop (2);
}
if (_root.night == 1) {
gotoAndStop (3);
}
if (_root.band == 1) {
gotoAndStop (4);
}
if (_root.light == 1) {
gotoAndStop (5);
}
Symbol 85 MovieClip Frame 2
stop();
Symbol 85 MovieClip Frame 3
stop();
Symbol 85 MovieClip Frame 4
stop();
Symbol 85 MovieClip Frame 5
stop();
Symbol 86 MovieClip Frame 1
stop();
Symbol 86 MovieClip Frame 12
gotoAndStop (1);
Symbol 86 MovieClip Frame 23
gotoAndStop (1);
Symbol 86 MovieClip Frame 34
gotoAndStop (1);
Symbol 89 Button
on (press) {
if (_root.daycounter >= 1) {
if (_root.cash >= 5) {
_root.cash = _root.cash - 5;
_root.bumbee.gotoAndPlay(25);
_root.dex = _root.dex + 1;
_root.maxhp = _root.maxhp + 1;
_root.hp = _root.hp + 1;
_root.daycounter = _root.daycounter - 1;
}
}
}
Symbol 91 Button
on (press) {
if (_root.daycounter >= 1) {
if (_root.cash >= 8) {
_root.cash = _root.cash - 8;
_root.bumbee.gotoAndPlay(25);
_root.dex = _root.dex + 2;
_root.maxhp = _root.maxhp + 2;
_root.hp = _root.hp + 2;
_root.daycounter = _root.daycounter - 1;
}
}
}
Symbol 109 MovieClip Frame 1
stop();
Symbol 109 MovieClip Frame 2
stop();
Symbol 109 MovieClip Frame 3
stop();
Instance of Symbol 85 MovieClip in Symbol 110 MovieClip Frame 1
onClipEvent (enterFrame) {
stop();
}
Symbol 110 MovieClip Frame 32
gotoAndPlay (1);
Symbol 110 MovieClip Frame 51
_root.enemyhp = _root.enemyhp - ((random(_root.strength) + _root.aclass) + 1);
_root.turn = 0;
Symbol 114 MovieClip Frame 1
if (_root.turn == 2) {
_root.turn = 0;
}
Symbol 114 MovieClip Frame 31
gotoAndPlay (1);
Symbol 114 MovieClip Frame 58
if (_root.win == 0) {
_root.hp = _root.hp - (random(_root.enemydamage) + 1);
}
_root.turn = 1;
Symbol 129 MovieClip Frame 1
if (_root.turn == 2) {
_root.turn = 0;
}
Symbol 129 MovieClip Frame 26
gotoAndPlay (1);
Symbol 129 MovieClip Frame 46
if (_root.win == 0) {
_root.hp = _root.hp - (random(_root.enemydamage) + 1);
}
_root.turn = 1;
Symbol 131 MovieClip Frame 1
if (_root.turn == 2) {
_root.turn = 0;
}
Symbol 131 MovieClip Frame 22
gotoAndPlay (1);
Symbol 131 MovieClip Frame 41
if (_root.win == 0) {
_root.hp = _root.hp - (random(_root.enemydamage) + 1);
}
_root.turn = 1;
Symbol 154 MovieClip Frame 1
if (_root.turn == 2) {
_root.turn = 0;
}
Symbol 154 MovieClip Frame 13
gotoAndPlay (1);
Symbol 154 MovieClip Frame 29
if (_root.win == 0) {
_root.hp = _root.hp - (random(_root.enemydamage) + 1);
}
_root.turn = 1;
Symbol 156 MovieClip Frame 1
if (_root.turn == 2) {
_root.turn = 0;
}
Symbol 156 MovieClip Frame 14
gotoAndPlay (1);
Symbol 156 MovieClip Frame 29
if (_root.win == 0) {
_root.hp = _root.hp - (random(_root.enemydamage) + 1);
}
_root.turn = 1;
Symbol 157 MovieClip Frame 1
stop();
Symbol 157 MovieClip Frame 2
stop();
Instance of Symbol 114 MovieClip in Symbol 157 MovieClip Frame 2
onClipEvent (load) {
_root.enemyhp = 10;
_root.enemypollen = 5;
_root.enemycash = 10;
_root.enemydamage = 5;
}
onClipEvent (enterFrame) {
if (_root.turn == 0) {
gotoAndPlay (32);
_root.turn = 2;
}
}
Symbol 157 MovieClip Frame 3
stop();
Instance of Symbol 129 MovieClip in Symbol 157 MovieClip Frame 3
onClipEvent (load) {
_root.enemyhp = 25;
_root.enemypollen = 15;
_root.enemycash = 30;
_root.enemydamage = 10;
}
onClipEvent (enterFrame) {
if (_root.turn == 0) {
gotoAndPlay (27);
_root.turn = 2;
}
}
Symbol 157 MovieClip Frame 4
stop();
Instance of Symbol 131 MovieClip in Symbol 157 MovieClip Frame 4
onClipEvent (load) {
_root.enemyhp = 40;
_root.enemypollen = 10;
_root.enemycash = 50;
_root.enemydamage = 17;
}
onClipEvent (enterFrame) {
if (_root.turn == 0) {
gotoAndPlay (23);
_root.turn = 2;
}
}
Symbol 157 MovieClip Frame 5
stop();
Instance of Symbol 154 MovieClip in Symbol 157 MovieClip Frame 5
onClipEvent (load) {
_root.enemyhp = 60;
_root.enemypollen = 20;
_root.enemycash = 100;
_root.enemydamage = 25;
}
onClipEvent (enterFrame) {
if (_root.turn == 0) {
gotoAndPlay (14);
_root.turn = 2;
}
}
Symbol 157 MovieClip Frame 6
stop();
Instance of Symbol 156 MovieClip in Symbol 157 MovieClip Frame 6
onClipEvent (load) {
_root.enemyhp = 85;
_root.enemypollen = 40;
_root.enemycash = 150;
_root.enemydamage = 40;
}
onClipEvent (enterFrame) {
if (_root.turn == 0) {
gotoAndPlay (15);
_root.turn = 2;
}
}
Symbol 178 Button
on (press) {
stopAllSounds();
_root.gotoAndStop(2);
_root.win = 0;
}
Symbol 195 Button
on (press) {
if (_root.pollen >= 20) {
_root.pollen = _root.pollen - 20;
_root.necter = _root.necter + 10;
}
}
Symbol 198 Button
on (press) {
if (_root.cash >= 100) {
_root.cash = _root.cash - 100;
_root.aclass = 10;
_root.copper = 1;
_root.silver = 0;
_root.gold = 0;
_root.deity = 0;
}
}
Symbol 201 Button
on (press) {
if (_root.cash >= 250) {
_root.cash = _root.cash - 250;
_root.aclass = 20;
_root.copper = 0;
_root.silver = 1;
_root.gold = 0;
_root.deity = 0;
}
}
Symbol 204 Button
on (press) {
if (_root.cash >= 500) {
_root.cash = _root.cash - 500;
_root.aclass = 30;
_root.copper = 0;
_root.silver = 0;
_root.gold = 1;
_root.deity = 0;
}
}
Symbol 211 Button
on (press) {
stopAllSounds();
_root.gotoAndStop(2);
}
Symbol 213 Button
on (press) {
_root.gotoAndStop(1);
}
Symbol 216 Button
on (press) {
if (_root.cash >= 50) {
_root.cash = _root.cash - 50;
_root.helmet = 1;
_root.night = 0;
_root.band = 0;
_root.light = 0;
_root.maxhp = _root.maxhp + 12;
_root.bumble.gotoAndStop(2);
}
}
Symbol 218 Button
on (press) {
if (_root.cash >= 75) {
_root.cash = _root.cash - 75;
_root.helmet = 0;
_root.night = 1;
_root.band = 0;
_root.light = 0;
_root.maxhp = _root.maxhp + 18;
_root.bumble.gotoAndStop(3);
}
}
Symbol 220 Button
on (press) {
if (_root.cash >= 25) {
_root.cash = _root.cash - 25;
_root.helmet = 0;
_root.night = 0;
_root.band = 1;
_root.light = 0;
_root.maxhp = _root.maxhp + 5;
_root.bumble.gotoAndStop(4);
}
}
Symbol 222 Button
on (press) {
if (_root.cash >= 100) {
_root.cash = _root.cash - 100;
_root.helmet = 0;
_root.night = 0;
_root.band = 0;
_root.light = 1;
_root.maxhp = _root.maxhp + 25;
_root.bumble.gotoAndStop(5);
}
}