mauri146K / bootstrap

The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.
https://getbootstrap.com
MIT License
1 stars 0 forks source link

BC.GAME #2

Open mauri146K opened 1 year ago

mauri146K commented 1 year ago

<!DOCTYPE html>

     bc.game Crash - Game Verification Script by bcgame                                      table {         table-layout: fixed;     }     table thead tr th:first-child {         width: 80%;     }     table tbody tr td {         white-space: nowrap;         overflow: hidden;         text-overflow: ellipsis;     }     .is-first {         background-color: rgba(195, 111, 24, 0.2);     }     .is-over-median {         color: #44B39D;     }     .is-at-median {         color: #3B3C3D;     }     .is-under-median {         color: #BF4A67;     }                  bc.game Crash - Game Verification Script       Third party script used to verify games on crash game.     
    
           

The following sites have purchased a non-distributable copy of the previous version of bc.game’s source code, exempting them from the requirements of the AGPL:

      

https://bc.game

    
    
           

We made the decision to update Crash using a salted hash as requested by our players in order to provide the most randomized and fair results possible after Bet # 2561902. For further details, please visit https://bitcointalk.org/index.php?topic=5256606

         
                    Game's hash                                        

                      Salt                                        

                      Amount of games                                        

                                 Verify         

                
                                            Game's hash             Bust                                                        var isVerifying = false;       $('#game_verify_submit').on('click', () => {         if (isVerifying) return;         isVerifying = true;         $('#game_hash_input').parent().addClass('is-loading');         $('#game_verify_submit').addClass('is-loading');         $('#game_hash_input, #game_amount_input, #game_verify_submit').attr('disabled', 'disabled');         $('#game_verify_table').html('');         let prevHash = null;         for (let i = 0; i < $('#game_amount_input').val(); i++) {           let hash = String(prevHash ? CryptoJS.SHA256(String(prevHash)) : $('#game_hash_input').val());           let bust = gameResult(hash, $('#game_salt_input').val());           setTimeout(function() {             addTableRow(hash, bust, i)           }, i * 1);           prevHash = hash;         }       });       $('#game_amount_input').on('keyup', () => {         if ($('#game_amount_input').val() >= 10000) {           if ($('#game_verify_warning').length) return;           $('#game_verify_submit').parent().append(             $('').attr({               'id': 'game_verify_warning',               'class': 'tag is-warning'             }).text("Verifying a huge amount of games may consume more ressources from your CPU")           );         } else {           if ($('#game_verify_warning').length) {             $('#game_verify_warning').remove();           }         }       });       const addTableRow = (hash, bust, index) => {         $('').attr({           'class': index === 0 ? 'is-first' : null         }).append(           $('').text(hash)         ).append(           $('').text(bust).attr({             'class': bust === 1.98 ? 'is-at-median' : bust > 1.98 ? 'is-over-median' : 'is-under-median'           })         ).appendToWithIndex($('#game_verify_table'), index);         if (index >= $('#game_amount_input').val() - 1) {           $('#game_hash_input').parent().removeClass('is-loading');           $('#game_verify_submit').removeClass('is-loading');           $('#game_hash_input, #game_amount_input, #game_verify_submit').removeAttr("disabled");           isVerifying = false;         }       };       const gameResult = (seed, salt) => {         const nBits = 52; // number of most significant bits to use         // 1. HMAC_SHA256(message=seed, key=salt)           if (salt) {           const hmac = CryptoJS.HmacSHA256(CryptoJS.enc.Hex.parse(seed), salt);           seed = hmac.toString(CryptoJS.enc.Hex);         }         // 2. r = 52 most significant bits         seed = seed.slice(0, nBits / 4);         const r = parseInt(seed, 16);         // 3. X = r / 2^52         let X = r / Math.pow(2, nBits); // uniformly distributed in [0; 1)         X = parseFloat(X.toPrecision(9));         // 4. X = 99 / (1-X)         X = 99 / (1 - X);         // 5. return max(trunc(X), 100)         const result = Math.floor(X);         return Math.max(1, result / 100);       };       $.fn.appendToWithIndex = function(to, index) {         if (!to instanceof jQuery) {           to = $(to);         };         if (index === 0) {           $(this).prependTo(to)         } else {           $(this).insertAfter(to.children().eq(index - 1));         }       };       var hash_url = window.location.search       if ((/nosalt/).test(hash_url)) {         $('#game_salt_input').val('');       }       if ((/hash=/).test(hash_url)) {         var hash = hash_url.match(/(?<=hash=).*?(?=&|$)/)[0];         $('#game_hash_input').val(hash)         $('#game_verify_submit').click()       }          
Gerwaz99 commented 6 months ago

<!DOCTYPE html>

     bc.game Crash - Game Verification Script by bcgame                                      table {         table-layout: fixed;     }     table thead tr th:first-child {         width: 80%;     }     table tbody tr td {         white-space: nowrap;         overflow: hidden;         text-overflow: ellipsis;     }     .is-first {         background-color: rgba(195, 111, 24, 0.2);     }     .is-over-median {         color: #44B39D;     }     .is-at-median {         color: #3B3C3D;     }     .is-under-median {         color: #BF4A67;     }                  bc.game Crash - Game Verification Script       Third party script used to verify games on crash game.     
    
           

The following sites have purchased a non-distributable copy of the previous version of bc.game’s source code, exempting them from the requirements of the AGPL:

      

https://bc.game

    
    
           

We made the decision to update Crash using a salted hash as requested by our players in order to provide the most randomized and fair results possible after Bet # 2561902. For further details, please visit https://bitcointalk.org/index.php?topic=5256606

         
                    Game's hash                               
        

                      Salt                                        

                      Amount of games                                        

                                 Verify         

                
                                            Game's hash             Bust                                                        var isVerifying = false;       $('#game_verify_submit').on('click', () => {         if (isVerifying) return;         isVerifying = true;         $('#game_hash_input').parent().addClass('is-loading');         $('#game_verify_submit').addClass('is-loading');         $('#game_hash_input, #game_amount_input, #game_verify_submit').attr('disabled', 'disabled');         $('#game_verify_table').html('');         let prevHash = null;         for (let i = 0; i < $('#game_amount_input').val(); i++) {           let hash = String(prevHash ? CryptoJS.SHA256(String(prevHash)) : $('#game_hash_input').val());           let bust = gameResult(hash, $('#game_salt_input').val());           setTimeout(function() {             addTableRow(hash, bust, i)           }, i * 1);           prevHash = hash;         }       });       $('#game_amount_input').on('keyup', () => {         if ($('#game_amount_input').val() >= 10000) {           if ($('#game_verify_warning').length) return;           $('#game_verify_submit').parent().append(             $('').attr({               'id': 'game_verify_warning',               'class': 'tag is-warning'             }).text("Verifying a huge amount of games may consume more ressources from your CPU")           );         } else {           if ($('#game_verify_warning').length) {             $('#game_verify_warning').remove();           }         }       });       const addTableRow = (hash, bust, index) => {         $('').attr({           'class': index === 0 ? 'is-first' : null         }).append(           $('').text(hash)         ).append(           $('').text(bust).attr({             'class': bust === 1.98 ? 'is-at-median' : bust > 1.98 ? 'is-over-median' : 'is-under-median'           })         ).appendToWithIndex($('#game_verify_table'), index);         if (index >= $('#game_amount_input').val() - 1) {           $('#game_hash_input').parent().removeClass('is-loading');           $('#game_verify_submit').removeClass('is-loading');           $('#game_hash_input, #game_amount_input, #game_verify_submit').removeAttr("disabled");           isVerifying = false;         }       };       const gameResult = (seed, salt) => {         const nBits = 52; // number of most significant bits to use         // 1. HMAC_SHA256(message=seed, key=salt)           if (salt) {           const hmac = CryptoJS.HmacSHA256(CryptoJS.enc.Hex.parse(seed), salt);           seed = hmac.toString(CryptoJS.enc.Hex);         }         // 2. r = 52 most significant bits         seed = seed.slice(0, nBits / 4);         const r = parseInt(seed, 16);         // 3. X = r / 2^52         let X = r / Math.pow(2, nBits); // uniformly distributed in [0; 1)         X = parseFloat(X.toPrecision(9));         // 4. X = 99 / (1-X)         X = 99 / (1 - X);         // 5. return max(trunc(X), 100)         const result = Math.floor(X);         return Math.max(1, result / 100);       };       $.fn.appendToWithIndex = function(to, index) {         if (!to instanceof jQuery) {           to = $(to);         };         if (index === 0) {           $(this).prependTo(to)         } else {           $(this).insertAfter(to.children().eq(index - 1));         }       };       var hash_url = window.location.search       if ((/nosalt/).test(hash_url)) {         $('#game_salt_input').val('');       }       if ((/hash=/).test(hash_url)) {         var hash = hash_url.match(/(?<=hash=).*?(?=&|$)/)[0];         $('#game_hash_input').val(hash)         $('#game_verify_submit').click()       }          
techno-id commented 5 months ago

UNFAIR !

Take look this.. see my data, eror code, not in Calculate. 100% change result by owner. SCAM

Sever

10991ccec4bf0e898806846abd5f1e9118c386cf1ce111ca3423029c91738ba6

Benih:

eefec4ca0ee62668e24aff1bd024e4a985fe642c256676355cae44776b6dfcb7

Hentikan:

18942090

Benih clien :

0x6aa664e95e77989d0ef213f235b4e650ad94da519529ea91378da807b694d77f

techno-id commented 5 months ago

Server hash:

cb9cc80e57269a9bcd816ee84cbc99cf318c0cf91a0f0dbed9c8b22f2ec5cfa9

Clien

JTDjCKefp3YCwYS

Nonce 6176

Fucking loosseeerrr scammmm

techno-id commented 5 months ago

<!DOCTYPE html>

Lottery verify