Fishworld Blackjack
Single deck blackjack with all exceptions.
by cagito
HTML
>Made by: Cagito<br>
A guide to help you in playing Blackjack on Fishworld. Do as it says to lose the least or win the most over time. <br>(Updated 5/17/14 6:36 am) Works 100% correct. If you find any bugs contact me on FB.<br>If it tells you different than <a href='http://wizardofodds.com/games/blackjack/appendix/3c/' target='_Blank'>Than this list</a> please let me know what it did thank you.
<form action='' onsubmit='return false;'>
<button onclick='Start_Over();'>Reset</button><br>
Player Cards: Dealer Card:<br>
<button onclick='Take("p",2,"2");'>2</button>
<button onclick='Take("p",3,"3");'>3</button>
<button onclick='Take("p",4,"4");'>4</button>
<button onclick='Take("p",5,"5");'>5</button>
<button onclick='Take("p",6,"6");'>6</button>
<button onclick='Take("p",7,"7");'>7</button>
<button onclick='Take("d",2,"2");'>2</button>
<button onclick='Take("d",3,"3");'>3</button>
<button onclick='Take("d",4,"4");'>4</button>
<button onclick='Take("d",5,"5");'>5</button>
<button onclick='Take("d",6,"6");'>6</button>
<button onclick='Take("d",7,"7");'>7</button>
<br>
<button onclick='Take("p",8,"8");'>8</button>
<button onclick='Take("p",9,"9");'>9</button>
<button onclick='Take("p",10,"10");'>10</button>
<button onclick='Take("p",10,"J");'>J</button>
<button onclick='Take("p",10,"Q");'>Q</button>
<button onclick='Take("p",10,"K");'>K</button>
<button onclick='Take("p",1,"A");'>A</button>
<button...
JavaScript
var DHS = // H, DD, DH, DS, S
[
// A 2 3 4 5 6 7 8 9 T
[''],[''],[''],[''],[''], //hards = value
[ '', 'H', 'H', 'H', 'H', 'H', 'H', 'H', 'H', 'H', 'H'], // Hard 5
[ '', 'H', 'H', 'H', 'H', 'H', 'H', 'H', 'H', 'H', 'H'], // Hard 6
[ '', 'H', 'H', 'H', 'H', 'H', 'H', 'H', 'H', 'H', 'H'], // Hard 7
[ '', 'H', 'H', 'H', 'H', 'DH', 'DH', 'H', 'H', 'H', 'H'], // Hard 8 done
[ '', 'H', 'DH', 'DH', 'DH', 'DH', 'DH', 'H', 'H', 'H', 'H'], // Hard 9 done
[ '', 'H', 'DH', 'DH', 'DH', 'DH', 'DH', 'DH', 'DH', 'DH', 'H'], // Hard 10 done
[ '', 'DH', 'DH', 'DH', 'DH', 'DH', 'DH', 'DH', 'DH', 'DH', 'DH'], // Hard 11 done
[ '', 'H', 'H', 'H', 'S', 'S', 'S', 'H', 'H', 'H', 'H'], // Hard 12 2,3 H
[ '', 'H', 'S', 'S', 'S', 'S', 'S', 'H', 'H', 'H', 'H'], // Hard 13
[ '', 'H', 'S', 'S', 'S', 'S', 'S', 'H', 'H', 'H', 'H'], // Hard 14
[ '', 'H', 'S', 'S', 'S', 'S', 'S', 'H', 'H', 'H', 'H'], // Hard 15
[ '', 'H', 'S', 'S', 'S', 'S', 'S', 'H', 'H', 'H', 'H'], // Hard 16
[ '', 'S', 'S', 'S', 'S', 'S', 'S', 'S', 'S', 'S', 'S'], // Hard 17
[ '', 'S', 'S', 'S', 'S', 'S', 'S', 'S', 'S', 'S', 'S'], // Hard 18
[ '', 'S', 'S', 'S', 'S', 'S', 'S', 'S', 'S', 'S', 'S'], // Hard 19
[ '', 'S', 'S', 'S', 'S', 'S', 'S', 'S', 'S', 'S', 'S'], // Hard 20
[ '', 'S', 'S', 'S', 'S', 'S', 'S', 'S', 'S', 'S', 'S'], // Hard 21
//[''],//softs + 10
[], // Soft 12 a,a
[ '', 'H', 'H', 'H', 'DH', 'DH', 'DH', 'H', 'H', 'H', 'H'], // Soft 13
[ '', 'H', 'H', 'H', 'DH', 'DH', 'DH', 'H', 'H', 'H', 'H'], // Soft 14
[ '', 'H', 'H', 'H', 'DH', 'DH', 'DH', 'H', 'H', 'H', 'H'], // Soft 15
[ '', 'H', 'H', 'H', 'DH', 'DH', 'DH', 'H', 'H', 'H', 'H'], // Soft 16
[ '', 'H', 'DH',...