You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, these are the game reels that can be found for each algorithm in the yaml-files. The reels sets are defined statically, and are developed during the code writing. Game algorithms can vary significantly, and therefore the approaches for reel sets generating can be unique to each game. However, the games have a lot of common, and I scripted some of the job to create the reels. In the root directory of the project, there is a helper folder that contains lua-scripts that helps to create reels for each algorithm, and performs some other calculations.
A typical new game creating workflow for today looks like this. After writing the code for the game algorithm, I create a lua-script somegame.lua to generate the reels. Next, I temporarily write a line in the code at file somegame_rule.go to load the reels for the game from an external file
Then I run the lua-script in ZeroBrain Studio, get the reel, and copy the line to the reeldev.yaml file. When reels set is formed I start compiled binary with those parameters to calculate the RTP
And get the real RTP (return to player percentage) of reels set. This value I store as the key of map in yaml-file and significant output in comments. In same manner I form the reels sets for different RTP with step ~1%. When it's all ready I replace reels sets loading from external yaml-file to loading from internal memory chunk. Usually reels forming takes the main part of time of game creation.
When web server is running the master RTP for player in some club can be changed by API endpoint /prop/rtp/set, see routes.go file for full set of all available routes. When master RTP is changed to some value, player from that moment will get the spin results from reels closest to this master RTP value. For example, if by endpoint call master RTP was set to 95%, player will get spins from reels with RTP=95.133189% in Dolphins Pearl game from Novomatic. If master RTP was set to 90%, player will get results from reels with RTP=90.365193% in that game. Or from reels with RTP=90.044039% in Book of Ra game if he switch to that.
Hi @schwarzlichtbezirk
When I was reading the code for learning, I found a lot of data sources below
I want to ask how they generate and adjust
How this table was determined
The text was updated successfully, but these errors were encountered: