Frame 1
function itemHandler1(obj, item) {
getURL ("http://newgrounds.com", "_blank");
}
function itemHandler2(obj, item) {
getURL ("http://armorgames.com", "_blank");
}
function itemHandler3(obj, item) {
getURL ("http://freewebs.com/ldanimations", "_blank");
}
stopAllSounds();
_root.bytesLoaded = _root.getBytesLoaded();
_root.bytesTotal = _root.getBytesTotal();
_root.percentLoaded = Math.round(100 * (_root.bytesLoaded / _root.bytesTotal));
_root.percentLoadedText = _root.percentLoaded + "%";
_root.bar.gotoAndStop(percentLoaded);
root_cm = new ContextMenu();
root_cm.hideBuiltInItems();
aaa_cmi = new ContextMenuItem("Newgrounds", itemHandler1);
bbb_cmi = new ContextMenuItem("Armor Games - Free Online Games", itemHandler2);
ccc_cmi = new ContextMenuItem("LilDwarf Animations", itemHandler3);
root_cm.customItems.push(aaa_cmi, bbb_cmi, ccc_cmi);
_root.menu = root_cm;
Frame 2
if (_root.percentLoaded == 100) {
gotoAndPlay (3);
} else {
gotoAndPlay (1);
}
Frame 3
stop();
Frame 17
stop();
Frame 27
play();
spacePressNPC = true;
blueprint = false;
shovel = false;
peacockFeathers = false;
gun = false;
sunglass = false;
keyChain = false;
chest = false;
wasabi = false;
key = false;
map = false;
raisins = false;
string = false;
golfBall = false;
bamboo = false;
bottle = false;
drops = false;
patis = false;
coat = false;
beak = false;
tofu = false;
feathers = false;
eyes = false;
npcActive = true;
itemActive = true;
musketActive = true;
patisActive = true;
turketaActive = true;
turketbActive = true;
turketcActive = true;
beakActive = true;
giveMapActive = false;
feathersActive = false;
shovelActive = false;
chefActive = false;
civilTurkey14Active = false;
fakeEyes = false;
fakeEyesLookActive = false;
graveActive = false;
turkeySunglass = false;
bottleFire = false;
eyeManActive = true;
chestItem = false;
var turket = 0;
var NPCramdom = 0;
var mainCheck = 0;
onEnterFrame = function () {
NPCrandom = Math.floor(Math.random() * 30) + 1;
if (map) {
giveMapActive = false;
}
};
menuSong = new Sound(mS);
menuSong.attachSound("intro");
menuSong.start(0, 10);
Frame 1130
stop();
Frame 1140
stop();
Frame 1199
stop();
Frame 1299
stopAllSounds();
gotoAndStop ("Main");
Frame 1300
stop();
Instance of Symbol 245 MovieClip in Frame 1300
onClipEvent (load) {
spaceDown = false;
}
onClipEvent (enterFrame) {
if (spaceDown) {
if (this.hitTest(_root.player) && (_root.itemConvo._currentframe == 1)) {
if (Key.isDown(32)) {
_root.itemConvo.gotoAndStop("Sea");
}
}
}
spaceDown = true;
}
Instance of Symbol 247 MovieClip in Frame 1300
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
_root.itemConvo.gotoAndStop("Sea");
}
}
}
Instance of Symbol 256 MovieClip "Area1NPC" in Frame 1300
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 15) {
_root.NPCconvo.gotoAndStop("Civil Turkey 1");
} else {
_root.NPCconvo.gotoAndStop("CT1b");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 308 MovieClip "player" in Frame 1300
onClipEvent (load) {
speed = 5;
}
onClipEvent (enterFrame) {
if (_root.turkeySunglass) {
this.sunglassTurkey._visible = true;
} else {
this.sunglassTurkey._visible = false;
}
if ((_root.NPCconvo._currentframe == 1) && (_root.itemConvo._currentframe == 1)) {
if (Key.isDown(68)) {
this.gotoAndStop(8);
if (_root.ground.hitTest(_x + 12, _y - 10, true) == false) {
if (_root.ground.hitTest(_x + 12, _y + 10, true) == false) {
_x = (_x + speed);
}
}
}
if (Key.isDown(65)) {
this.gotoAndStop(6);
if (_root.ground.hitTest(_x - 12, _y - 10, true) == false) {
if (_root.ground.hitTest(_x - 12, _y + 10, true) == false) {
_x = (_x - speed);
}
}
}
if (Key.isDown(87)) {
this.gotoAndStop(7);
if (_root.ground.hitTest(_x - 8, _y - 12, true) == false) {
if (_root.ground.hitTest(_x + 8, _y - 12, true) == false) {
_y = (_y - speed);
}
}
}
if (Key.isDown(83)) {
this.gotoAndStop(5);
if (_root.ground.hitTest(_x - 8, _y + 12, true) == false) {
if (_root.ground.hitTest(_x + 8, _y + 12, true) == false) {
_y = (_y + speed);
}
}
}
if (this.hitTest(_root.hitArea1R)) {
_root.gotoAndStop("Area 2");
this._x = this._x - 525;
}
if (this.hitTest(_root.hitArea1D)) {
_root.gotoAndStop("Area 4");
this._y = this._y - 385;
}
if (this.hitTest(_root.hitArea2L)) {
_root.gotoAndStop("Area 1");
this._x = this._x + 525;
}
if (this.hitTest(_root.hitArea2D)) {
_root.gotoAndStop("Area 5");
this._y = this._y - 373;
}
if (this.hitTest(_root.hitArea2R)) {
_root.gotoAndStop("Area 3");
this._x = this._x - 525;
}
if (this.hitTest(_root.hitArea3L)) {
_root.gotoAndStop("Area 2");
this._x = this._x + 525;
}
if (this.hitTest(_root.hitArea3D)) {
_root.gotoAndStop("Area 6");
this._y = this._y - 373;
}
if (this.hitTest(_root.hitArea4U)) {
_root.gotoAndStop("Area 1");
this._y = this._y + 373;
}
if (this.hitTest(_root.hitArea4R)) {
_root.gotoAndStop("Area 5");
this._x = this._x - 525;
}
if (this.hitTest(_root.hitArea4D)) {
_root.gotoAndStop("Area 7");
this._y = this._y - 373;
}
if (this.hitTest(_root.hitArea5L)) {
_root.gotoAndStop("Area 4");
this._x = this._x + 525;
}
if (this.hitTest(_root.hitArea5U)) {
_root.gotoAndStop("Area 2");
this._y = this._y + 373;
}
if (this.hitTest(_root.hitArea5R)) {
_root.gotoAndStop("Area 6");
this._x = this._x - 525;
}
if (this.hitTest(_root.hitArea5D)) {
_root.gotoAndStop("Area 8");
this._y = this._y - 373;
}
if (this.hitTest(_root.hitArea6L)) {
_root.gotoAndStop("Area 5");
this._x = this._x + 525;
}
if (this.hitTest(_root.hitArea6U)) {
_root.gotoAndStop("Area 3");
this._y = this._y + 373;
}
if (this.hitTest(_root.hitArea6D)) {
_root.gotoAndStop("Area 9");
this._y = this._y - 373;
}
if (this.hitTest(_root.hitArea7U)) {
_root.gotoAndStop("Area 4");
this._y = this._y + 373;
}
if (this.hitTest(_root.hitArea7R)) {
_root.gotoAndStop("Area 8");
this._x = this._x - 525;
}
if (this.hitTest(_root.hitArea8L)) {
_root.gotoAndStop("Area 7");
this._x = this._x + 525;
}
if (this.hitTest(_root.hitArea8U)) {
_root.gotoAndStop("Area 5");
this._y = this._y + 373;
}
if (this.hitTest(_root.hitArea8R)) {
_root.gotoAndStop("Area 9");
this._x = this._x - 525;
}
if (this.hitTest(_root.hitArea9L)) {
_root.gotoAndStop("Area 8");
this._x = this._x + 525;
}
if (this.hitTest(_root.hitArea9U)) {
_root.gotoAndStop("Area 6");
this._y = this._y + 373;
}
if (this.hitTest(_root.enterLab)) {
_root.gotoAndStop("Lab");
this._x = 275;
this._y = 450;
}
if (this.hitTest(_root.exitLab)) {
_root.gotoAndStop("Area 1");
this._x = 215;
this._y = 330;
}
if (this.hitTest(_root.enterGrave)) {
_root.gotoAndStop("Gravekeeper");
this._x = 275;
this._y = 450;
}
if (this.hitTest(_root.exitGrave)) {
_root.gotoAndStop("Area 4");
this._x = 260;
this._y = 230;
}
if (this.hitTest(_root.enterMain)) {
_root.gotoAndStop("Main");
this._x = 275;
this._y = 450;
}
if (this.hitTest(_root.exitMain)) {
_root.gotoAndStop("Area 5");
this._x = 275;
this._y = 335;
}
if (this.hitTest(_root.enterOld)) {
_root.gotoAndStop("Old House");
this._x = 275;
this._y = 450;
}
if (this.hitTest(_root.exitOld)) {
_root.gotoAndStop("Area 7");
this._x = 130;
this._y = 240;
}
if (this.hitTest(_root.enterJapo)) {
_root.gotoAndStop("Japo House");
this._x = 275;
this._y = 450;
}
if (this.hitTest(_root.exitJapo)) {
_root.gotoAndStop("Area 7");
this._x = 307;
this._y = 393;
}
if (this.hitTest(_root.enterSushi)) {
_root.gotoAndStop("Sushi");
this._x = 275;
this._y = 450;
}
if (this.hitTest(_root.exitSushi)) {
_root.gotoAndStop("Area 9");
this._x = 230;
this._y = 225;
}
if (this.hitTest(_root.enterPub)) {
_root.gotoAndStop("Pub");
this._x = 275;
this._y = 450;
}
if (this.hitTest(_root.exitPub)) {
_root.gotoAndStop("Area 9");
this._x = 425;
this._y = 260;
}
if (this.hitTest(_root.enterStore)) {
_root.gotoAndStop("Store");
this._x = 275;
this._y = 450;
}
if (this.hitTest(_root.exitStore)) {
_root.gotoAndStop("Area 9");
this._x = 190;
this._y = 380;
}
}
if (this.hitTest(_root.pilgrim.pilgrim.pilgrim.pilgrim)) {
trace("hit");
}
}
Instance of Symbol 744 MovieClip "NPCconvo" in Frame 1300
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
_root.npcActive = true;
}
}
Instance of Symbol 934 MovieClip "itemConvo" in Frame 1300
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
_root.itemActive = true;
}
}
Instance of Symbol 937 MovieClip "fadein" in Frame 1300
onClipEvent (enterFrame) {
if (_root.fade) {
this.gotoAndPlay(2);
}
}
Instance of Symbol 247 MovieClip in Frame 1306
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
_root.itemConvo.gotoAndStop("Sea");
}
}
}
Instance of Symbol 245 MovieClip in Frame 1312
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
_root.itemConvo.gotoAndStop("Sea");
}
}
}
Instance of Symbol 826 MovieClip in Frame 1312
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Ship");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 758 MovieClip in Frame 1312
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.musketActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("MusketGET");
_root.gun = true;
this._visible = false;
_root.musketActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 835 MovieClip in Frame 1318
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (!_root.key) {
_root.itemConvo.gotoAndStop("GateC");
_root.itemActive = false;
} else {
this.gotoAndStop("Open");
_root.itemConvo.gotoAndStop("GateO");
_root.ground.gotoAndStop("Opened");
_root.itemActive = false;
}
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 838 MovieClip "grave2" in Frame 1318
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.graveActive) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Grave 2");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
}
Instance of Symbol 838 MovieClip "grave1" in Frame 1318
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Grave 1");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 838 MovieClip "grave5" in Frame 1318
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Grave 5");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 838 MovieClip "grave6" in Frame 1318
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Grave 6");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 838 MovieClip "grave7" in Frame 1318
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Grave 7");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 838 MovieClip "grave3" in Frame 1318
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Grave 3");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 838 MovieClip "grave4" in Frame 1318
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Grave 4");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 838 MovieClip "grave8" in Frame 1318
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Grave 8");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 807 MovieClip in Frame 1318
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.patis) {
_root.patisActive = false;
this._visible = false;
}
if (_root.patisActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Patis");
_root.patis = true;
this._visible = false;
_root.patisActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 851 MovieClip in Frame 1324
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("graveSign");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 854 MovieClip in Frame 1324
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("beachSign");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 857 MovieClip in Frame 1324
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("funSign");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 961 MovieClip in Frame 1324
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 15) {
_root.NPCconvo.gotoAndStop("Civil Turkey 2");
} else {
_root.NPCconvo.gotoAndStop("CT2b");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 963 MovieClip in Frame 1324
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 10) {
_root.NPCconvo.gotoAndStop("Civil Turkey 3");
} else if ((_root.NPCrandom > 11) && (_root.NPCrandom <= 20)) {
_root.NPCconvo.gotoAndStop("CT3b");
} else {
_root.NPCconvo.gotoAndStop("CT3c");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 973 MovieClip in Frame 1330
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 10) {
_root.NPCconvo.gotoAndStop("Civil Turkey 4");
} else if ((_root.NPCrandom > 11) && (_root.NPCrandom <= 20)) {
_root.NPCconvo.gotoAndStop("CT4b");
} else {
_root.NPCconvo.gotoAndStop("CT4c");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 803 MovieClip in Frame 1330
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (_root.beakActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("beak");
_root.beak = true;
this._visible = false;
_root.beakActive = false;
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
}
Instance of Symbol 353 MovieClip in Frame 1330
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (_root.turketaActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("50Turket");
_root.turketaActive = false;
_root.turket = _root.turket + 70;
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
}
Instance of Symbol 353 MovieClip in Frame 1330
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (_root.turketcActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("50Turket");
_root.turketcActive = false;
_root.turket = _root.turket + 70;
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
}
Instance of Symbol 353 MovieClip in Frame 1330
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (_root.turketbActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("25Turket");
_root.turketbActive = false;
_root.turket = _root.turket + 30;
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
}
Instance of Symbol 864 MovieClip in Frame 1330
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("emptyPile");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 864 MovieClip in Frame 1330
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("emptyPile");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 864 MovieClip in Frame 1330
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (!_root.turketaActive) {
_root.itemConvo.gotoAndStop("emptyPile");
_root.itemActive = false;
}
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 864 MovieClip in Frame 1330
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.beak) {
_root.itemConvo.gotoAndStop("emptyPile");
_root.itemActive = false;
}
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 864 MovieClip in Frame 1330
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("emptyPile");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 864 MovieClip in Frame 1330
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("emptyPile");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 864 MovieClip in Frame 1330
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (!_root.turketcActive) {
_root.itemConvo.gotoAndStop("emptyPile");
_root.itemActive = false;
}
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 864 MovieClip in Frame 1330
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("emptyPile");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 864 MovieClip in Frame 1330
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("emptyPile");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 864 MovieClip in Frame 1330
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (!_root.turketbActive) {
_root.itemConvo.gotoAndStop("emptyPile");
_root.itemActive = false;
}
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 978 MovieClip in Frame 1336
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 10) {
_root.NPCconvo.gotoAndStop("Civil Turkey 5");
} else if ((_root.NPCrandom > 11) && (_root.NPCrandom <= 20)) {
_root.NPCconvo.gotoAndStop("CT5b");
} else {
_root.NPCconvo.gotoAndStop("CT5c");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 980 MovieClip in Frame 1336
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 10) {
_root.NPCconvo.gotoAndStop("Civil Turkey 6");
} else if ((_root.NPCrandom > 11) && (_root.NPCrandom <= 20)) {
_root.NPCconvo.gotoAndStop("CT6b");
} else {
_root.NPCconvo.gotoAndStop("CT6c");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 867 MovieClip in Frame 1342
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("residencySign");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 870 MovieClip in Frame 1342
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("businessSign");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 980 MovieClip in Frame 1342
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 15) {
_root.NPCconvo.gotoAndStop("Civil Turkey 7");
} else {
_root.NPCconvo.gotoAndStop("CT7b");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 986 MovieClip in Frame 1342
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 10) {
_root.NPCconvo.gotoAndStop("Civil Turkey 8");
} else if ((_root.NPCrandom > 11) && (_root.NPCrandom <= 20)) {
_root.NPCconvo.gotoAndStop("CT8b");
} else {
_root.NPCconvo.gotoAndStop("CT8c");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 992 MovieClip in Frame 1348
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 10) {
_root.NPCconvo.gotoAndStop("Civil Turkey 9");
} else if ((_root.NPCrandom > 11) && (_root.NPCrandom <= 20)) {
_root.NPCconvo.gotoAndStop("CT9b");
} else {
_root.NPCconvo.gotoAndStop("CT9c");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 994 MovieClip in Frame 1348
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 10) {
_root.NPCconvo.gotoAndStop("Civil Turkey 11");
} else if ((_root.NPCrandom > 11) && (_root.NPCrandom <= 20)) {
_root.NPCconvo.gotoAndStop("CT11b");
} else {
_root.NPCconvo.gotoAndStop("CT11c");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 996 MovieClip in Frame 1348
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 10) {
_root.NPCconvo.gotoAndStop("Civil Turkey 10");
} else if ((_root.NPCrandom > 11) && (_root.NPCrandom <= 20)) {
_root.NPCconvo.gotoAndStop("CT10b");
} else {
_root.NPCconvo.gotoAndStop("CT10c");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1003 MovieClip in Frame 1354
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Shelves");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1015 MovieClip in Frame 1354
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Shelves");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1017 MovieClip in Frame 1354
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Shelves");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1024 MovieClip in Frame 1354
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Shelves");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1027 MovieClip in Frame 1354
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Shelves");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1033 MovieClip in Frame 1354
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("eyeBottle");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1035 MovieClip in Frame 1354
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.npcActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.eyes) {
_root.NPCconvo.gotoAndStop("LT5");
} else if (_root.fakeEyes) {
_root.NPCconvo.gotoAndStop("LT fake yes");
} else if (_root.NPCrandom <= 10) {
_root.NPCconvo.gotoAndStop("lab Turkey");
} else if ((_root.NPCrandom > 11) && (_root.NPCrandom <= 20)) {
_root.NPCconvo.gotoAndStop("LT2");
} else {
_root.NPCconvo.gotoAndStop("LT3");
}
_root.npcActive = false;
_root.civilTurkey14Active = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1033 MovieClip in Frame 1354
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("emptyBottle");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1033 MovieClip in Frame 1354
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("emptyBottle");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1040 MovieClip in Frame 1359
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Grave 1a");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 751 MovieClip in Frame 1359
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.shovelActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.shovelActive) {
_root.itemConvo.gotoAndStop("shovelGET");
this._visible = false;
_root.shovelActive = false;
_root.shovel = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
if (!_root.shovel) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("digTools");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
}
Instance of Symbol 1040 MovieClip in Frame 1359
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Grave 2a");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1040 MovieClip in Frame 1359
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Grave 4a");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1040 MovieClip in Frame 1359
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Grave 3a");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1040 MovieClip in Frame 1359
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Grave 5a");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1049 MovieClip in Frame 1359
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Diary");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1057 MovieClip in Frame 1359
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.npcActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.NPCconvo.gotoAndStop("Poe");
_root.npcActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1059 MovieClip in Frame 1359
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("graveBed");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1061 MovieClip in Frame 1359
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.npcActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.shovel) {
_root.NPCconvo.gotoAndStop("GK6");
} else if (_root.gun) {
_root.NPCconvo.gotoAndStop("GK5");
_root.shovelActive = true;
} else if (_root.NPCrandom <= 8) {
_root.NPCconvo.gotoAndStop("Gravekeeper");
} else if ((_root.NPCrandom > 8) && (_root.NPCrandom <= 15)) {
_root.NPCconvo.gotoAndStop("GK2");
} else if ((_root.NPCrandom > 15) && (_root.NPCrandom <= 22)) {
_root.NPCconvo.gotoAndStop("GK3");
} else {
_root.NPCconvo.gotoAndStop("GK4");
}
_root.npcActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1068 MovieClip in Frame 1369
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("blueprint");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1059 MovieClip in Frame 1369
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("mainBed");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1074 MovieClip in Frame 1369
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("Book Shelf");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1076 MovieClip in Frame 1369
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.npcActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (((((_root.coat && (_root.eyes)) && (_root.beak)) && (_root.feathers)) && (_root.tofu)) && (_root.patis)) {
_root.NPCconvo.gotoAndStop("MT11");
_root.npcActive = false;
} else if (_root.giveMapActive) {
_root.NPCconvo.gotoAndStop("MT9b");
_root.npcActive = false;
} else if (_root.mainCheck >= 1) {
_root.NPCconvo.gotoAndStop("MT10");
_root.npcActive = false;
} else {
_root.NPCconvo.gotoAndStop("Main Turkey");
_root.npcActive = false;
_root.mainCheck = _root.mainCheck + 1;
_root.giveMapActive = true;
}
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 801 MovieClip in Frame 1374
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.feathersActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.feathersActive) {
_root.itemConvo.gotoAndStop("feathersGET");
this._visible = false;
_root.feathersActive = false;
_root.feathers = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
if (!_root.feathers) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("oldFeathers");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
}
Instance of Symbol 1087 MovieClip in Frame 1374
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("radio");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1089 MovieClip in Frame 1374
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.npcActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.feathers) {
_root.NPCconvo.gotoAndStop("OT6");
} else if (_root.peacockFeathers) {
_root.NPCconvo.gotoAndStop("OT5");
_root.feathersActive = true;
} else if (_root.NPCrandom <= 8) {
_root.NPCconvo.gotoAndStop("Old Turkey");
} else if ((_root.NPCrandom > 8) && (_root.NPCrandom <= 15)) {
_root.NPCconvo.gotoAndStop("OT2");
} else if ((_root.NPCrandom > 15) && (_root.NPCrandom <= 22)) {
_root.NPCconvo.gotoAndStop("OT3");
} else {
_root.NPCconvo.gotoAndStop("OT4");
}
_root.npcActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1101 MovieClip in Frame 1382
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("banner");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1101 MovieClip in Frame 1382
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("banner");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1103 MovieClip in Frame 1382
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("bonsai");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1103 MovieClip in Frame 1382
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("bonsai");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1105 MovieClip in Frame 1382
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.npcActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.tofu) {
_root.NPCconvo.gotoAndStop("JP6");
} else if (_root.wasabi) {
_root.NPCconvo.gotoAndStop("JP5");
} else if (_root.NPCrandom <= 8) {
_root.NPCconvo.gotoAndStop("Japo Turkey");
} else if ((_root.NPCrandom > 8) && (_root.NPCrandom <= 15)) {
_root.NPCconvo.gotoAndStop("JP2");
} else if ((_root.NPCrandom > 15) && (_root.NPCrandom <= 22)) {
_root.NPCconvo.gotoAndStop("JP3");
} else {
_root.NPCconvo.gotoAndStop("JP4");
}
_root.npcActive = false;
_root.chefActive = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1103 MovieClip in Frame 1392
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("bonsai");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1103 MovieClip in Frame 1392
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("bonsai");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1103 MovieClip in Frame 1392
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("bonsai");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1103 MovieClip in Frame 1392
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.itemActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.itemConvo.gotoAndStop("bonsai");
_root.itemActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1114 MovieClip in Frame 1392
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.npcActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.wasabi) {
_root.NPCconvo.gotoAndStop("ST6");
} else if (_root.chefActive) {
_root.NPCconvo.gotoAndStop("ST4");
} else if (_root.NPCrandom <= 10) {
_root.NPCconvo.gotoAndStop("Sushi Turkey");
} else if ((_root.NPCrandom > 10) && (_root.NPCrandom <= 20)) {
_root.NPCconvo.gotoAndStop("ST2");
} else {
_root.NPCconvo.gotoAndStop("ST3");
}
_root.npcActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 996 MovieClip in Frame 1392
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 10) {
_root.NPCconvo.gotoAndStop("Civil Turkey 13");
} else if ((_root.NPCrandom > 11) && (_root.NPCrandom <= 20)) {
_root.NPCconvo.gotoAndStop("CT13b");
} else {
_root.NPCconvo.gotoAndStop("CT13c");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 978 MovieClip in Frame 1392
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 15) {
_root.NPCconvo.gotoAndStop("Civil Turkey 12");
} else {
_root.NPCconvo.gotoAndStop("CT12b");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 996 MovieClip in Frame 1392
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 15) {
_root.NPCconvo.gotoAndStop("Civil Turkey 15");
} else {
_root.NPCconvo.gotoAndStop("CT15b");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1117 MovieClip in Frame 1392
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 15) {
_root.NPCconvo.gotoAndStop("Civil Turkey 17");
} else {
_root.NPCconvo.gotoAndStop("CT17b");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1133 MovieClip in Frame 1398
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.npcActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.NPCconvo.gotoAndStop("Pub Turkey");
_root.npcActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 996 MovieClip in Frame 1398
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 15) {
_root.NPCconvo.gotoAndStop("Civil Turkey 19");
} else {
_root.NPCconvo.gotoAndStop("CT19b");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1117 MovieClip in Frame 1398
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 10) {
_root.NPCconvo.gotoAndStop("Civil Turkey 16");
} else if ((_root.NPCrandom > 11) && (_root.NPCrandom <= 20)) {
_root.NPCconvo.gotoAndStop("CT16b");
} else {
_root.NPCconvo.gotoAndStop("CT16c");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 978 MovieClip in Frame 1398
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 15) {
_root.NPCconvo.gotoAndStop("Civil Turkey 18");
} else {
_root.NPCconvo.gotoAndStop("CT18b");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1135 MovieClip in Frame 1398
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.npcActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (!_root.eyeManActive) {
_root.NPCconvo.gotoAndStop("CT14g");
} else if (_root.fakeEyesLookActive) {
if ((((_root.string && (_root.raisins)) && (_root.golfBall)) && (_root.bottleFire)) && (_root.drops)) {
_root.NPCconvo.gotoAndStop("CT14f");
_root.eyeManActive = false;
} else {
_root.NPCconvo.gotoAndStop("CT14e");
}
} else if (_root.civilTurkey14Active) {
_root.NPCconvo.gotoAndStop("CT14d");
_root.fakeEyesLookActive = true;
} else if (_root.NPCrandom <= 10) {
_root.NPCconvo.gotoAndStop("Civil Turkey 14");
} else if ((_root.NPCrandom > 10) && (_root.NPCrandom <= 20)) {
_root.NPCconvo.gotoAndStop("CT14b");
} else {
_root.NPCconvo.gotoAndStop("CT14c");
}
_root.npcActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 1146 MovieClip in Frame 1403
onClipEvent (load) {
spacePress = false;
}
onClipEvent (enterFrame) {
if (_root.npcActive) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
_root.NPCconvo.gotoAndStop("Shop Turkey");
_root.npcActive = false;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Instance of Symbol 256 MovieClip in Frame 1403
onClipEvent (load) {
spacePress = false;
npcSpacePress = false;
}
onClipEvent (enterFrame) {
if (_root.NPCconvo._currentframe == 1) {
npcSpacePress = false;
}
if (!npcSpacePress) {
if (this.hitTest(_root.player)) {
if (Key.isDown(32)) {
if (!spacePress) {
if (_root.NPCrandom <= 15) {
_root.NPCconvo.gotoAndStop("Civil Turkey 22");
} else {
_root.NPCconvo.gotoAndStop("CT22b");
}
npcSpacePress = true;
}
spacePress = true;
} else {
spacePress = false;
}
}
}
}
Frame 1463
endSong = new Sound(eS);
endSong.attachSound("credits");
endSong.start(0, 20);
Frame 1933
stop();
Symbol 18 Button
on (release) {
getURL ("http://www.newgrounds.com", "blank");
}
Symbol 34 Button
on (release) {
getURL ("http://www.armorgames.com", "blank");
}
Symbol 41 MovieClip Frame 81
_root.play();
_root.play();
Symbol 49 Button
on (release) {
gotoAndStop (27);
}
Symbol 51 Button
on (release) {
getURL ("http://freewebs.com/ldanimations", "_blank");
}
Symbol 54 MovieClip Frame 260
_root.play();
Symbol 59 MovieClip Frame 20
stop();
Symbol 60 MovieClip Frame 25
stop();
Symbol 97 MovieClip Frame 1
_root.stop();
Symbol 97 MovieClip Frame 265
_root.play();
Symbol 98 Button
on (release) {
gotoAndStop ("Main Menu");
}
Symbol 103 Button
on (release) {
getURL ("http://www.armorgames.com", "_blank");
}
Symbol 151 Button
on (release) {
getURL ("http://www.newgrounds.com/collection/thanksgiving2007", "_blank");
}
Symbol 184 Button
on (release) {
gotoAndPlay ("New Game");
}
Symbol 187 Button
on (release) {
gotoAndStop ("Instruccions");
}
Symbol 190 Button
on (release) {
gotoAndStop ("Credits");
menuSong.stop();
}
Symbol 194 Button
on (release) {
_root.gotoAndStop("Main Menu");
}
Symbol 198 MovieClip Frame 20
stop();
Symbol 217 MovieClip Frame 1
creditsSong = new Sound(cS);
creditsSong.attachSound("credits");
creditsSong.start();
Symbol 217 MovieClip Frame 734
stop();
Symbol 218 Button
on (release) {
stopAllSounds();
menuSong.start(0, 10);
gotoAndStop ("Main Menu");
}
Symbol 308 MovieClip Frame 1
stop();
Symbol 308 MovieClip Frame 2
stop();
Symbol 308 MovieClip Frame 3
stop();
Symbol 308 MovieClip Frame 4
stop();
Symbol 308 MovieClip Frame 5
stop();
Instance of Symbol 275 MovieClip in Symbol 308 MovieClip Frame 5
onClipEvent (enterFrame) {
if (!Key.isDown(83)) {
_root.player.gotoAndStop(1);
}
if ((!Key.isDown(83)) && (!Key.isDown(68))) {
_root.player.gotoAndStop(1);
}
if ((!Key.isDown(83)) && (!Key.isDown(65))) {
_root.player.gotoAndStop(1);
}
}
Symbol 308 MovieClip Frame 6
stop();
Instance of Symbol 291 MovieClip in Symbol 308 MovieClip Frame 6
onClipEvent (enterFrame) {
if (!Key.isDown(65)) {
_root.player.gotoAndStop(2);
}
}
Symbol 308 MovieClip Frame 7
stop();
Instance of Symbol 307 MovieClip in Symbol 308 MovieClip Frame 7
onClipEvent (enterFrame) {
if (!Key.isDown(87)) {
_root.player.gotoAndStop(3);
}
}
Symbol 308 MovieClip Frame 8
stop();
Instance of Symbol 291 MovieClip in Symbol 308 MovieClip Frame 8
onClipEvent (enterFrame) {
if (!Key.isDown(68)) {
_root.player.gotoAndStop(4);
}
}
Symbol 317 Button
on (release) {
song2.stop();
song3.stop();
song4.stop();
song5.stop();
song6.stop();
song1 = new Sound(s1);
song1.attachSound("Song 1");
song1.start(0, 500);
}
Symbol 321 Button
on (release) {
song1.stop();
song3.stop();
song4.stop();
song5.stop();
song6.stop();
song2 = new Sound(s2);
song2.attachSound("Song 2");
song2.start(0, 500);
}
Symbol 325 Button
on (release) {
song2.stop();
song1.stop();
song4.stop();
song5.stop();
song6.stop();
song3 = new Sound(s3);
song3.attachSound("Song 3");
song3.start(0, 500);
}
Symbol 329 Button
on (release) {
song2.stop();
song3.stop();
song1.stop();
song5.stop();
song6.stop();
song4 = new Sound(s4);
song4.attachSound("Song 4");
song4.start(0, 500);
}
Symbol 333 Button
on (release) {
song1.stop();
song2.stop();
song3.stop();
song4.stop();
song6.stop();
song5 = new Sound(s5);
song5.attachSound("Song 5");
song5.start(0, 500);
}
Symbol 336 Button
on (release) {
_root.song1.stop();
_root.song2.stop();
_root.song3.stop();
_root.song4.stop();
_root.song5.stop();
_root.song6.stop();
}
Symbol 337 MovieClip Frame 1
stop();
Symbol 342 Button
on (release) {
_root.hud.gotoAndPlay("Parts");
}
Symbol 345 Button
on (release) {
_root.hud.gotoAndStop("Items");
}
Symbol 374 Button
on (release) {
gotoAndStop (1);
}
Symbol 375 MovieClip Frame 1
stop();
Symbol 375 MovieClip Frame 2
stop();
Symbol 426 Button
on (release) {
if (_root.turket >= 75) {
gotoAndStop ("ST Yes");
_root.turket = _root.turket - 75;
} else {
gotoAndStop ("ST No");
}
}
Symbol 429 Button
on (release) {
gotoAndStop (1);
}
Symbol 446 Button
on (release) {
gotoAndStop (1);
}
Symbol 449 Button
on (release) {
if (bourbonBtn) {
bourbon._visible = true;
drinkBourbon = true;
drinkNumber = drinkNumber + 1;
bourbonBtn = false;
}
}
Symbol 452 Button
on (release) {
if (sugarBtn) {
sugar._visible = true;
drinkSugar = true;
drinkNumber = drinkNumber + 1;
sugarBtn = false;
}
}
Symbol 455 Button
on (release) {
if (mintBtn) {
mint._visible = true;
drinkMint = true;
drinkNumber = drinkNumber + 1;
mintBtn = false;
}
}
Symbol 458 Button
on (release) {
if (syrupBtn) {
syrup._visible = true;
drinkSyrup = true;
drinkNumber = drinkNumber + 1;
syrupBtn = false;
}
}
Symbol 461 Button
on (release) {
if (lemonBtn) {
lemon._visible = true;
drinkLemon = true;
drinkNumber = drinkNumber + 1;
lemonBtn = false;
}
}
Symbol 464 Button
on (release) {
if (rumBtn) {
rum._visible = true;
drinkRum = true;
drinkNumber = drinkNumber + 1;
rumBtn = false;
}
}
Symbol 467 Button
on (release) {
if (sodaBtn) {
soda._visible = true;
drinkSoda = true;
drinkNumber = drinkNumber + 1;
sodaBtn = false;
}
}
Symbol 470 Button
on (release) {
if (whiskeyBtn) {
whiskey._visible = true;
drinkWhiskey = true;
drinkNumber = drinkNumber + 1;
whiskeyBtn = false;
}
}
Symbol 473 Button
on (release) {
if (angosturaBtn) {
angostura._visible = true;
drinkAngostura = true;
drinkNumber = drinkNumber + 1;
angosturaBtn = false;
}
}
Symbol 476 Button
on (release) {
_parent.bourbon._visible = false;
_parent.drinkBourbon = false;
_parent.drinkNumber = _parent.drinkNumber - 1;
_parent.bourbonBtn = true;
}
Symbol 479 Button
on (release) {
_parent.soda._visible = false;
_parent.drinkSoda = false;
_parent.drinkNumber = _parent.drinkNumber - 1;
_parent.sodaBtn = true;
}
Symbol 482 Button
on (release) {
_parent.rum._visible = false;
_parent.drinkRum = false;
_parent.drinkNumber = _parent.drinkNumber - 1;
_parent.rumBtn = true;
}
Symbol 485 Button
on (release) {
_parent.angostura._visible = false;
_parent.drinkAngostura = false;
_parent.drinkNumber = _parent.drinkNumber - 1;
_parent.angosturaBtn = true;
}
Symbol 488 Button
on (release) {
_parent.whiskey._visible = false;
_parent.drinkWhiskey = false;
_parent.drinkNumber = _parent.drinkNumber - 1;
_parent.whiskeyBtn = true;
}
Symbol 491 Button
on (release) {
_parent.mint._visible = false;
_parent.drinkMint = false;
_parent.drinkNumber = _parent.drinkNumber - 1;
_parent.mintBtn = true;
}
Symbol 494 Button
on (release) {
_parent.sugar._visible = false;
_parent.drinkSugar = false;
_parent.drinkNumber = _parent.drinkNumber - 1;
_parent.sugarBtn = true;
}
Symbol 497 Button
on (release) {
_parent.syrup._visible = false;
_parent.drinkSugar = false;
_parent.drinkNumber = _parent.drinkNumber - 1;
_parent.syrupBtn = true;
}
Symbol 500 Button
on (release) {
_parent.lemon._visible = false;
_parent.drinkLemon = false;
_parent.drinkNumber = _parent.drinkNumber - 1;
_parent.lemonBtn = true;
}
Symbol 504 Button
on (release) {
if ((((((((drinkWhiskey && (drinkAngostura)) && (drinkLemon)) && (!drinkBourbon)) && (!drinkSoda)) && (!drinkRum)) && (!drinkMint)) && (!drinkSugar)) && (!drinkSyrup)) {
gotoAndStop ("manhattan");
}
if (((((((((!drinkWhiskey) && (!drinkAngostura)) && (!drinkLemon)) && (drinkBourbon)) && (!drinkSoda)) && (!drinkRum)) && (drinkMint)) && (drinkSugar)) && (!drinkSyrup)) {
gotoAndStop ("mint julep");
}
if (((((((((!drinkWhiskey) && (!drinkAngostura)) && (drinkLemon)) && (!drinkBourbon)) && (drinkSoda)) && (drinkRum)) && (drinkMint)) && (drinkSugar)) && (!drinkSyrup)) {
gotoAndStop ("mojito");
}
if ((((((((drinkWhiskey && (drinkAngostura)) && (drinkLemon)) && (drinkBourbon)) && (!drinkSoda)) && (drinkRum)) && (!drinkMint)) && (!drinkSugar)) && (!drinkSyrup)) {
gotoAndStop ("PT4");
} else if (drinkNumber < 5) {
gotoAndStop ("normal");
} else {
gotoAndStop ("junk");
}
bourbonBtn = true;
mintBtn = true;
sugarBtn = true;
sodaBtn = true;
rumBtn = true;
whiskeyBtn = true;
syrupBtn = true;
angosturaBtn = true;
lemonBtn = true;
}
Symbol 507 Button
on (release) {
gotoAndStop ("PT3");
}
Symbol 514 Button
on (release) {
gotoAndStop ("PT2");
}
Symbol 528 Button
on (release) {
gotoAndStop ("Shop Talk");
}
Symbol 531 Button
on (release) {
gotoAndStop ("Choose item");
}
Symbol 535 Button
on (release) {
if (_root.bamboo) {
invalid.gotoAndStop(2);
} else if (!itemBamboo) {
bamboo._visible = true;
totalPrice = totalPrice + 10;
itemBamboo = true;
}
}
Symbol 538 Button
on (release) {
if (_root.chest) {
invalid.gotoAndStop(2);
} else if (!itemChest) {
chest._visible = true;
totalPrice = totalPrice + 15;
itemChest = true;
}
}
Symbol 541 Button
on (release) {
if (_root.drops) {
invalid.gotoAndStop(2);
} else if (!itemDrops) {
drops._visible = true;
totalPrice = totalPrice + 5;
itemDrops = true;
}
}
Symbol 544 Button
on (release) {
if (_root.golfBall) {
invalid.gotoAndStop(2);
} else if (!itemGolfBall) {
golf._visible = true;
totalPrice = totalPrice + 5;
itemGolfBall = true;
}
}
Symbol 547 Button
on (release) {
if (_root.raisins) {
invalid.gotoAndStop(2);
} else if (!itemRaisins) {
raisins._visible = true;
totalPrice = totalPrice + 3;
itemRaisins = true;
}
}
Symbol 550 Button
on (release) {
if (_root.string) {
invalid.gotoAndStop(2);
} else if (!itemString) {
string._visible = true;
totalPrice = totalPrice + 2;
itemString = true;
}
}
Symbol 553 Button
on (release) {
if (_root.sunglass) {
invalid.gotoAndStop(2);
} else if (!itemSunglass) {
sunglass._visible = true;
totalPrice = totalPrice + 8;
itemSunglass = true;
}
}
Symbol 556 Button
on (release) {
if (_root.keyChain) {
invalid.gotoAndStop(2);
} else if (!itemChain) {
keyChain._visible = true;
totalPrice = totalPrice + 10;
itemChain = true;
}
}
Symbol 578 Button
on (release) {
_parent.bamboo._visible = false;
_parent.totalPrice = _parent.totalPrice - 10;
_parent.itemBamboo = false;
}
Symbol 583 Button
on (release) {
_parent.chest._visible = false;
_parent.totalPrice = _parent.totalPrice - 15;
_parent.itemChest = false;
}
Symbol 587 Button
on (release) {
_parent.drops._visible = false;
_parent.totalPrice = _parent.totalPrice - 5;
_parent.itemDrops = false;
}
Symbol 591 Button
on (release) {
_parent.raisins._visible = false;
_parent.totalPrice = _parent.totalPrice - 3;
_parent.itemRaisins = false;
}
Symbol 595 Button
on (release) {
_parent.string._visible = false;
_parent.totalPrice = _parent.totalPrice - 2;
_parent.itemString = false;
}
Symbol 598 Button
on (release) {
_parent.golf._visible = false;
_parent.totalPrice = _parent.totalPrice - 5;
_parent.itemGolfBall = false;
}
Symbol 602 Button
on (release) {
_parent.sunglass._visible = false;
_parent.totalPrice = _parent.totalPrice - 8;
_parent.itemSunglass = false;
}
Symbol 605 Button
on (release) {
_parent.keyChain._visible = false;
_parent.totalPrice = _parent.totalPrice - 10;
_parent.itemChain = false;
}
Symbol 607 Button
on (release) {
if (_root.turket >= totalPrice) {
gotoAndStop ("Shop Yes");
_root.turket = _root.turket - totalPrice;
if (itemBamboo) {
_root.bamboo = true;
}
if (itemChest) {
_root.chest = true;
}
if (itemDrops) {
_root.drops = true;
}
if (itemRaisins) {
_root.raisins = true;
}
if (itemString) {
_root.string = true;
}
if (itemGolfBall) {
_root.golfBall = true;
}
if (itemSunglass) {
_root.sunglass = true;
}
if (itemChain) {
_root.keyChain = true;
}
} else if (_root.turket < totalPrice) {
gotoAndStop ("Shop No");
shopItems = false;
}
totalPrice = 0;
}
Symbol 615 Button
on (release) {
if (passwordText == "qwerty") {
gotoAndStop ("Shop Talk Yes");
} else if (randomShopkeep <= 5) {
gotoAndStop ("Shop Talk No");
} else {
gotoAndStop ("No2");
}
}
Symbol 625 Button
on (release) {
if (_root.turket >= totalPrice) {
gotoAndStop ("Shop Yes");
_root.turket = _root.turket - totalPrice;
if (itemBottle) {
_root.bottle = true;
}
if (itemFeather) {
_root.peacockFeathers = true;
}
if (itemKey) {
_root.key = true;
}
} else if (_root.turket < totalPrice) {
gotoAndStop ("Shop No");
shopItems = false;
}
totalPrice = 0;
}
Symbol 628 Button
on (release) {
if (_root.peacockFeathers) {
invalid.gotoAndStop(2);
} else if (!itemFeather) {
feather._visible = true;
totalPrice = totalPrice + 20;
itemFeather = true;
}
}
Symbol 631 Button
on (release) {
if (_root.key) {
invalid.gotoAndStop(2);
} else if (!itemKey) {
key._visible = true;
totalPrice = totalPrice + 25;
itemKey = true;
}
}
Symbol 634 Button
on (release) {
if (_root.bottle) {
invalid.gotoAndStop(2);
} else if (!itemBottle) {
bottle._visible = true;
totalPrice = totalPrice + 15;
itemBottle = true;
}
}
Symbol 637 Button
on (release) {
_parent.bottle._visible = false;
_parent.totalPrice = _parent.totalPrice - 15;
_parent.itemBottle = false;
}
Symbol 641 Button
on (release) {
_parent.feather._visible = false;
_parent.totalPrice = _parent.totalPrice - 20;
_parent.itemFeather = false;
}
Symbol 645 Button
on (release) {
_parent.key._visible = false;
_parent.totalPrice = _parent.totalPrice - 25;
_parent.itemKey = false;
}
Symbol 744 MovieClip Frame 1
stop();
var totalPrice = 0;
var randomShopkeep = 0;
var spacePressTimer = 0;
var drinkNumber = 0;
drinkMint = false;
drinkBourbon = false;
drinkSoda = false;
drinkRum = false;
drinkAngostura = false;
drinkWhiskey = false;
drinkSugar = false;
drinkSyrup = false;
drinkLemon = false;
itemBamboo = false;
itemChest = false;
itemDrops = false;
itemBottle = false;
itemRaisins = false;
itemString = false;
itemGolfBall = false;
itemSungalss = false;
itemChain = false;
itemFeather = false;
itemKey = false;
bourbonBtn = true;
mintBtn = true;
sugarBtn = true;
sodaBtn = true;
rumBtn = true;
whiskeyBtn = true;
syrupBtn = true;
angosturaBtn = true;
lemonBtn = true;
shopItems = new Array("itemBamboo", "itemChest", "itemDrops", "itemBottle", "itemRaisins", "itemsString", "itemsGolfBall", "itemSunglass", "itemChain");
onEnterFrame = function () {
randomShopkeep = Math.floor(Math.random() * 10) + 1;
trace(drinkNumber);
};
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 2
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("MT2");
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 11
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(_parent._currentframe + 4);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 39
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 43
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("map");
spaceTimer = 0;
}
}
}
Symbol 744 MovieClip Frame 49
_root.map = true;
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 49
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
_root.mainCheck = _root.mainCheck + 1;
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 55
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 59
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("MT12");
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 64
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_root.fadein.play();
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 71
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 83
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("lt4");
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 87
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 100
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("eyes");
spaceTimer = 0;
}
}
}
Symbol 744 MovieClip Frame 109
_root.eyes = true;
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 109
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 211
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("tofu");
spaceTimer = 0;
}
}
}
Symbol 744 MovieClip Frame 217
_root.tofu = true;
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 217
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 248
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("buyChoose");
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 256
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 263
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("wasabi");
spaceTimer = 0;
}
}
}
Symbol 744 MovieClip Frame 269
_root.wasabi = true;
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 269
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 437 MovieClip in Symbol 744 MovieClip Frame 269
onClipEvent (enterFrame) {
this._x = _root.player._x;
this._y = _root.player._y - 50;
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 283
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("mix drink");
spaceTimer = 0;
}
}
}
Instance of Symbol 477 MovieClip "bourbon" in Symbol 744 MovieClip Frame 292
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 480 MovieClip "soda" in Symbol 744 MovieClip Frame 292
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 483 MovieClip "rum" in Symbol 744 MovieClip Frame 292
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 486 MovieClip "angostura" in Symbol 744 MovieClip Frame 292
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 489 MovieClip "whiskey" in Symbol 744 MovieClip Frame 292
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 492 MovieClip "mint" in Symbol 744 MovieClip Frame 292
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 495 MovieClip "sugar" in Symbol 744 MovieClip Frame 292
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 498 MovieClip "syrup" in Symbol 744 MovieClip Frame 292
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 501 MovieClip "lemon" in Symbol 744 MovieClip Frame 292
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 332
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 357
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("ShopT2");
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 366
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("Choose");
spaceTimer = 0;
}
}
}
Instance of Symbol 580 MovieClip "bamboo" in Symbol 744 MovieClip Frame 381
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 584 MovieClip "chest" in Symbol 744 MovieClip Frame 381
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 588 MovieClip "drops" in Symbol 744 MovieClip Frame 381
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 592 MovieClip "raisins" in Symbol 744 MovieClip Frame 381
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 596 MovieClip "string" in Symbol 744 MovieClip Frame 381
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 599 MovieClip "golf" in Symbol 744 MovieClip Frame 381
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 603 MovieClip "sunglass" in Symbol 744 MovieClip Frame 381
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 606 MovieClip "keyChain" in Symbol 744 MovieClip Frame 381
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 390
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 406
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("Shop Talk 2");
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 423
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 441
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("Choose item 2");
spaceTimer = 0;
}
}
}
Instance of Symbol 638 MovieClip "bottle" in Symbol 744 MovieClip Frame 451
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 642 MovieClip "feather" in Symbol 744 MovieClip Frame 451
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 646 MovieClip "key" in Symbol 744 MovieClip Frame 451
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 470
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 801
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("C14d2");
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 806
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 827
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("Fake Eyes 1");
spaceTimer = 0;
}
}
}
Symbol 744 MovieClip Frame 834
_root.fakeEyes = true;
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 834
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 917
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("CT17c");
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 923
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("CT17d");
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 929
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 1057
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
if (_root.bottle) {
_parent.gotoAndStop("Poe 3");
} else {
_parent.gotoAndStop("Poe 2");
}
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 1063
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 1068
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop("Fire");
spaceTimer = 0;
}
}
}
Symbol 744 MovieClip Frame 1072
_root.bottleFire = true;
Instance of Symbol 362 MovieClip in Symbol 744 MovieClip Frame 1072
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
}
}
}
Symbol 752 Button
on (release) {
if (_root.player.hitTest(_root.grave1)) {
_root.grave1.gotoAndStop(2);
_root.itemConvo.gotoAndStop("Dig Nothing");
} else if (_root.player.hitTest(_root.grave2) && (_root.patis)) {
_root.grave2.gotoAndStop(2);
_root.itemConvo.gotoAndStop("Dig Nothing");
} else if (_root.player.hitTest(_root.grave3)) {
_root.grave3.gotoAndStop(2);
_root.itemConvo.gotoAndStop("Dig Nothing");
} else if (_root.player.hitTest(_root.grave4)) {
_root.grave4.gotoAndStop(2);
_root.itemConvo.gotoAndStop("Dig Nothing");
} else if (_root.player.hitTest(_root.grave5)) {
_root.grave5.gotoAndStop(2);
_root.itemConvo.gotoAndStop("coatGET");
_root.coat = true;
} else if (_root.player.hitTest(_root.grave6)) {
_root.grave6.gotoAndStop(2);
_root.itemConvo.gotoAndStop("Dig Nothing");
} else if (_root.player.hitTest(_root.grave7)) {
_root.grave7.gotoAndStop(2);
_root.itemConvo.gotoAndStop("Dig Nothing");
} else if (_root.player.hitTest(_root.grave8)) {
_root.grave8.gotoAndStop(2);
_root.itemConvo.gotoAndStop("Dig Nothing");
} else {
_root.itemConvo.gotoAndStop("Nothing");
}
_root.itemActive = false;
}
Symbol 753 MovieClip Frame 1
stop();
Symbol 753 MovieClip Frame 2
stop();
Symbol 754 Button
on (release) {
_parent.gotoAndStop(1);
_root.itemConvo.gotoAndStop("Nothing");
}
Symbol 756 MovieClip Frame 1
stop();
Symbol 756 MovieClip Frame 2
stop();
Symbol 758 MovieClip Frame 1
stop();
Symbol 759 Button
on (release) {
_root.itemConvo.gotoAndStop("gunUse");
_parent.gotoAndStop(1);
}
Symbol 761 MovieClip Frame 1
stop();
Symbol 761 MovieClip Frame 2
stop();
Symbol 762 Button
on (release) {
gotoAndStop (3);
_root.itemConvo.gotoAndStop("sunglassOn");
_root.turkeySunglass = true;
_root.hud.gotoAndStop(1);
_root.sunglass = false;
}
Symbol 763 Button
on (release) {
_root.itemConvo.gotoAndStop("sunglassOff");
_root.turkeySunglass = false;
_root.sungalss = true;
_parent.gotoAndStop(1);
}
Symbol 764 MovieClip Frame 1
stop();
Symbol 764 MovieClip Frame 2
stop();
Symbol 765 Button
on (release) {
_parent.gotoAndStop(1);
_root.itemConvo.gotoAndStop("Nothing");
}
Symbol 766 MovieClip Frame 1
stop();
Symbol 766 MovieClip Frame 2
stop();
Symbol 767 Button
on (release) {
_root.turket = _root.turket + 30;
_root.chestItem = true;
_root.itemConvo.gotoAndStop("chestGET");
}
Symbol 768 Button
on (release) {
_parent.gotoAndStop(1);
_root.itemConvo.gotoAndStop("chest Empty");
}
Symbol 769 MovieClip Frame 1
stop();
Symbol 769 MovieClip Frame 2
stop();
Symbol 770 Button
on (release) {
_parent.gotoAndStop(1);
_root.itemConvo.gotoAndStop("Nothing");
}
Symbol 772 MovieClip Frame 1
stop();
Symbol 772 MovieClip Frame 2
stop();
Symbol 773 Button
on (release) {
_root.itemConvo.gotoAndStop("Nothing");
_parent.gotoAndStop(1);
}
Symbol 774 MovieClip Frame 1
stop();
Symbol 774 MovieClip Frame 2
stop();
Symbol 775 Button
on (release) {
_parent.gotoAndStop("Map");
}
Symbol 776 MovieClip Frame 1
stop();
Symbol 776 MovieClip Frame 2
stop();
Symbol 777 Button
on (release) {
_parent.gotoAndStop(1);
_root.itemConvo.gotoAndStop("Nothing");
}
Symbol 779 MovieClip Frame 1
stop();
Symbol 779 MovieClip Frame 2
stop();
Symbol 780 Button
on (release) {
_parent.gotoAndStop(1);
_root.itemConvo.gotoAndStop("Nothing");
}
Symbol 782 MovieClip Frame 1
stop();
Symbol 782 MovieClip Frame 2
stop();
Symbol 783 Button
on (release) {
_parent.gotoAndStop(1);
_root.itemConvo.gotoAndStop("Nothing");
}
Symbol 785 MovieClip Frame 1
stop();
Symbol 785 MovieClip Frame 2
stop();
Symbol 786 Button
on (release) {
_parent.gotoAndStop(1);
_root.itemConvo.gotoAndStop("Nothing");
}
Symbol 787 MovieClip Frame 1
stop();
Symbol 787 MovieClip Frame 2
stop();
Symbol 788 Button
on (release) {
_parent.gotoAndStop(1);
_root.itemConvo.gotoAndStop("Nothing");
}
Symbol 790 Button
on (release) {
_parent.gotoAndStop(1);
_root.itemConvo.gotoAndStop("Nothing");
}
Symbol 792 MovieClip Frame 1
stop();
Symbol 792 MovieClip Frame 2
stop();
Symbol 792 MovieClip Frame 3
stop();
Symbol 793 Button
on (release) {
_parent.gotoAndStop(1);
_root.itemConvo.gotoAndStop("Nothing");
}
Symbol 795 MovieClip Frame 1
stop();
Symbol 795 MovieClip Frame 2
stop();
Symbol 796 Button
on (release) {
gotoAndStop (1);
}
Symbol 821 MovieClip Frame 1
stop();
Symbol 835 MovieClip Frame 1
stop();
Symbol 838 MovieClip Frame 1
stop();
Symbol 838 MovieClip Frame 2
stop();
Symbol 881 MovieClip Frame 1
stop();
chestItem = false;
Symbol 881 MovieClip Frame 2
stop();
Instance of Symbol 753 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.shovel) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 756 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.feathers) {
this.gotoAndStop(3);
} else if (_root.peacockFeathers) {
this.gotoAndStop(2);
}
}
Instance of Symbol 761 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.shovel) {
this.gotoAndStop(3);
} else if (_root.gun) {
this.gotoAndStop(2);
}
}
Instance of Symbol 764 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.sunglass) {
this.gotoAndStop(2);
}
}
Instance of Symbol 766 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.keyChain) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 769 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.chestItem) {
this.gotoAndStop(3);
} else if (_root.chest) {
this.gotoAndStop(2);
}
}
Instance of Symbol 772 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.tofu) {
this.gotoAndStop(3);
} else if (_root.wasabi) {
this.gotoAndStop(2);
}
}
Instance of Symbol 774 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.key) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 776 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.map) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 779 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.fakeEyes) {
this.gotoAndStop(3);
} else if (_root.raisins) {
this.gotoAndStop(2);
}
}
Instance of Symbol 782 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.fakeEyes) {
this.gotoAndStop(3);
} else if (_root.string) {
this.gotoAndStop(2);
}
}
Instance of Symbol 785 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.fakeEyes) {
this.gotoAndStop(3);
} else if (_root.golfBall) {
this.gotoAndStop(2);
}
}
Instance of Symbol 787 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.bamboo) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 792 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.fakeEyes) {
this.gotoAndStop(4);
} else if (_root.bottleFire) {
this.gotoAndStop(3);
} else if (_root.bottle) {
this.gotoAndStop(2);
}
}
Instance of Symbol 795 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.fakeEyes) {
this.gotoAndStop(3);
} else if (_root.drops) {
this.gotoAndStop(2);
}
}
Instance of Symbol 801 MovieClip in Symbol 881 MovieClip Frame 8
onClipEvent (enterFrame) {
if (_root.feathers) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 803 MovieClip in Symbol 881 MovieClip Frame 8
onClipEvent (enterFrame) {
if (_root.beak) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 805 MovieClip in Symbol 881 MovieClip Frame 8
onClipEvent (enterFrame) {
if (_root.coat) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 807 MovieClip in Symbol 881 MovieClip Frame 8
onClipEvent (enterFrame) {
if (_root.patis) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 810 MovieClip in Symbol 881 MovieClip Frame 8
onClipEvent (enterFrame) {
if (_root.eyes) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 812 MovieClip in Symbol 881 MovieClip Frame 8
onClipEvent (enterFrame) {
if (_root.tofu) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 821 MovieClip in Symbol 881 MovieClip Frame 8
onClipEvent (enterFrame) {
if (_root.patis) {
this.ppatis._visible = true;
} else {
this.ppatis._visible = false;
}
if (_root.tofu) {
this.ttofu._visible = true;
} else {
this.ttofu._visible = false;
}
if (_root.coat) {
this.ccoat._visible = true;
} else {
this.ccoat._visible = false;
}
if (_root.feathers) {
this.ffeathers._visible = true;
} else {
this.ffeathers._visible = false;
}
if (_root.beak) {
this.bbeak._visible = true;
} else {
this.bbeak._visible = false;
}
if (_root.eyes) {
this.eeyes._visible = true;
} else {
this.eeyes._visible = false;
}
}
Symbol 881 MovieClip Frame 11
stop();
Symbol 881 MovieClip Frame 19
stop();
Symbol 934 MovieClip Frame 1
stop();
var spacePressTimer = 0;
Instance of Symbol 362 MovieClip in Symbol 934 MovieClip Frame 2
onClipEvent (load) {
spaceTimer = _parent.spacePressTimer;
}
onClipEvent (enterFrame) {
spaceTimer++;
if (spaceTimer >= 15) {
if (Key.isDown(32)) {
_parent.gotoAndStop(1);
spaceTimer = 0;
_root.graveActive = true;
}
}
}
Symbol 937 MovieClip Frame 1
stop();
Symbol 937 MovieClip Frame 17
_root.gotoAndPlay("end");
Symbol 938 MovieClip Frame 11
stop();
Symbol 949 MovieClip Frame 1
stop();
Symbol 1159 Button
on (release) {
endSong.stop();
_root.menuSong.start(0, 10);
gotoAndPlay ("Main Menu");
}