A neon-soaked 1980s coastal smuggling run. The multiplier climbs as the run pushes further. Cash out before the bust.
Vice Run is a crash game with a loop players read in one second. No paylines, no bonus matrix. A round takes seconds, and the whole game state fits in a single number.
Players stake before the run leaves the dock. Every bet locks to the round's committed seed.
The multiplier rises as the run pushes further. The longer it holds, the bigger the payout on the table.
Cash out to bank the current multiplier. Wait one beat too long and the run busts to zero.

Up to five cars on the grid and one bet split across them any way the player likes. Every car races the same committed round, and each carries its own hidden crash point.

From GO every car climbs the same curve, hitting 2× at about three seconds. Cash out any car at any moment, by tap, by key, or by a server-side auto target.

When a car wrecks its stake is gone, and every survivor hits nitro: ×1.18 with four cars left, up to ×1.60 for the last one standing.

A ticket at 25× stake buys a guaranteed bonus run of 2× to 2,000×, and about one bet in two thousand gets pulled in for free. Median run 9.4×.
Every round is committed before it opens and verifiable after it ends. Operators do not have to take our word for it, and neither do their players.
Before a round opens, the server publishes sha256(server_seed). That hash pins the crash point in place before the first bet is taken.
The round runs. crash_at derives from HMAC-SHA256(server_seed, client_seed:nonce), so neither side can steer the outcome mid-round.
After the bust, the server reveals server_seed. Anyone can rehash it, recompute crash_at, and confirm both match the record.
THE REFERENCE VERIFIER AND FULL DERIVATION SHIP WITH THE INTEGRATION DOCS.
$ rara verify --game vicerun --round 001042 # hash published before bets opened server_seed_hash sha256:9f2c71a84be…c30be81a client_seed vicerun-demo-7f3a nonce 001042 hmac = HMAC_SHA256(server_seed, client_seed + ":" + nonce) = 7c2e4d09aa61b8e2…10f4b90f h = int(hmac[0:8], 16) crash_at = max(1.00, floor(99 * 2^32 / (h + 1)) / 100) = 3.47x $ rara reveal --game vicerun --round 001042 server_seed 4b7dd21c09aae5…f133c2e9 sha256(server_seed) == server_seed_hash ok recompute(crash_at) == 3.47x ok verify == true
RaRa Studio is an independent game studio in Tbilisi, Georgia. Every title starts as a model: simulated, stress-tested, and documented before the art goes in. Spec sheets and verifiers are part of the product, and Vice Run is the first title through the pipeline.
FLAGSHIP
IN DEVELOPMENTIntegration docs, the full math spec, and playable builds are available under NDA to operators, aggregators, and platforms.