Reels and Data

Each slot has data that is split in couple of csv files. You can find all of the slots data in this directory: Assets\CasinoFakeit\Resources\GameSettings.

When we are creating a slot we need to have 6 types of files:

Base Reels

These are the reels in the normal game. Every time we spin we get our random symbols from this file.

Free Spins Reels

These are the reels in the free spins game. Every time we spin we get our random symbols from this file.4

Lines

Here we write all the lines of the slot. If for example our slot is 3x5 (3 rows and 5 columns). You can see in the below image how we create top line, middle line, bottom line

we mark every slot with a (*) in order to create a line, and separate every line with empty row at the end.

Paytable

Paytable is where we write our symbol payouts for what combination how much it will pay. Let's check this exmaple:

This is a slot which has 5 columns, we start from right to left, so the first one is if we have 5 of the same type.

Cherry symbol:

  • 1 Cherry = 0

  • 2 Cherry = 0

  • 3 Cherry = /2

  • 4 Cherry = x2

  • 5 Cherry = x4

Apple symbol:

  • 1 Apple = 0

  • 2 Apple = 1

  • 3 Apple = x3

  • 4 Apple = x6

Seven symbol:

  • 1 Seven = 0

  • 2 Seven = 0

  • 3 Seven = x10

  • 4 Seven = x50

  • 5 Seven = x500

Summary

  • 1 - Number of Reels

  • 2 - Number of Rows

  • 3 - Number of Lines

  • 4 - Number of symbols

  • 7 - Scatter multiplier

  • 8 - Wild in line multiplier

  • 9 - Free games multiplier

  • 10 - Max scatters on screen

Symbols

Symbol Name | Symbol Type

Symbol Type can be:

  • Symbol - this is just a regular symbol

  • Wild - that means the symbol is a wild

  • WildScatter - the symbol is wild and a scatter at the same time

  • Scatter - just a scatter

Last updated