Skip to main content
All CollectionsCasinoBC Originals
How to play Stellar Rush
How to play Stellar Rush
Wendy avatar
Written by Wendy
Updated over 2 weeks ago

What Is Stellar Rush?
Stellar Rush is a thrilling space-themed crash-style game available at BC.GAME. It features vibrant graphics and engaging mechanics, where players control an astronaut on a rocket journey through the galaxy. The goal is to reach increasing multipliers before the rocket crashes, offering an exhilarating mix of strategy and risk. With customisable difficulty levels and high-stakes rewards, Stellar Rush is an immersive game for both beginners and experienced players.

How to Play Stellar Rush

  1. Place Your Bet: Start by selecting your wager amount.

  2. Choose Your Difficulty: There are four levels—Easy, Medium, Hard, and Daredevil—allowing you to tailor your experience. Medium difficulty offers a balanced mix of risk and reward.

  3. Watch the Multipliers Rise: The game begins with a low multiplier (e.g., 1.09x) and increases as the rocket progresses past planetary milestones such as 1.25x, 1.43x, and beyond. The further the rocket travels, the greater the potential rewards—but also the risk of crashing.

  4. Cash Out Before the Crash: Players must decide when to cash out to secure their winnings before the rocket crashes.

Return to Player (RTP) Rate
Stellar Rush has a Return to Player (RTP) rate of 96%, meaning that, on average, players can expect to receive back 96% of their wagers over a long period.

How Are the Results Calculated?
The game ensures fairness by using cryptographic algorithms. The results are generated using an HMAC-SHA256 hash function, which combines a server seed, client seed, and nonce to produce a 64-character hexadecimal hash. This process ensures transparency and prevents manipulation.

Example of Result Calculation Using JavaScript:

const crypto = require("crypto");  function getResult(hash) {   const allNums = [     7, 2, 19, 25, 1, 13, 5, 24, 14, 6, 15, 9, 22, 16, 3, 17, 18, 20, 8, 21, 4,     12, 10, 23, 11,   ];   let seed = hash;   let finalNums = createNums(allNums, seed);   seed = crypto.createHash("SHA256").update(seed).digest("hex");   finalNums = createNums(finalNums, seed);   return finalNums.map((m) => m.num.num); }  function createNums(allNums, hash) {   let nums = [];   let h = crypto.createHash("SHA256").update(hash).digest("hex");   allNums.forEach((c) => {     nums.push({ num: c, hash: h });     h = h.substring(1) + h.charAt(0);   });    nums.sort((o1, o2) => (o1.hash < o2.hash ? -1 : o1.hash === o2.hash ? 0 : 1));   return nums; }  function main(serverSeed, clientSeed, nonce) {   let resultArr = [clientSeed, nonce];   let hmacSha256Result = crypto     .createHmac("sha256", serverSeed)     .update(resultArr.join(":"))     .digest("hex");   let resultList = getResult(hmacSha256Result);   console.log(resultList); }

This system ensures that the results are provably fair and transparent, allowing players to verify the integrity of each round.

Conclusion
Stellar Rush is an exciting and fast-paced game that offers players a chance to test their risk management skills. With different difficulty levels and a fair, transparent result calculation process, it’s an engaging game for those who enjoy crash-style betting. Whether you're a seasoned player or a newcomer, Stellar Rush provides an adrenaline-pumping experience in the vast expanse of space!

Did this answer your question?