2 comments found.
Do I need to have subscription at Phaser to customize this game ?
Hi!
You don’t need a Phaser subscription to customize ^^
How to work backend integration, rtp and configs?
Hi! Thanks for your question.
BACKEND INTEGRATION: The game is currently client-side. To integrate:
How it works now: - Player spins → game generates random result → displays win/loss
What your backend needs to return: { “symbols”: [[“coin”, “jade”, “mask”], [“sun”, “wild”, “drum”], [“paper”, “coin”, “jade”]], “winAmount”: 30, “newBalance”: 1030 }
Replace the local random generation with a fetch() call to your API. Works with any backend (Node, PHP, Python, etc).
RTP: Current RTP is ~94% and can be adjusted by changing: - Win probability (how often player wins) - Payout multipliers (3x for normal win, 10x for big win)
All configs are in JavaScript variables – easy to modify.