Bitcoin Forum

Economy => Micro Earnings => Topic started by: alamin99 on April 27, 2017, 06:35:56 PM



Title: [New] Integrate Short Links in FaucetBOX, Dice and FaucetSystem Script!
Post by: alamin99 on April 27, 2017, 06:35:56 PM
For FaucetBOX Script, go here: http://cointalk.club/faucet-scripts-add-ons-plugins/integration-of-short-links-in-faucetbox-script/

For Dice Script, go here: http://cointalk.club/faucet-scripts-add-ons-plugins/integration-of-short-links-in-dice-script/

For FaucetSyatem Script, go here: https://cointalk.club/faucet-scripts-add-ons-plugins/how-to-use-faucetsystem-com's-script-for-faucethub-io-faucets/msg1823/#msg1823 [Thanks to kema00]


Title: Re: Integrate Short Links in FaucetBOX and Dice Script
Post by: Flash1997 on April 28, 2017, 06:08:54 AM
Can you make this for faucetsystem script as well? As there are many owners like me who use that script.


Title: Re: Integrate Short Links in FaucetBOX and Dice Script
Post by: alamin99 on April 28, 2017, 08:32:25 AM
Can you make this for faucetsystem script as well? As there are many owners like me who use that script.
okay, no problem, I will try to make for faucetsystem script... :)


Title: Re: Integrate Short Links in FaucetBOX and Dice Script
Post by: xnd on April 29, 2017, 04:55:50 AM
+1 for faucetsystem integration :)


Title: Re: Integrate Short Links in FaucetBOX and Dice Script
Post by: alamin99 on April 29, 2017, 06:45:59 AM
+1 for faucetsystem integration :)
okay okay okay...!!!


Title: Re: Integrate Short Links in FaucetBOX and Dice Script
Post by: alamin99 on April 30, 2017, 05:05:59 PM
Updated


Title: Re: Integrate Short Links in FaucetBOX and Dice Script
Post by: vaibhavsingh on April 30, 2017, 06:00:56 PM
For FaucetBOX Script, go here: http://cointalk.club/faucet-scripts-add-ons-plugins/integration-of-short-links-in-faucetbox-script/

For Dice Script, go here: http://cointalk.club/faucet-scripts-add-ons-plugins/integration-of-short-links-in-dice-script/
but isn't faucetbox dead already?
I thought they closed after adsense banning them  ???


Title: Re: Integrate Short Links in FaucetBOX and Dice Script
Post by: alamin99 on April 30, 2017, 07:51:45 PM
For FaucetBOX Script, go here: http://cointalk.club/faucet-scripts-add-ons-plugins/integration-of-short-links-in-faucetbox-script/

For Dice Script, go here: http://cointalk.club/faucet-scripts-add-ons-plugins/integration-of-short-links-in-dice-script/
but isn't faucetbox dead already?
I thought they closed after adsense banning them  ???
FaucetBOX is closed but a lot of people are still using their script...


Title: Re: Integrate Short Links in FaucetBOX and Dice Script
Post by: RektCoins on May 01, 2017, 09:43:24 AM
i just tried it with a test faucet what i have, it works perfectly, but it supports other coins like LTC and DOGE?


Title: Re: Integrate Short Links in FaucetBOX and Dice Script
Post by: alamin99 on May 01, 2017, 12:59:17 PM
i just tried it with a test faucet what i have, it works perfectly, but it supports other coins like LTC and DOGE?
yeah, just test... ;)


Title: Re: Integrate Short Links in FaucetBOX and Dice Script
Post by: Flash1997 on May 03, 2017, 05:23:03 PM
Anyway to integrate this with faucetsystem script? I have pretty good amount of users claiming on my faucet and i would like to use you service :)


Title: Re: Integrate Short Links in FaucetBOX and Dice Script
Post by: alamin99 on May 04, 2017, 03:09:28 PM
Anyway to integrate this with faucetsystem script? I have pretty good amount of users claiming on my faucet and i would like to use you service :)


Title: Re: Integrate Short Links in FaucetBOX and Dice Script
Post by: RektCoins on May 09, 2017, 04:45:55 AM
i just tried it with a test faucet what i have, it works perfectly, but it supports other coins like LTC and DOGE?
yeah, just test... ;)

I tried and i just got the message "You will recive 650 litoshi extra in your next claim" (i modified the message) but it doesn't pay it :/


Title: Re: Integrate Short Links in FaucetBOX and Dice Script
Post by: alamin99 on May 09, 2017, 05:01:18 AM
i just tried it with a test faucet what i have, it works perfectly, but it supports other coins like LTC and DOGE?
yeah, just test... ;)

I tried and i just got the message "You will recive 650 litoshi extra in your next claim" (i modified the message) but it doesn't pay it :/
Perhaps your index.php is unable to connect with configuration file. anyway, check this code:
Code:
require_once("links/config.php");

function getUserIP()
{
    $client  = @$_SERVER['HTTP_CLIENT_IP'];
    $forward = @$_SERVER['HTTP_X_FORWARDED_FOR'];
    $remote  = $_SERVER['REMOTE_ADDR'];

    if(filter_var($client, FILTER_VALIDATE_IP))
    {
        $getip = $client;
    }
    elseif(filter_var($forward, FILTER_VALIDATE_IP))
    {
        $getip = $forward;
    }
    else
    {
        $getip = $remote;
    }
    return $getip;
}
$userip = getUserIP();
$lnk_lnk = "links/lnk/$userip.xxx"; //link path
if (file_exists($lnk_lnk)) {
     $check_link = file_get_contents($lnk_lnk); //check status
     if ($check_link == 200) {
         $reward += $extra;
     }
}
Remove this require_once("links/config.php"); and add there $extra = 650; //Extra Litoshi


Title: Re: Integrate Short Links in FaucetBOX and Dice Script
Post by: RektCoins on May 09, 2017, 06:50:46 AM
i just tried it with a test faucet what i have, it works perfectly, but it supports other coins like LTC and DOGE?
yeah, just test... ;)

I tried and i just got the message "You will recive 650 litoshi extra in your next claim" (i modified the message) but it doesn't pay it :/
Perhaps your index.php is unable to connect with configuration file. anyway, check this code:
Code:
require_once("links/config.php");

function getUserIP()
{
    $client  = @$_SERVER['HTTP_CLIENT_IP'];
    $forward = @$_SERVER['HTTP_X_FORWARDED_FOR'];
    $remote  = $_SERVER['REMOTE_ADDR'];

    if(filter_var($client, FILTER_VALIDATE_IP))
    {
        $getip = $client;
    }
    elseif(filter_var($forward, FILTER_VALIDATE_IP))
    {
        $getip = $forward;
    }
    else
    {
        $getip = $remote;
    }
    return $getip;
}
$userip = getUserIP();
$lnk_lnk = "links/lnk/$userip.xxx"; //link path
if (file_exists($lnk_lnk)) {
     $check_link = file_get_contents($lnk_lnk); //check status
     if ($check_link == 200) {
         $reward += $extra;
     }
}
Remove this require_once("links/config.php"); and add there $extra = 650; //Extra Litoshi

Oh thanks, i forgot to add the code in my main Index file, thanks a lot!


Title: Re: [New] Integrate Short Links in FaucetBOX, Dice and FaucetSystem Script!
Post by: Kema on September 22, 2017, 07:28:15 AM
I just made a post on how to include short links with the faucetsystem script over at Cointalk for those who might be interested.
Cointalk Post (https://cointalk.club/faucet-scripts-add-ons-plugins/how-to-use-faucetsystem-com's-script-for-faucethub-io-faucets/msg1823/#msg1823)


Title: Re: [New] Integrate Short Links in FaucetBOX, Dice and FaucetSystem Script!
Post by: alamin99 on September 22, 2017, 07:32:28 AM
I just made a post on how to include short links with the faucetsystem script over at Cointalk for those who might be interested.
Cointalk Post (https://cointalk.club/faucet-scripts-add-ons-plugins/how-to-use-faucetsystem-com's-script-for-faucethub-io-faucets/msg1823/#msg1823)

Well done Kema. Thank you. :)


Title: Re: [New] Integrate Short Links in FaucetBOX, Dice and FaucetSystem Script!
Post by: dan5189 on October 20, 2017, 09:17:36 PM
Can someone link the FaucetBox Link Shortner Option?
Cause Forum Has closed and i don't find a proper way to do it.


Title: Re: [New] Integrate Short Links in FaucetBOX, Dice and FaucetSystem Script!
Post by: Kema on October 21, 2017, 12:34:48 PM
Can someone link the FaucetBox Link Shortner Option?
Cause Forum Has closed and i don't find a proper way to do it.

I don't know anything about that particular script but if you figure out how to use the Developer API for the short links, the rest will be easy.
The tricky part is figuring out how file_get_contents or curl works. So, start by reading up on that.  ;)


Title: Re: [New] Integrate Short Links in FaucetBOX, Dice and FaucetSystem Script!
Post by: sumair7230 on January 01, 2018, 11:52:11 PM
can u please intergrate shortlink on claim button ?


Title: Re: [New] Integrate Short Links in FaucetBOX, Dice and FaucetSystem Script!
Post by: Blaster724 on March 22, 2018, 12:25:57 AM
Seems like this post is kinda old. I need a mandatory shortlink for Faucetbox Ultimate R86. I can pay because I really just want this done, and I don't know if people will do this otherwise. Please help me out.

It's when you press the claim button, not an optional extra 15% or so.


Title: Re: [New] Integrate Short Links in FaucetBOX, Dice and FaucetSystem Script!
Post by: gullu on January 02, 2020, 12:15:28 AM
Does anyone have this dice script?
The link in the thread is not working.
If anyone has this then please pm me.