Nice game.Care to makeit interesting?

$15
FortuneFighter
2318
fordychess
7543
$15
  • Launch
    Launch
  • Deposit
    Deposit
  • Enter
    Enter
  • Play
    Play
  • Win
    Win

Your Game Remains Your Game

Through Triumph's fully featured pop up, you’re game is virtually untouched with a beautiful tournament layer.

Safe and Secure Deposit

Use apple pay to seamlessly add money to a player balance.

Tournaments are One Click Away

We'll take care of payment, fraud, security, matchmaking, and everything in between.

Let's GOOOOOOOO

Play your heart out.

Victory is Around the Corner

Tracking tournaments, skill matchmaking, statistics, money transfer is all handled when a match ends.

Introducing the Plug and Play Real Money Tournament SDK.

Track Revenue in Real Time

Precise monitoring of tournaments played and associated profit

Customize Tournaments and Offers

Create custom offers specific to your game and configure what tournaments are available - or stick to our tried and true defaults

Get Paid!

Link your bank account and receive a direct deposit each month

Get Started

We've worked incredibly hard to make this plug and play, simply write a few lines of code and be up and running in minutes.

or read features & compliance.

using UnityEngine;
using TriumphSDK;

class GameManager : MonoBehaviour
{

  void Start ()
  {
    //configure Triumph at the start of your game
    Triumph.TriumphConfigure (
      gameId: "ZXOWRGBWE4113BOTY",
    );

    // instead of starting your game with the play button,
    // open the Triumph menu
    
    playButton.onClick.AddListener(() => {
      Triumph.PresentViewController();
    });
  }
}