Created: 15/05/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 Fruitybar is a HTML5 casino game.
This game has been developed in HTML5 / JavaScript and third-party library phaser - http://phaser.io/
Features:
• Audio on off
• Fullscreen
• Multilanguage can choose in the settings (English / German / Spanish)
• Autoplay
• Jackpot
• Freegames
The ZIP package contains the game with 989 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 = 'Fruitybar'; const BACKGROUNDCOLOR = '#ffda68'; // Backgroundcolor in the DIV const BETS = [100,200,300,400,500,700,800,900,1000,1500,2000,3000,5000]; // 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 = 10000; // Startcredits of the Player const BEGIN_JACKPOT = 50000; // Begin from the Jackpot const DECIMAL = 0; const CHANCES = [ {sym: 1, count: 50}, {sym: 2, count: 50}, {sym: 3, count: 45}, {sym: 4, count: 45}, {sym: 5, count: 40}, {sym: 6, count: 40}, {sym: 7, count: 35}, {sym: 8, count: 35}, {sym: 9, count: 30}, {sym: 10, count: 30}, {sym: 11, count: 20}, {sym: 12, count: 20}, {sym: 13, count: 10}, {sym: 14, count: 3} ]; const PUSHER = [ {sym: 1, chance: 10, percent: 90}, {sym: 2, chance: 10, percent: 90}, {sym: 3, chance: 20, percent: 80}, {sym: 4, chance: 20, percent: 80}, {sym: 5, chance: 30, percent: 70}, {sym: 6, chance: 30, percent: 70}, {sym: 7, chance: 40, percent: 60}, {sym: 8, chance: 40, percent: 60}, {sym: 9, chance: 50, percent: 50}, {sym: 10, chance: 50, percent: 50}, {sym: 11, chance: 60, percent: 40}, {sym: 12, chance: 60, percent: 30}, {sym: 13, chance: 70, percent: 20}, {sym: 14, chance: 100, percent: 2} ]; const SYM_FAKTORS = [ // Symbol Faktors Bet * Faktor = Win {sym: 1, match_3: 0.5}, {sym: 2, match_3: 1}, {sym: 3, match_3: 2}, {sym: 4, match_3: 3}, {sym: 5, match_3: 5}, {sym: 6, match_3: 10}, {sym: 7, match_3: 15}, {sym: 8, match_3: 20}, {sym: 9, match_3: 30}, {sym: 10, match_3: 40}, {sym: 11, match_3: 50}, {sym: 12, match_3: 100}, {sym: 13, match_3: 15}, {sym: 14, match_3: 0} ];
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 Pictures from png to webp
- Bugfix Jackpot round error
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.