Created: 21/10/2017
By: All-Scripts
Email: info@all-scripts.de
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!
The Caribbean Pirates is a HTML5 casino game.
This game has been developed in HTML5 / JavaScript and third-party library phaser - http://phaser.io/
Features:
• Audio / Music on off
• Fullscreen
• Multilanguage can choose in the settings (English / German / Spanish)
• Autoplay
• Freegames
• 13 Winlines
• All symbols animated
• Jackpot
The ZIP package contains the game with 1920 x 1080 resolution that scales to fit the current screen device.
The game is fully compatible with all most common mobile devices.
To install the game just upload on your server the game folder game.
to this (with the size you like):
And you need declare the GAME_PATH in the configuration file like this:
const GAME_PATH = 'PATH_TO_THE_GAME/';
const GAME_PATH = ''; // Only need when you want load the game outside the folder
const GAME_NAME = 'Caribbean-Pirates'; // Do not change this.
const BETS = [10,20,30,40,50,70,80,90,100,150,200,300,500]; // Number and amount of bets
let BET_POS = 0; // The Bet pos of BETS when the game start.
let BET = BETS[BET_POS];
const BEGIN_CREDITS = 1000; // Startcredits of the Player
const BEGIN_JACKPOT = 5000; // Begin from the Jackpot
const DECIMAL = 0;
const CHANCES = [
{sym: 1, count: 9},
{sym: 2, count: 11},
{sym: 3, count: 13},
{sym: 4, count: 16},
{sym: 5, count: 23},
{sym: 6, count: 21},
{sym: 7, count: 19},
{sym: 8, count: 12},
{sym: 9, count: 8},
{sym: 10, count: 3},
];
const PUSHER = [
{sym: 1, chance: 250, percent: 50},
{sym: 2, chance: 250, percent: 50},
{sym: 3, chance: 500, percent: 60},
{sym: 4, chance: 500, percent: 60},
{sym: 5, chance: 1000, percent: 70},
{sym: 6, chance: 2500, percent: 80},
{sym: 7, chance: 5000, percent: 90},
{sym: 8, chance: 2000, percent: 50},
{sym: 9, chance: 1000, percent: 50},
{sym: 10, chance: 100, percent: 1}
];
const SYM_FAKTORS = [ // Symbol Faktors Bet * Faktor = Win
{sym: 1, match_3: 1, match_4: 1.5, match_5: 2},
{sym: 2, match_3: 1, match_4: 1.5, match_5: 2},
{sym: 3, match_3: 2, match_4: 3, match_5: 4},
{sym: 4, match_3: 3, match_4: 4, match_5: 5},
{sym: 5, match_3: 4, match_4: 5, match_5: 6},
{sym: 6, match_3: 5, match_4: 6, match_5: 7},
{sym: 7, match_3: 6, match_4: 7, match_5: 8},
{sym: 8, match_3: 7, match_4: 8, match_5: 9},
{sym: 9, match_3: 15}
];
We using two CSS files in this Game.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. This file also contains some general styling, such as anchor tag colors, font-sizes, etc. Keep in mind,
that these values might be overridden somewhere else in the file.
The second file contains the background color of the page and maybe for future updates.
This game contains tree JavaScript files.
12/05/2023:
- Replace jQuery and JStorage with Vanilla Javascript
- Update Phaser from v2.10.0 to Phaser v2.7.6 - lib/phaser.min.js
- Update Pictures from png to webp
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.