💻
Fakeit
  • Projects
  • Casino
    • Getting Started
      • Install/Setup
    • User Interface
      • Overview
    • Monetisation
      • Overview
    • Systems
      • Wheel Bonus
      • Ranking System
      • Buff System
      • Leveling System
      • Free Spin Ticket System
      • Messages
    • Slots
      • Overview
      • Table
      • Reels and Data
    • Multiplayer Roulette
      • Overview
  • Trivia Tiles
    • Gettings Started
      • Install/Setup
      • Wordpress
    • Single Player
      • Overview
    • Multiplayer
      • Overview
    • Leaderboards
      • Overview
    • Monetisation
      • Overview
  • Roulette Multiplayer
    • Getting Started
      • Install/Setup
    • Tips
  • Multiplayer Master Server
    • Getting Started
      • Install/Setup
    • Tips
Powered by GitBook
On this page
  • Creating new rooms/lobby
  • Creating new chips

Was this helpful?

  1. Roulette Multiplayer

Tips

Creating new rooms/lobby

Creation of new rooms/lobbies is as simple as:

	private void lobbiesInit()
  {
			lobbies = new List<Lobby>();

			Lobby lobby_1 = new Lobby(_id : 1, _rouletteCalcs: rouletteCalcs, this);
			Lobby lobby_2 = new Lobby(_id : 2, _rouletteCalcs: rouletteCalcs, this);
			Lobby lobby_3 = new Lobby(_id : 3, _rouletteCalcs: rouletteCalcs, this);

			lobbies.Add(lobby_1);
			lobbies.Add(lobby_2);
			lobbies.Add(lobby_3);
		}

The id needs to be unique.

Creating new chips

Add new chip with the chip prefab.

Set chip value and chip sprite.

Edit the prefab PlaceHolderWrapper in Prefabs/roulette by adding your new chip value/sprite.

PreviousInstall/SetupNextGetting Started

Last updated 3 years ago

Was this helpful?