Bitcoin Forum
June 21, 2024, 09:05:01 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 »
1  Economy / Micro Earnings / Re: TomosMining - HIGHEST PAID MINING (BTC->FaucetHub) 5% REF! on: February 24, 2018, 03:13:30 PM
How to make this one run on background and not visible on tray? thanks...
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ICO] Ziber — The First Blockchain mobile operator. on: July 23, 2017, 11:40:43 AM
How to participate in the distribution of 10% of tokens? Can i figure out how many tokens will come?
3  Economy / Micro Earnings / Re: [Updated 07/nov/2015] Faucet Owners Against Scammers and Bots on: December 16, 2015, 02:51:06 AM
Quote
Real AntiBot Links

Download & unpack:
http://bit.makejar.com/labs/anti-bot-links-200/antibotlinks.zip


Code:
Files to add:
/libs/antibotlinks.php


Files to edit:
/index.php
/templates/*theme-name*/index.php


Ok, let's start.

First make a backup of your faucet (everything could go wrong, better safe than sorry).

Then

Copy:
antibotlinks.php

To:
/libs/antibotlinks.php


Now you will need to edit 2 files. I suggest using Notepad++ https://notepad-plus-plus.org/ to edit files but any good editor will do the job.
This is based on FB R60 but should work with newer/older versions.

Open:
/index.php

Find:
        $data['captcha_info'] = $captcha;

add after:
        # AntiBotLinks
        require_once('libs/antibotlinks.php');
        $antibotlinks = new antibotlinks(true);// true if GD is on on the server, false is less secure
        if (array_key_exists('address', $_POST)) {
          if (!$antibotlinks->check()) {
            $antibotlinks->generate(5, true);// number of links once they fail to solve min 3 - max 5, the second param MUST BE true
          }
        } else {
          $antibotlinks->generate(3);// initial number of links min 3 - max 5
        }


Find:
           $data['captcha_valid'] &&

add after:

           # AntiBotLinks
           $antibotlinks->is_valid() &&
          

Open:
/templates/*theme-name*/index.php

Find:
</head>

Add before:
<?php
# AntiBotLinks START
?>

<script style="text/javascript">
$(function() {
  var clicks = 0;
  $('.antibotlinks').click(function() {
    clicks++;
    $('#antibotlinks').val($('#antibotlinks').val()+' '+$(this).attr('rel'));
    if(clicks == <?php echo $antibotlinks->get_link_count(); ?>) {
      var rand = Math.floor((Math.random() * clicks) + 1);
      var button = '<input type="submit" class="btn btn-primary btn-lg" value="Get Reward!">';
      var z=0;
      $('.antibotlinks').each(function(){
        z++;
        if (z==rand) {
          $(this).replaceWith(button);
        }
      });
      
    }
    $(this).hide();
    return false;
  });
});
</script>
<?php
# AntiBotLinks END
?>



Find:
                            <?php if(!$data["captcha_valid"]): ?>
                            <p class="alert alert-danger">Invalid captcha code!</p>
                            <?php endif; ?>


Add after (the input field must be between <form> and </form>):

<?php
# AntiBotLinks START
?>

                            <input type="hidden" name="antibotlinks" id="antibotlinks" value="" />
                            <?php if(!$antibotlinks->is_valid()): ?>
                            <p class="alert alert-danger">Invalid AntiBot verification!</p>
                            <?php endif; ?>
<?php
# AntiBotLinks END
?>



Somewhere between <form> and </form> add (you need to do it 5 times, this is where the links will appear):

<?php
# AntiBotLinks START
?>

                        <?php echo $antibotlinks->show_link(); ?>
<?php
# AntiBotLinks END
?>


And finally remove the default CLAIM button :)


This doesn't display "Please click on the Anti-Bot links in the following order" on the page. but the anti bot links does.

Follow the instructions here https://bitcointalk.org/index.php?topic=1200700.msg12719086#msg12719086

I did..can you help me take a look at my files please.
4  Economy / Micro Earnings / Re: [Updated 07/nov/2015] Faucet Owners Against Scammers and Bots on: December 15, 2015, 06:11:12 AM
Quote
Real AntiBot Links

Download & unpack:
http://bit.makejar.com/labs/anti-bot-links-200/antibotlinks.zip


Code:
Files to add:
/libs/antibotlinks.php


Files to edit:
/index.php
/templates/*theme-name*/index.php


Ok, let's start.

First make a backup of your faucet (everything could go wrong, better safe than sorry).

Then

Copy:
antibotlinks.php

To:
/libs/antibotlinks.php


Now you will need to edit 2 files. I suggest using Notepad++ https://notepad-plus-plus.org/ to edit files but any good editor will do the job.
This is based on FB R60 but should work with newer/older versions.

Open:
/index.php

Find:
        $data['captcha_info'] = $captcha;

add after:
        # AntiBotLinks
        require_once('libs/antibotlinks.php');
        $antibotlinks = new antibotlinks(true);// true if GD is on on the server, false is less secure
        if (array_key_exists('address', $_POST)) {
          if (!$antibotlinks->check()) {
            $antibotlinks->generate(5, true);// number of links once they fail to solve min 3 - max 5, the second param MUST BE true
          }
        } else {
          $antibotlinks->generate(3);// initial number of links min 3 - max 5
        }


Find:
           $data['captcha_valid'] &&

add after:

           # AntiBotLinks
           $antibotlinks->is_valid() &&
          

Open:
/templates/*theme-name*/index.php

Find:
</head>

Add before:
<?php
# AntiBotLinks START
?>

<script style="text/javascript">
$(function() {
  var clicks = 0;
  $('.antibotlinks').click(function() {
    clicks++;
    $('#antibotlinks').val($('#antibotlinks').val()+' '+$(this).attr('rel'));
    if(clicks == <?php echo $antibotlinks->get_link_count(); ?>) {
      var rand = Math.floor((Math.random() * clicks) + 1);
      var button = '<input type="submit" class="btn btn-primary btn-lg" value="Get Reward!">';
      var z=0;
      $('.antibotlinks').each(function(){
        z++;
        if (z==rand) {
          $(this).replaceWith(button);
        }
      });
      
    }
    $(this).hide();
    return false;
  });
});
</script>
<?php
# AntiBotLinks END
?>



Find:
                            <?php if(!$data["captcha_valid"]): ?>
                            <p class="alert alert-danger">Invalid captcha code!</p>
                            <?php endif; ?>


Add after (the input field must be between <form> and </form>):

<?php
# AntiBotLinks START
?>

                            <input type="hidden" name="antibotlinks" id="antibotlinks" value="" />
                            <?php if(!$antibotlinks->is_valid()): ?>
                            <p class="alert alert-danger">Invalid AntiBot verification!</p>
                            <?php endif; ?>
<?php
# AntiBotLinks END
?>



Somewhere between <form> and </form> add (you need to do it 5 times, this is where the links will appear):

<?php
# AntiBotLinks START
?>

                        <?php echo $antibotlinks->show_link(); ?>
<?php
# AntiBotLinks END
?>


And finally remove the default CLAIM button :)


This doesn't display "Please click on the Anti-Bot links in the following order" on the page. but the anti bot links does.
5  Economy / Goods / Re: Chickens for Bitcoins? on: October 10, 2015, 03:20:37 AM
To the mods, If this is not the right section kindly move this topic to where it belongs. I just couldn't find the right forum section for this topic.

I Have a vacant lot in my area and decided to make it a farm business for free-range chickens (laying hens) that could produce 300 eggs or more per year. If you know of someone or have some in your backyard and would like to sell I am very interested. I have found one website that sell this kind of birds and ship worldwide but I don't trust the site. They don't have contact info and mailing address.

Let me know..

I think the best section for this thread is in Marketplace and then Goods
People check this section often to get offers like yours, so you can there get sellers i think

thank you....
6  Economy / Goods / Re: Chickens for Bitcoins? on: October 10, 2015, 03:18:58 AM
You're definitely on the wrong section cuz this thread must be on the markeplace section(preferably on the goods section since it seems you want to buy chickens with bitcoins) and you'll attract more sellers there. You can move this thread by yourself by clicking "move topic" on the lower left side of the page.

By the way, are you from the Philippines? (By judging on your signature)

yes I am from Philippines.
7  Economy / Goods / Chickens for Bitcoins? on: October 09, 2015, 08:05:10 AM
To the mods, If this is not the right section kindly move this topic to where it belongs. I just couldn't find the right forum section for this topic.

I Have a vacant lot in my area and decided to make it a farm business for free-range chickens (laying hens) that could produce 300 eggs or more per year. If you know of someone or have some in your backyard and would like to sell I am very interested. I have found one website that sell this kind of birds and ship worldwide but I don't trust the site. They don't have contact info and mailing address.

Let me know..
8  Economy / Games and rounds / Re: Win FREE BTC playing our new Coin Hopper Android App! (25 BTC Intro Giveaway) on: October 08, 2015, 06:08:17 AM
I have problem with sms verify.. i request few times today for sms verification.. but still until now never get the code

same problem with me...
9  Economy / Games and rounds / Re: Play Flappy Bird on your Android Phone and win FREE BTC! Faucet on: October 08, 2015, 06:04:40 AM
I can't seem to play this today. When I open the new app w/ the red bird it wants me to download version 2.0.0 which I already have I tried twice now to re-download it but it gets to 99% and it's already installed so can't install again.

Also wish I could verify w/ my phone  Undecided I'm missing out on those free bits.

i tried to contact the support but got no response...I can't widthraw because you need to verify your account..
10  Economy / Games and rounds / Re: Play Flappy Bird on your Android Phone and win FREE BTC! Faucet on: October 07, 2015, 02:42:46 AM
i can't verify using my phone..it says the verification code was sent but the code didn't arrive.
11  Economy / Micro Earnings / Re: [ANN] Bitcoinblue.com - Earn free bitcoins now! Every 90 min on: October 06, 2015, 10:19:49 AM
will give this a try...
12  Economy / Micro Earnings / Re: Faucet Owners Against Scammers and Bots on: October 06, 2015, 10:19:12 AM
How to block emails or btc address of scammer ?

And how do you know that a user is using bot is there any special symptoms of bots ?

Yes... I have some tricks. But I still always analyzing my FaucetBox payouts.

For example ?
If you don't whish to post in public you may pm me. Smiley

PM me as well..i would like to start a faucet maybe by next month.
13  Economy / Micro Earnings / Re: [ANN] Adalso - Bid & CPC Advertising Network, Bitcoin Advertising Solution on: October 06, 2015, 10:17:00 AM
is this the same to adbit.co?
14  Economy / Micro Earnings / Re: RUNNING A FAUCET WITH NO START MONEY IS EASY on: August 16, 2015, 07:19:30 AM
thumbs up for you from me my friend..i was using faucetbox but my faucet gets drained as of now as i am busy for work..maybe in a day or two my faucet wil be lively again.
15  Economy / Services / Re: [instant]i will help you make your own faucet or rotator for 0.001 BTC [Hire Me] on: August 16, 2015, 01:48:26 AM
kindly check your PM op..thanks.
16  Economy / Services / Re: You Need Content? (Articles) I Can Help Cheap $1.50/300 Word Article on: July 08, 2015, 04:50:43 AM
check your email....
17  Economy / Service Announcements / Re: HotelGo24.com: Book a hotel and get Bitcoin cash back. on: July 01, 2015, 02:04:01 PM
Checking it out...nice site btw
18  Economy / Services / Re: NEW SERVICE- FaucetBuilder - All features you need to build, no fees/cost! on: June 23, 2015, 01:56:18 PM
I will definitely try your script.
19  Economy / Micro Earnings / Re: [ANN] Mellow Ads - simple, bitcoin advertising - FREE 0.01 BTC OFFER on: June 23, 2015, 01:52:19 PM
Account ref    2C054F3E31EE

0.01 BTC credited, good luck!
thank you very much.
20  Economy / Micro Earnings / Re: [ANN] Mellow Ads - simple, bitcoin advertising - FREE 0.01 BTC OFFER on: June 23, 2015, 08:31:09 AM
Account ref    2C054F3E31EE
Pages: [1] 2 3 4 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!