Created: 10/02/2017
By: Code This Lab S.r.l.
Email: info@codethislab.com
Thank you for purchasing our game. If you have any questions that are beyond the scope of this help file, please feel free to email via user page contact form here. Thanks so much!
Joker Poker is a HTML5 casino game. "Joker Poker" is a well-known variant of the classic video poker game with 53 cards. The extra card is the joker that substitutes any other cards in order to make a winning poker hand
The ZIP package contains the game with 1920x768 resolution that scales to fit the whole screen device
Just warning that for very wide screens, the game may not be perfectly full screen.
The game is fully compatible with all most common mobile devices.
Sounds are enabled for mobile but we can't grant full audio compatibility on all mobile devices due to some well-known issue between some mobile-browser and HTML5.
So if you want to avoid sound loading, please read Disable Sound section).
WARNING: Sounds can't be enabled for Windows Phone as this kind of device have unsolved issues with 'audio' and 'video' tag.
To install the game just upload on your server the game folder live_demo.
$(document).ready(function(){ var oMain = new CMain(); $(oMain).on("save_score", function(evt,iScore) { //alert("iScore: "+iScore ); }); });
$(oMain).on("recharge", function(evt) { yourPhpFunction(); });
TEXT_NO_MONEY = "NOT ENOUGH MONEY"; TEXT_PLAY = "PLAY"; TEXT_BET = "BET"; TEXT_WIN = "WIN"; TEXT_MONEY = "MONEY"; TEXT_DEAL = "DEAL"; TEXT_BET_ONE = "BET ONE"; TEXT_MAX_BET = "BET MAX"; TEXT_RECHARGE = "RECHARGE"; TEXT_EXIT = "EXIT"; TEXT_DRAW = "DRAW"; TEXT_NO_WIN = "NO WIN"; TEXT_CURRENCY = "$"; TEXT_DOUBLE_UP = "DOUBLE UP"; TEXT_DOUBLE = "DOUBLE"; TEXT_DOUBLE_HALF = "DOUBLE HALF"; TEXT_YOU_WON = "YOU WON"; TEXT_YOU_LOSE = "YOU LOSE"; TEXT_DOUBLEUP_TO = "DOUBLE UP TO"; TEXT_DOUBLE_HALF_TO = "DOUBLE HALF TO"; TEXT_COLLECT = "COLLECT"; TEXT_DEALER_CARD = "DEALER CARD"; TEXT_CHOOSE_CARD = "CHOOSE A CARD!"; TEXT_CREDITS_DEVELOPED = "DEVELOPED BY"; TEXT_COMBO = new Array( "Natural Royal Flush", "5 of a Kind", "Royal Flush", "Straight Flush", "Four of a Kind", "Full House", "Flush", "Straight", "Three of a Kind", "Two Pair", "Kings or Better" ); TEXT_CONGRATULATIONS = "Congratulations!"; TEXT_SHARE_1 = "You collected "; TEXT_SHARE_2 = " points!
Share your score with your friends!"; TEXT_SHARE_3 = "My score is "; TEXT_SHARE_4 = " points! Can you do better?";
var oMain = new CMain({ win_occurrence: 40, //WIN OCCURRENCE PERCENTAGE double_occurrence:30, //OCCURRENCE FOR DOUBLE BET double_half_occurrence:60, //OCCURRENCE FOR DOUBLE HALF BET game_cash: 100, //MONEY IN GAME CASH. IF THE GAME DOESN'T HAVE ENOUGHT MONEY, THE PLAYER MUST LOSE. bets: [0.2,0.3,0.5,1,2,3,5], //ALL THE AVAILABLE BETS FOR THE PLAYER combo_prizes: [250,200,100,50,17,7,5,3,2,1,1], //WINS FOR FIRST COLUMN: Natural Royal Flush, //5 of a Kind, Royal Flush,Straight Flush, Four of a Kind, Full House, //Flush, Straight, Three of a Kind,Two Pair,Kings or Better money: 100, //STARING CREDIT FOR THE USER recharge:true, //RECHARGE WHEN MONEY IS ZERO. SET THIS TO FALSE TO AVOID AUTOMATIC RECHARGE audio_enable_on_startup:false, //ENABLE/DISABLE AUDIO WHEN GAME STARTS fullscreen:true, //SET THIS TO FALSE IF YOU DON'T WANT TO SHOW FULLSCREEN BUTTON check_orientation:true, //SET TO FALSE IF YOU DON'T WANT TO SHOW ORIENTATION ALERT ON MOBILE DEVICES show_credits:true, //ENABLE/DISABLE CREDITS BUTTON IN THE MAIN SCREEN num_hand_before_ads:10 //NUMBER OF HANDS PLAYED BEFORE AD SHOWN // //// THIS FUNCTIONALITY IS ACTIVATED ONLY WITH CTL ARCADE PLUGIN./////////////////////////// /////////////////// YOU CAN GET IT AT: ///////////////////////////////////////////////////////// // http://codecanyon.net/item/ctl-arcade-wordpress-plugin/13856421 /////////// });
This game have the canvas tag in the body. The ready event into the body calls the main function of the game: CMain().
The head section declares all the javascript functions of the game. The whole project uses a typical object-oriented approach.
In the init function there are 6 mapped events that can be useful eventually for stats
The game use two CSS files. The first one is a generic reset file. Many browser interpret the default behavior of html elements differently. By using a general reset CSS file, we can work round this. Keep in mind, that these values might be overridden somewhere else in the file.
The second file contains all of the specific stylings for the canvas and some hack to be fully compatible with all most popular mobile devices
This game contains:
Resuming, the complete game flow is the following:
The game contains the card spritesheets that you can edit if you want to change card images.
Currently each card has following dimensions: 154x240. So if you change card size, be sure to change also card setting in settings.js file.
If you want to disable all the sounds for mobile devices, you have to change the following value in settings.js file:
var DISABLE_SOUND_MOBILE = true;
If you want to hide credits in main menu, change to false the following value in index.html file:
show_credits:false
CTL Arcade will allow you to add a real arcade on your worpress website, in this way your users will be more involved and will stay connected longer.
It's possible to add Ads banner at the beginning of each game and at the end of each level. This will give you a new tool to increase your revenues.
Your own users will promote your website sharing their scores on the main Social Networks, with no extra costs for you.
You'll get by default the score-sharing on Twitter. To add Facebook just follow the guideline below.
3 widgets can be added in your pages through a shortcode.
Once again, thank you so much for purchasing this game. Fell free to contact us if you have any questions or issue relating to this game. No guarantees, but we'll do our best to assist.