For those of us that don't have hours trying to solve the large puzzle of mwolfs 
01000111 01101111 01110100 00100000 01000011 01101111 01100110 01100110 01100101 01100101 00111111
The never-completed website:
Code:
<HTML>
<head>
<style>
select{
width:65px;
}
option{
text-align: center;
}
.slots{
padding: 20px;
background-color: #AAAACC;
border: 2px solid #8888AA;
width:240px;
}
.message{
padding:20px;
width:240px;
background-color: #AAAACC;
border: 2px solid #8888AA;
text-align: center;
color: purple;
font-size: 20px;
}
.arm{
width:35px;
height: 100px;
color: #003399;
background-color: #9999BB;
border: 2px solid #777799;
}
</style>
<script>
var tokens = 25;
var wheels, wheels_cur, wheels_tar;
var choices = ["cherry","banana","apple","cherry","melon","cherry","banana","7","banana","melon","apple","777","[BAR]","apple","melon"];
function MakeEm(){
var i, slots, a_wheel;
slots = document.getElementById("slot_machine");
slots.innerHTML = "";
a_wheel = "<select name='wheel' size='5'></select>";
for(i = 0;i<3;i++){
slots.innerHTML += a_wheel;
}
wheels = document.getElementsByName("wheel");
wheels_cur = new Array(wheels.length);
wheels_tar = new Array(wheels.length);
var x;
for(x=0;x<wheels.length;x++){
wheels_cur[x] = 0;
}
GraphEm();
frmChoice.txtTokens.value="25";
}
function SpinEm(){
var x, y;
y = 0;
for(x=0;x<wheels.length;x++){
y = Math.floor((Math.random() * choices.length) + y + 2 * choices.length);
wheels_tar[x] = (wheels_cur[x] + y);
}
setTimeout("NudgeEm();",50);
document.getElementById("slot_arm").disabled = true;
}
function NudgeEm(){
var x;
var done = true;
for(x=0;x<wheels.length;x++){
if(wheels_tar[x] != wheels_cur[x]){
wheels_cur[x] = (wheels_cur[x] + 1);
done = false;
}
}
GraphEm();
for(x=0;x<wheels.length;x++){
if(wheels_tar[x] == wheels_cur[x]){
wheels[x].selectedIndex=2;
}
}
if(done){
PayEm();
}
else{
setTimeout("NudgeEm();",75);
}
}
function GraphEm(){
var x;
var y;
var opt;
for(x = 0;x < wheels.length;x++){
CleanEm(wheels[x]);
for(y = 0;y < 5;y++){
opt = ((choices.length - 1) + wheels_cur[x] - 1 + y) % choices.length;
wheels[x].options[y] = new Option(choices[opt],choices[opt]);
}
}
}
function CleanEm(elem){
var i;
for(i=elem.options.length-1;i>=0;i--){
elem.options[i] = null;
}
}
function PayEm(){
//center row
// 1 cherry - 1 tokens
// 2 cherry - 5 tokens
// 2 fruit + 1 cherry - 25 tokens
// 3 fruit - 25 tokens
// 3 cherry - 25 tokens
// 2 7's - 35 tokens
// 2 777's - 35 tokens
// 2 7's, 1 777 - 40 tokens
// 1 7, 2 777's - 50 tokens
// 3 7's - 125 tokens
// 3 777's - 250 tokens
// 3 bars - 500 tokens
var x;
var cherries, apples, melons, bananas, sevens, triples, bars;
cherries = 0;
apples = 0;
melons = 0;
bananas = 0;
sevens = 0;
triples = 0;
bars = 0;
for(x=0;x<wheels.length;x++){
switch(wheels[x].options[2].value){
case "cherry":
cherries++;
break;
case "apple":
apples++;
break;
case "melon":
melons++;
break;
case "banana":
bananas++;
break;
case "7":
sevens++;
break;
case "777":
triples++;
break;
case "[bar]":
bars++;
break;
}
}
if(bars == 3){
FlashEm(500);
}
else if(triples == 3){
FlashEm(250);
}
else if(sevens == 3){
FlashEm(125);
}
else if((triples == 2)&&(sevens==1)){
FlashEm(50);
}
else if((triples == 1)&&(sevens==2)){
FlashEm(40);
}
else if(cherries==3){
FlashEm(25);
}
else if((apples == 3)||(melons==3)||(bananas==3)){
FlashEm(25);
}
else if(cherries==2){
FlashEm(15);
}
else if(((apples == 2)||(melons==2)||(bananas==2))&&(cherries==1)){
FlashEm(25);
}
else if((triples == 2)||(sevens==2)){
FlashEm(35);
}
else if(cherries==1){
FlashEm(1);
}
document.getElementById("slot_arm").disabled = false;
}
function FlashEm(num){
var msg = document.getElementById("message");
if(msg.style.borderColor != "red"){
msg.innerText = "Winner!";
msg.style.borderStyle = "dotted";
msg.style.borderColor = "red";
}
else{
msg.innerText = "Winner!";
msg.style.borderStyle = "dashed";
msg.style.borderColor = "yellow";
}
if(num == 0){
msg.innerText = "Tarwn's Slot Machine!";
msg.style.borderStyle = "solid";
msg.style.borderColor = "#AAAACC";
}
else{
frmChoice.txtTokens.value = parseInt(frmChoice.txtTokens.value) + 1;
setTimeout("FlashEm(" + (num - 1) + ");",100);
}
}
function ChargeEm(){
var amt = parseInt(frmChoice.txtTokens.value);
if(amt == 0){
alert("You seem to be out of cash, better luck next time.")
}
else{
amt = amt - 1;
frmChoice.txtTokens.value = amt;
}
SpinEm();
}
</script>
</head>
<body onLoad="MakeEm();">
<span class="message" id="message">Tarwn's Slot Machine</span><br>
<span id="slot_machine" class="slots">
</span>
<input type="button" onClick="ChargeEm();" value="Spin" class="arm" id="slot_arm">
<form name="frmChoice">
Tokens: <input type="text" name="txtTokens" value="0" readonly>
</form>
<table style="font:verdana;border: 1px solid #aaaacc;"><tr><th>Payoffs</th></tr>
<tr><td>1 cherry</td><td>1 tokens</td></tr>
<tr><td>2 cherry</td><td>5 tokens</td></tr>
<tr><td>2 fruit + 1 cherry </td><td>25 tokens</td></tr>
<tr><td>3 fruit </td><td>25 tokens</td></tr>
<tr><td>3 cherry</td><td>25 tokens</td></tr>
<tr><td>2 7's </td><td>35 tokens</td></tr>
<tr><td>2 777's </td><td>35 tokens</td></tr>
<tr><td>2 7's, 1 777</td><td>40 tokens</td></tr>
<tr><td>1 7, 2 777's</td><td>50 tokens</td></tr>
<tr><td>3 7's </td><td>125 tokens</td></tr>
<tr><td>3 777's</td><td>250 tokens</td></tr>
<tr><td>3 bars</td><td>500 tokens</td></tr></table>
</body>
</html>
01000111 01101111 01110100 00100000 01000011 01101111 01100110 01100110 01100101 01100101 00111111
The never-completed website: