COIN RAIN IS LIVE!
Our support staff is here to help you with any issues you may run into when playing on VGOBounty.
When making a support request please contact our support email with information relevant to your issue. Providing your Steam ID ({{ $user['steamid'] }}), a screenshot of the trade, or the game ID is appreciated.
Do not contact our support email with promotion requests, they will be overlooked. For promotional purposes or requests please email us at the promotional email listed below.
Support & Promotion: Twitter
Command | Syntax | Info |
---|
Daily Free (How do I claim this?)
Redeem a promo code for free .
Promo codes are posted on our twitter. They can be claimed by people that have deposited $5+.
These codes are allowed to be redeemed once, and are limited time.
Follow us for new promo codes posted randomly
Your free coins code: @{{ user.affiliates.promocode || 'no code' }} (change)
You are the referral of user @{{ user.affiliates.aff }}
You have a total of @{{ user.affiliates.affs }} referrals that used your code!
Your estimated earnings from your referrals are @{{ user.affiliates.affamount || '0' }} coins.
Your collected earnings from your referrals so far are @{{ user.affiliates.affcollected || '0' }} coins.
By using VGOBounty.com (henceforth to be referred to as “VGOBounty.com”), you acknowledge and accept these Terms of Service in full and without reservation, you are agreeing to our Terms of Service and you are responsible for compliance with any applicable laws. These Terms of Service govern your use of this website. VGOBounty.com reserves the right, at its sole discretion, to modify or replace any of these Terms of Service, or change, suspend, or discontinue the Service (including without limitation, the availability of any feature, database, or content) at any time by posting a notice on the Site or by sending you notice through the Service or via email. VGOBounty.com may also impose limits on certain features and services or restrict your access to parts or all of the Service without notice or liability. It is your responsibility to check these Terms of Service periodically for changes. Your continued use of the Service following the posting of any changes to these Terms of Service constitutes acceptance of those changes. You must be 18 years of age or older to play on VGOBounty.com.
Hash: @{{ website.fair.hash }}
Secret: @{{ website.fair.secret }}
Lottery: @{{ website.fair.lottery }}
Number rolled: @{{ website.fair.rolled }}
To check provably fair, you need a Node.JS executor with sha256 library and use the code:
var sha256 = require('sha256');
verifyRolledNumber("@{{ website.fair.hash }}", "@{{ website.fair.secret }}", "@{{ website.fair.lottery }}", "@{{ website.fair.rolled }}");
function verifyRolledNumber(hash, secret, lottery, rolled) {
var get_rolled = sha256(hash+'-'+secret+'-'+lottery);
get_rolled = hexdec(get_rolled.substr(0, 8)) % 15;
if(get_rolled == rolled) console.log("This round is fair!");
else console.log("This round is not fair!");
}
function hexdec(hexString) {
hexString = (hexString + '').replace(/[^a-f0-9]/gi, '');
return parseInt(hexString, 16);
}
Hash: @{{ website.crashf_hash }}
Secret: @{{ website.crashf_secret }}
Point of crash: @{{ website.crashf_point }}
To check provably fair, you need a Node.JS executor with crypto library and use the code:
var crypto = require('crypto');
var hash = "@{{ website.crashf_hash }}";
var point = "@{{ parseFloat(website.crashf_point).toFixed(2) }}";
var secret = "@{{ website.crashf_secret }}";
function encrypt(key, data) {
var cipher = crypto.createCipher('aes-256-cbc', key);
var crypted = cipher.update(data, 'utf-8', 'hex');
crypted += cipher.final('hex');
return crypted;
}
if(encrypt(point, secret) == hash) console.log("This round is fair!");
else console.log("This round is not fair!");
Hash: @{{ website.rafflef_hash }}
Secrets: @{{ website.rafflef_secrets }}
Secret winner: @{{ website.rafflef_secretwinner }}
To check provably fair, you need a Node.JS executor with crypto library and use the code:
var crypto = require('crypto');
var hash = "@{{ website.rafflef_hash }}";
var secrets = "@{{ website.rafflef_secrets }}";
var secret_winner = "@{{ website.rafflef_secretwinner }}";
function encrypt(key, data) {
var cipher = crypto.createCipher('aes-256-cbc', key);
var crypted = cipher.update(data, 'utf-8', 'hex');
crypted += cipher.final('hex');
return crypted;
}
if(encrypt(secrets, secret_winner) == hash) console.log("This round is fair!");
else console.log("This round is not fair!");