Pages:
Author

Topic: BTCHEAT.COM IS ONLY A HOAX? (Read 23430 times)

newbie
Activity: 77
Merit: 0
July 22, 2018, 10:07:03 AM
is running?Huh??

yes FUCKING SITE is running
newbie
Activity: 6
Merit: 0
June 08, 2018, 09:28:33 PM
is running?Huh??
newbie
Activity: 1
Merit: 1
June 02, 2018, 04:34:52 PM
This is a scam easy to proof this 24k spin without single win (i'm at 95% stuck):
Start 34k spin: https://i.imgur.com/jepR2rC.jpg
Stop 10k spin: https://i.imgur.com/sPdVHj0.jpg

And little more proof for scam site:
After reach 95% every time when javascript ask for info to make spin
Code:
                $.get( "nubmers.php?id=119705&uhash=171342&uhash2=1508094900", function( data ) {
                    var datar = data.split(":");
                    nowspins = datar[1];
                    nowwon = datar[2];
                    nowbalance = datar[3];
                    nowbalanceusd = datar[4];
                    ifwinner = datar[5];
                    payoutpercentage = datar[6];
                    minigame = datar[7];
                    minigamewinnings = datar[8];
recevie "aaa" and when inspect same javascript clear visible with aaa no way to win:
             
Code:
        var allcolors = [1, 2, 3, 4, 5, 6, 7, 8];
                      var allcolors = shuffle(allcolors);
                      var randomnumbers = [allcolors[0], allcolors[1], allcolors[2]];
                      var res = shuffle(randomnumbers);
                    }


Full java script here:
Code:
        var sndss = new Audio("audio/spin.mp3");
        var sndse = new Audio("audio/stop.mp3");
        var sndsw = new Audio("audio/win.mp3");
        var sndbw = new Audio("audio/bigwin.mp3");
        var sndag = new Audio("audio/additional_game.mp3");
        var sndaw = new Audio("audio/additional_win.mp3");
        var sndnw = new Audio("audio/no_win_additional.mp3");
        var smute = new Audio("audio/coin_change.mp3");
        $('.fancy .slot').jSlots({
            number : 3,
            winnerNumber : 1,
            spinner : '#playFancy',
            easing : 'easeOutSine',
            time : 7000,
            loops : 7,
            minimumSpeed : 300,
            infinite : true,
            onStart : function(jslot) {
                    sndss.play();
                    document.getElementById("playFancy").setAttribute("disabled", "disabled");
                    document.getElementById("playFancy").setAttribute("value", "Spinning...");
                    document.getElementById("winnings").style.visibility = "hidden";
                    document.getElementById("balanceshaker").className = "";
                    document.getElementById("balance").className = "";
                    document.getElementById("spins").className = "";
                $.get( "nubmers.php?id=119705&uhash=171342&uhash2=1508094900", function( data ) {
                    var datar = data.split(":");
                    nowspins = datar[1];
                    nowwon = datar[2];
                    nowbalance = datar[3];
                    nowbalanceusd = datar[4];
                    ifwinner = datar[5];
                    payoutpercentage = datar[6];
                    minigame = datar[7];
                    minigamewinnings = datar[8];
                    if (datar[0] == "fff") {
                      var res = [1, 1, 1];
                    } else if (datar[0] == "bbb") {
                      var res = [8, 8, 8];
                    } else if (datar[0] == "ccc") {
                      var randomnumber = Math.floor(Math.random() * (7 - 2 + 1)) + 2;
                      var res = [randomnumber, randomnumber, randomnumber];
                    } else if (datar[0] == "ffa") {
                      var randomnumber = Math.floor(Math.random() * (8 - 2 + 1)) + 2;
                      var res = [randomnumber, 1, 1];
                      var res = shuffle(res);
                    } else if (datar[0] == "bba") {
                      var randomnumber = Math.floor(Math.random() * 7) + 1;
                      var res = [randomnumber, 8, 8];
                      var res = shuffle(res);
                    } else if (datar[0] == "ccb") {
                      var randomnumber = Math.floor(Math.random() * (7 - 2 + 1)) + 2;
                      var res = [randomnumber, randomnumber, 8];
                      var res = shuffle(res);
                    } else if (datar[0] == "ccf") {
                      var randomnumber = Math.floor(Math.random() * (7 - 2 + 1)) + 2;
                      var res = [randomnumber, randomnumber, 1];
                      var res = shuffle(res);
                    } else if (datar[0] == "cca") {
                      var allcolors = [2, 3, 4, 5, 6, 7];
                      var allcolors = shuffle(allcolors);
                      var randomnumbers = [allcolors[0], allcolors[0], allcolors[1]];
                      var res = shuffle(randomnumbers);
                    } else {
                      var allcolors = [1, 2, 3, 4, 5, 6, 7, 8];
                      var allcolors = shuffle(allcolors);
                      var randomnumbers = [allcolors[0], allcolors[1], allcolors[2]];
                      var res = shuffle(randomnumbers);
                    }
                    $('.slot').removeClass('winner');
                    setTimeout(function () {jslot.stop(res);}, 1000);
                });                 
            },
            onEnd : function(upd) {
                    drawOutput(); 
            },
            onWin : function(winCount, winners) {
            }
        });

function shuffle(array) {
  var currentIndex = array.length, temporaryValue, randomIndex;
  while (0 !== currentIndex) {
    randomIndex = Math.floor(Math.random() * currentIndex);
    currentIndex -= 1;
    temporaryValue = array[currentIndex];
    array[currentIndex] = array[randomIndex];
    array[randomIndex] = temporaryValue;
  }
  return array;
}

function drawOutput(responseText) {
    document.getElementById('spins').innerHTML = nowspins;
    document.getElementById('balance').innerHTML = nowbalance;
    document.getElementById('usdbalance').innerHTML = nowbalanceusd;
    document.getElementById('payoutpercentages').innerHTML = payoutpercentage;
    document.getElementById('chestpossible').innerHTML = minigamewinnings;
    if (ifwinner > 2) {
    document.getElementById('mywinnings').innerHTML = " " + nowwon;
    } else {
    document.getElementById('mywinnings').innerHTML = " " + nowwon;
    }
    document.getElementById("spins").className = "balanceglow";
    document.getElementById("payoutprogressbar").setAttribute("style", "width: "+ payoutpercentage +";");
    if (ifwinner == 1) {
    sndsw.play();
    document.getElementById("winnings").style.visibility = "visible";
    document.getElementById("balanceshaker").className = "jackpotshake";
    document.getElementById("balance").className = "balanceglow";
    } else if (ifwinner == 2) {
    sndbw.play();
    document.getElementById("winnings").style.visibility = "visible";
    document.getElementById("balanceshaker").className = "jackpotshake";
    document.getElementById("balance").className = "balanceglow";
    } else if (ifwinner == 3) {
    sndsw.play();
    document.getElementById("winnings").style.visibility = "visible";
    } else if (ifwinner == 4) {
    sndbw.play();
    document.getElementById("winnings").style.visibility = "visible";
    } else {
    sndse.play();
    }

    if (nowspins < 1) {
    document.getElementById("playFancy").setAttribute("disabled", "disabled");
    document.getElementById("playFancy").setAttribute("value", "Out of spins...");
    } else {
    document.getElementById("playFancy").removeAttribute("disabled");
    document.getElementById("playFancy").setAttribute("value", "Play");
    }

    if (minigame == 1) {
    launchChests();
    }
}
       
function openChest(chest) {
    $.get( "chestcount.php?id=119705&uhash=171342&uhash2=1508094900&chest="+ chest +"", function( data2 ) {   
                    if (chest == 1) {
                    document.getElementById("chest1bg").className = "chestend selectedchest";
                    document.getElementById("chest11bg").className = "chestend selectedchest";
                    } else if (chest == 2) {
                    document.getElementById("chest2bg").className = "chestend selectedchest";
                    document.getElementById("chest22bg").className = "chestend selectedchest";
                    } else if (chest == 3) {
                    document.getElementById("chest3bg").className = "chestend selectedchest";
                    document.getElementById("chest33bg").className = "chestend selectedchest";
                    }
                    var res2 = data2.split(":");
                    var nowwon = res2[0];
                    var nowbalance = res2[1];
                    var nowbalanceusd = res2[2];
                    var ifwinner = res2[3];
                    var payoutpercentage = res2[4];
                    var whichchest = res2[5];
                    var minigame = 0;
                    if (whichchest == 1) {
                        document.getElementById("endchest1").className = "chestend luckychest";
                        } else if (whichchest == 2) {
                        document.getElementById("endchest2").className = "chestend luckychest";
                        } else if (whichchest == 3) {
                        document.getElementById("endchest3").className = "chestend luckychest";
                        }
                    document.getElementById("allchests").style.display = "none";
                    document.getElementById("openingchest").style.display = "inline";
                    document.getElementById("openingchestout").className = "chestshake";
                    setTimeout(function(){
                        document.getElementById("openingchest").style.display = "none";
                        document.getElementById("allchestsend").style.display = "inline";
                        if (ifwinner == 1) {
                          sndaw.play();
                          document.getElementById('balance').innerHTML = nowbalance;
                          document.getElementById('usdbalance').innerHTML = nowbalanceusd;
                          document.getElementById('payoutpercentages').innerHTML = payoutpercentage;
                          document.getElementById('mywinnings').innerHTML = " " + nowwon;
                          document.getElementById("winnings").style.visibility = "visible";
                          document.getElementById("balanceshaker").className = "jackpotshake";
                          document.getElementById("balance").className = "balanceglow";
                        } else {
                          sndnw.play();
                        }

                        setTimeout(function(){
                          document.getElementById("100slotswrapper").style.display = "block";
                          document.getElementById("100chestswrapper").style.display = "none";
                          document.getElementById("playFancy").style.display = "inline";
                          document.getElementById("chestext").style.display = "none";
                          document.getElementById("chest1bg"…



You can check manual what will receive java with this url: http://btcheat.com/nubmers.php?id=119705 just need to change id with your. Its clear visible every time ask it receive same patter for non win spin Smiley.
newbie
Activity: 55
Merit: 0
May 27, 2018, 10:56:26 PM
Guys do yourselves a favor and unwatch this thread. It's a scam and it's time to abandon it.
newbie
Activity: 77
Merit: 0
May 17, 2018, 08:39:13 AM
Yes, btcheat is a scam now.

I would like to buy your Visit on btcheat.com

It is easy.

Add my link and set 500 visits, I can pay you 0.8 USD to your bitcoin address instantly.

Please send PM to me.

WHAT THE FUCK YOU ARE ALSO FAKE MEMBER
WTF
newbie
Activity: 5
Merit: 0
May 12, 2018, 12:52:40 PM
Yes, btcheat is a scam now.

I would like to buy your Visit on btcheat.com

It is easy.

Add my link and set 500 visits, I can pay you 0.8 USD to your bitcoin address instantly.

Please send PM to me.
newbie
Activity: 77
Merit: 0
April 24, 2018, 02:06:36 AM
When people use mining option to get spins on btcheat.com and ethcombo.com   than btcheat and ethcombo both are using coinhive hidden script to mine Monero Coins, while the user get spins from which he can never reach withdrawal limit   Now I get their point that btcheat and ethcombo only wants to earn Monero Coin keeping other people CPU'S for mining to get SPINS   while people got worthless spins from which they can never reach withdrawal limit because btcheat and ethcombo  have configured their algorithms in such a way that when user reaches 94% it stops winning and user will not win any more   they just wants users to do mining so that btcheat and ethcombo can Earn Monero Coin using coinhive script

Now I Understand what's the game is, and hope you all people also understand and don't do mining to get spins u will never reach payout limit because winning stops when you reach 94%  they just want to earn Monero Coins using other people CPU POWER 
WTF
member
Activity: 308
Merit: 10
April 07, 2018, 10:10:26 AM
yes, as I know there will never be such a site in the bitcoin world, everyone should try and work hard to get it
newbie
Activity: 77
Merit: 0
March 28, 2018, 02:57:11 AM
btcheat.com and http://ethcombo.com/   both are scam
legendary
Activity: 3094
Merit: 1127
March 14, 2018, 02:24:27 PM
How come this crap is still on?

Let me guess, because there are still many people believe that they will get money from this site. Looking at the "Now Playing" stats on the site where there is always more than 1,000 users playing on this site. It is a proof that there are too many dumb unexperienced people who believe will get free money from this sh*t unless the stats is a fake one.


And some newbies like to necrobump old threads that are not worth keeping alive
As long this thread isnt being locked by OP, this would really be continued to be bumped by those newbies which isnt really new anymore into this forum.This site is already been known that doesnt paid their players once they reach out the minimum withdrawal and i didnt even see a single proof that anyone had make cashout but there are newbie who do claim that they have withdrawn but doesnt have any proofs which is really an invalid thing.
copper member
Activity: 1638
Merit: 1325
I'm sometimes known as "miniadmin"
March 14, 2018, 11:42:11 AM
How come this crap is still on?

Let me guess, because there are still many people believe that they will get money from this site. Looking at the "Now Playing" stats on the site where there is always more than 1,000 users playing on this site. It is a proof that there are too many dumb unexperienced people who believe will get free money from this sh*t unless the stats is a fake one.


And some newbies like to necrobump old threads that are not worth keeping alive
legendary
Activity: 3500
Merit: 1354
March 14, 2018, 10:52:16 AM
How come this crap is still on?

Let me guess, because there are still many people believe that they will get money from this site. Looking at the "Now Playing" stats on the site where there is always more than 1,000 users playing on this site. It is a proof that there are too many dumb unexperienced people who believe will get free money from this sh*t unless the stats is a fake one.
sr. member
Activity: 840
Merit: 267
Chad Hodler since 2013
March 14, 2018, 10:15:03 AM
How come this crap is still on?
jr. member
Activity: 128
Merit: 1
March 14, 2018, 07:41:01 AM
It looks legit on the outside, but once you try it you know it is a waste of time. They don't even offer some kind of proof where it shows other people did get paid, they could simply add a few tx addresses but even so, the whole looks sketchy. For me, this is just a waste of time, spending countless hours doing something without the assurance that you can cash out. The main objective of this site is clearly the ads, they owners get paid while you do nothing but to help them make more profits. Stay away from this.
thanks a lot for the explanation
newbie
Activity: 27
Merit: 0
March 03, 2018, 02:36:31 AM
Le sigh....

I started Btcheat back at the tail end of October, pretty sure it had not been online long at that point. I had finally reached the original payout amount of 0.03 just barely after they had (to my dismay) globally increased the minimum withdraw to 0.035. Figured no giant big deal, I'll just keep spinning for a while.. Well, there came a point where I was at 0.03273171 for nearly two weeks, mining 300-700 spins per day roughly and using them each day, and right when I was about to give up, I got a few hits one day.

Right now, I have been sitting at 0.03308161 for at least a couple weeks, never a single hit. I have won 10-20 free spins from the daily bonus (woooopdeeedooo...) a couple times, but yeah, Not fucking cool at all. And now that they've completely disabled any route to get in contact with them whatsoever, and the CEO put in the blog all that bullshit about "oh, so sorry for the misunderstanding guys! We don't actually guarantee you'll ever reach payout, but you might if you get lucky! It's just a fun game!"

I have, like many of you, I'm sure, definitely made this company at least 300 bones in advertising revenue alone, probably waay more with using the site daily.. I do accept that mining spins is probably not too profitable for them, but it's very obvious that rather than exponentially reduce your chances of a successful spin as you go, they completely disable it when you get close enough.

I have seen several blockchain links claiming to be btcheat payouts in my quest to find out whether they are legit, and maybe they are, but even the most bullshit ponzi schemes will pay out a few times just to be able to say "see? we pay!" After so many months of this, and even though I'm so "close" to the finish line, I think the time has come to accept that they played my ass and forget they ever existed.

I just wanted to update for anyone (as surprising as it may be) that still thinks there's a chance the site is legit. I've stopped mining hundreds of spins a day, but have still been hopping on about once a day for the daily bonus and the three free spins. Daily bonus almost always gives me 10 spins, occasionally nothing. So, since i posted this, with slightly less than 13 spins per day, nothing at all has changed. They've removed their support link, so it's definitely a bs scheme to get free ad revenue. Also now an ad is popping up literally every single time i hit the spin button, so I'm guessing their foolish userbase is dwindling. I really wish the asshats who created this website could be persecuted somewhow.. also worth mentioning maybe, they have no bitcointalk presence to speak of. ¯\_(ツ)_/¯

Don't think any further proof is needed. 100% bullshit. https://photos.app.goo.gl/93wd8VytoeiMiZtw1
newbie
Activity: 6
Merit: 0
March 02, 2018, 09:07:27 PM
Haven't heard of it plus some not to bright reviews.  I would stay away.
hero member
Activity: 2996
Merit: 794
March 02, 2018, 03:37:54 PM
I have been hitting the spin button on BTC Heat for a few months now. I have earned according to the site  0.01554701 BTC So I'm about 0.02 from the withdraw threshold. I want to see if they really do pay out and if not I will blast the proof everywhere. So to help speed up the process I ask everyone to click my referral link(removed) just visiting it gives 10 spins. I will update this post with the results as soon as I hit .035 BTC If it turns out to be a scam (like it probably is.) at least we will know but I'm too far in to turn back now without knowing the truth.

Are you kidding dude? Come on, we have seed and read many experiences here. You can googling it as well, why do you even wish to continue trying to get more free spins and wasting your time spreading referral link for something that obviously does not pay any users.
You have no more than 50% of the withdrawal threshold so far, it will take some more months to reach it (if the site lets you to reach it). Many other things to do if you just want to earn money from the internet. Dont waste your time.

same website like btcheat  ethcombo.com  do u think ethcombo is also SCAM ? It does not pays

no,you should try and mine with your laptop for several months
then get stuck at 94% and ask in caps for people to register under your reflink like you did above
because,maybe this time you will get lucky and this copy of the scam site will pay you  /end sarcasm

unbelievable how gullible and greedy people can be
free cheese and 300$+ from faucets exist in mousetraps and fairy tales,get real
stop wasting your precious lifetime feeding scammers and do something productive
We cant really avoid these type of people even it is already obvious that these kind of sites are scams and shady but still they do try it first for the sake of money and believing that they might able on getting paid out without even thinking on the time and resources that they are wasting up on those times.People do have always greediness inside but engaging to these things signifies on how severe their greediness inside.

These days faucets or services as such are never going to give you a decent amount of BTC.

There are other legit ways of earnings bitcoins.
One of them is if you got a GPU, you can mine with it. A decent GPU will give you $2 or so daily.

Or if you got some photoshop skills or understand a foreign language you can translate some ANNs and get some tokens from a new coin.



I would disagree with the mining though. Yeah for sure you can profit about $2 a day for a single good GPU. However, if you don't really do it on a large scale mining or do it in an efficient way or even just the factor of the price of electricity, you are actually running that mining setup at a loss. Maybe you profit $2 a day but you spend about $1 a day on electricity because of the price of running your rig (excess power draw from your pc without maximizing it because you only have one GPU), then you realize your GPU breaks because of the continuous usage which will cost you probably $400 to replace the GPU. In the end you are just really losing money.
I agree on what LuanX3 been saying here which it would turn out that you are just mining for wasting up money on a single GPU miner but it isnt really bad at all if you do treat it as a hobby/interest and not really serious on making out money but if you are treating it mainly for the sake of profits then it is just a senseless thing to do but somehow it is much better to do than on wasting up your time and cpu power on mining just for spins just like on what this site is trying to offer btcheat.
hero member
Activity: 756
Merit: 505
March 02, 2018, 06:19:04 AM
I have been hitting the spin button on BTC Heat for a few months now. I have earned according to the site  0.01554701 BTC So I'm about 0.02 from the withdraw threshold. I want to see if they really do pay out and if not I will blast the proof everywhere. So to help speed up the process I ask everyone to click my referral link(removed) just visiting it gives 10 spins. I will update this post with the results as soon as I hit .035 BTC If it turns out to be a scam (like it probably is.) at least we will know but I'm too far in to turn back now without knowing the truth.

Are you kidding dude? Come on, we have seed and read many experiences here. You can googling it as well, why do you even wish to continue trying to get more free spins and wasting your time spreading referral link for something that obviously does not pay any users.
You have no more than 50% of the withdrawal threshold so far, it will take some more months to reach it (if the site lets you to reach it). Many other things to do if you just want to earn money from the internet. Dont waste your time.

same website like btcheat  ethcombo.com  do u think ethcombo is also SCAM ? It does not pays

no,you should try and mine with your laptop for several months
then get stuck at 94% and ask in caps for people to register under your reflink like you did above
because,maybe this time you will get lucky and this copy of the scam site will pay you  /end sarcasm

unbelievable how gullible and greedy people can be
free cheese and 300$+ from faucets exist in mousetraps and fairy tales,get real
stop wasting your precious lifetime feeding scammers and do something productive
We cant really avoid these type of people even it is already obvious that these kind of sites are scams and shady but still they do try it first for the sake of money and believing that they might able on getting paid out without even thinking on the time and resources that they are wasting up on those times.People do have always greediness inside but engaging to these things signifies on how severe their greediness inside.

These days faucets or services as such are never going to give you a decent amount of BTC.

There are other legit ways of earnings bitcoins.
One of them is if you got a GPU, you can mine with it. A decent GPU will give you $2 or so daily.

Or if you got some photoshop skills or understand a foreign language you can translate some ANNs and get some tokens from a new coin.



I would disagree with the mining though. Yeah for sure you can profit about $2 a day for a single good GPU. However, if you don't really do it on a large scale mining or do it in an efficient way or even just the factor of the price of electricity, you are actually running that mining setup at a loss. Maybe you profit $2 a day but you spend about $1 a day on electricity because of the price of running your rig (excess power draw from your pc without maximizing it because you only have one GPU), then you realize your GPU breaks because of the continuous usage which will cost you probably $400 to replace the GPU. In the end you are just really losing money.
legendary
Activity: 3808
Merit: 1723
Up to 300% + 200 FS deposit bonuses
March 02, 2018, 12:33:33 AM
I have been hitting the spin button on BTC Heat for a few months now. I have earned according to the site  0.01554701 BTC So I'm about 0.02 from the withdraw threshold. I want to see if they really do pay out and if not I will blast the proof everywhere. So to help speed up the process I ask everyone to click my referral link(removed) just visiting it gives 10 spins. I will update this post with the results as soon as I hit .035 BTC If it turns out to be a scam (like it probably is.) at least we will know but I'm too far in to turn back now without knowing the truth.

Are you kidding dude? Come on, we have seed and read many experiences here. You can googling it as well, why do you even wish to continue trying to get more free spins and wasting your time spreading referral link for something that obviously does not pay any users.
You have no more than 50% of the withdrawal threshold so far, it will take some more months to reach it (if the site lets you to reach it). Many other things to do if you just want to earn money from the internet. Dont waste your time.

same website like btcheat  ethcombo.com  do u think ethcombo is also SCAM ? It does not pays

no,you should try and mine with your laptop for several months
then get stuck at 94% and ask in caps for people to register under your reflink like you did above
because,maybe this time you will get lucky and this copy of the scam site will pay you  /end sarcasm

unbelievable how gullible and greedy people can be
free cheese and 300$+ from faucets exist in mousetraps and fairy tales,get real
stop wasting your precious lifetime feeding scammers and do something productive
We cant really avoid these type of people even it is already obvious that these kind of sites are scams and shady but still they do try it first for the sake of money and believing that they might able on getting paid out without even thinking on the time and resources that they are wasting up on those times.People do have always greediness inside but engaging to these things signifies on how severe their greediness inside.

These days faucets or services as such are never going to give you a decent amount of BTC.

There are other legit ways of earnings bitcoins.
One of them is if you got a GPU, you can mine with it. A decent GPU will give you $2 or so daily.

Or if you got some photoshop skills or understand a foreign language you can translate some ANNs and get some tokens from a new coin.

hero member
Activity: 2996
Merit: 794
March 01, 2018, 04:53:06 PM
I have been hitting the spin button on BTC Heat for a few months now. I have earned according to the site  0.01554701 BTC So I'm about 0.02 from the withdraw threshold. I want to see if they really do pay out and if not I will blast the proof everywhere. So to help speed up the process I ask everyone to click my referral link(removed) just visiting it gives 10 spins. I will update this post with the results as soon as I hit .035 BTC If it turns out to be a scam (like it probably is.) at least we will know but I'm too far in to turn back now without knowing the truth.

Are you kidding dude? Come on, we have seed and read many experiences here. You can googling it as well, why do you even wish to continue trying to get more free spins and wasting your time spreading referral link for something that obviously does not pay any users.
You have no more than 50% of the withdrawal threshold so far, it will take some more months to reach it (if the site lets you to reach it). Many other things to do if you just want to earn money from the internet. Dont waste your time.

same website like btcheat  ethcombo.com  do u think ethcombo is also SCAM ? It does not pays

no,you should try and mine with your laptop for several months
then get stuck at 94% and ask in caps for people to register under your reflink like you did above
because,maybe this time you will get lucky and this copy of the scam site will pay you  /end sarcasm

unbelievable how gullible and greedy people can be
free cheese and 300$+ from faucets exist in mousetraps and fairy tales,get real
stop wasting your precious lifetime feeding scammers and do something productive
We cant really avoid these type of people even it is already obvious that these kind of sites are scams and shady but still they do try it first for the sake of money and believing that they might able on getting paid out without even thinking on the time and resources that they are wasting up on those times.People do have always greediness inside but engaging to these things signifies on how severe their greediness inside.
Pages:
Jump to: