Community

General and Everything Else => The Games and other Sierra Adventure stuff => Topic started by: OmerMor on December 31, 2015, 04:46:42 PM

Title: The Colonel's Bequest - New Easter Egg
Post by: OmerMor on December 31, 2015, 04:46:42 PM
Check out my video:
https://youtu.be/jykB6ZjxBAM (https://youtu.be/jykB6ZjxBAM)

I explained it all in the video's description, but I'll paste it here as well:
The Colonel's Bequest features a very elusive easter egg of a flying statue.
Using SCI Companion (http://sciprogramming.com/community/index.php?topic=1420.0), I was able to decompile the game's scripts and figure out what triggers it.
It turned out, the egg will trigger randomly when entering the room outside the back of the mansion, with a chance of 1:200.
So this very low chance explains the very few reports of this egg.

I changed the script to increase the triggering probability, and was finally able to trigger the egg.

But wait - there's more! =)

The script refers to an airplane, and not a statue. Looking at the object's view (104) I noticed it contains 3 loops. The first is a statue, the second shows the benches, and the third is a never-before-seen airplane.
The script sets the airplane's loop to 3, but since we use zero-based counting, the airplane's loop should've been 2.
Fixing the script once again, I was able to trigger the egg as it was meant to be seen.

For the curious, here are the relevant snippets from the decompiled script: http://pastebin.com/DbqCf3p6

The patched script can be downloaded from here:
https://drive.google.com/file/d/0B5j-_ZMS8_UoODNSczlEY0o0TUU/view?usp=sharing
The archive contains 2 flavors: the original flying statue, and the fixed airplane.
To use it, simply rename the one you want to SCRIPT.004, put it in the game's folder, and run the game.
Title: Re: The Colonel's Bequest - New Easter Egg
Post by: Cloudee1 on December 31, 2015, 04:54:51 PM
Did you change the sound resource between the two vids? I noticed in the first one, it is just the engine sound but the bit with the plane sounds like some strafing fire towards the end as well. If all you did was change the loop does that mean that it is also randomly picking the sound it plays with it as well.

I suppose I  could just look myself  :P
Title: Re: The Colonel's Bequest - New Easter Egg
Post by: OmerMor on December 31, 2015, 04:59:08 PM
Title: Re: The Colonel's Bequest - New Easter Egg
Post by: Collector on January 01, 2016, 01:24:23 AM
Apparently this is Douglas Herring's egg. https://www.facebook.com/groups/SierraHelpPages/permalink/1656863744553476/ There is another one he mentions -- Gertie's chain saw death.
Title: Re: The Colonel's Bequest - New Easter Egg
Post by: lskovlun on January 01, 2016, 07:03:24 AM
Apparently this is Douglas Herring's egg. https://www.facebook.com/groups/SierraHelpPages/permalink/1656863744553476/ There is another one he mentions -- Gertie's chain saw death.
Nice to see his input on it. It should have had a cycler of some sort, though.

Good find!