Jump to content
MakeWebGames

[mccode v2] Casino Mod: Blackjack [$30]


seanybob

Recommended Posts

This is a blackjack mod. Play is the same as blackjack in the casino, with a few special rules:

-People can't card count effectively, as the deck is completely reshuffled after each hand.

-Splits aren't allowed

Currently has Blackjack payout at 3:2 (standard) and dealer stands on all 17s (semi-standard).

Makes extensive use of javascript - and moreover, is very addicting. I encourage you to try it out on the demo.

Without further ado...

Pics:

http://i292.photobucket.com/albums/mm15 ... /bet-1.png

http://i292.photobucket.com/albums/mm15 ... /show1.png

http://i292.photobucket.com/albums/mm15 ... /show2.png

http://i292.photobucket.com/albums/mm15 ... /show3.png

http://i292.photobucket.com/albums/mm15 ... /show4.png

Demo:

http://seanybob.net/mccodesv2

Cost: $30

My paypal: [email protected]

If you like this mod, check out my other mods. Also, send me a PM if you have any other casino games you want to see out here.

Link to comment
Share on other sites

  • 2 months later...

Re: [mccode v2] Casino Mod: Blackjack [$30]

found bug, cant get him seems he is having trouble, here is fix.

Open blackjack.php

find:

 

else if($_GET['act']=='double')
{

 

Add after

 

if($bb['betAmount'] * 2 > $ir['money'])
{
$fix_1 = sprintf("DELETE FROM blackjack WHERE userid = %u",abs(@intval($ir['userid'])));
$fix_2 = sprintf("UPDATE users SET money = money + %u WHERE userid = %u",abs(@intval($bb['betAmount'])),abs(@intval($ir['userid'])));
$db->query($fix_2);
$db->query($fix_1);
$error="You do not have that much money. Click here to start over. <a href=blackjack.php>HERE</a>.";
}
Link to comment
Share on other sites

  • 2 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...