Bitcoin Forum

Other => Beginners & Help => Topic started by: mezmerizer9 on June 28, 2014, 12:52:13 AM



Title: Freedogeco.in
Post by: mezmerizer9 on June 28, 2014, 12:52:13 AM
Can someone write or rewrite script for freedogeco.in?


Title: Re: Freedogeco.in
Post by: commandrix on June 28, 2014, 03:20:46 AM
I suggest you ask over in the Service forum, under Marketplace. There may be freelance developers who can help you for a price.


Title: Re: Freedogeco.in
Post by: moreia on June 28, 2014, 10:15:21 AM
Is this the same guy who made freebitco.in or a copycat?
They've copied the script and all, so it shouldn't be to hard to make the same script someone did for freebit


Title: Re: Freedogeco.in
Post by: Bizmark13 on June 28, 2014, 01:14:59 PM
Is this the same guy who made freebitco.in or a copycat?
They've copied the script and all, so it shouldn't be to hard to make the same script someone did for freebit

If the OP is talking about Freedoge.co.in and not Freedogeco.in then it's the same guy I believe. His name is wetsuit and he posts here on the forums.

Freebitco.in thread: http://bitcointalk.org/index.php?topic=319540.0 (http://bitcointalk.org/index.php?topic=319540.0)
Freedoge.co.in thread: http://bitcointalk.org/index.php?topic=638241.0 (http://bitcointalk.org/index.php?topic=638241.0)

Hello all
I am the operator of FreeBitco.in and I have made http://FreeDoge.co.in which is a Dogecoin faucet with a gambling component, where you can win upto $200 in free dogecoins every hour and then play a HI-LO game with your won DOGE to win upto 100x.

The minimum payout is only 5 DOGE and you can request it any time and the coins will be sent to your wallet within 24 hours.

I would appreciate any suggestions or feedback that you may have.

Thanks!


Title: Re: Freedogeco.in
Post by: moreia on June 28, 2014, 01:43:29 PM
Is this the same guy who made freebitco.in or a copycat?
They've copied the script and all, so it shouldn't be to hard to make the same script someone did for freebit

If the OP is talking about Freedoge.co.in and not Freedogeco.in then it's the same guy I believe. His name is wetsuit and he posts here on the forums.

Freebitco.in thread: http://bitcointalk.org/index.php?topic=319540.0 (http://bitcointalk.org/index.php?topic=319540.0)
Freedoge.co.in thread: http://bitcointalk.org/index.php?topic=638241.0 (http://bitcointalk.org/index.php?topic=638241.0)

Hello all
I am the operator of FreeBitco.in and I have made http://FreeDoge.co.in which is a Dogecoin faucet with a gambling component, where you can win upto $200 in free dogecoins every hour and then play a HI-LO game with your won DOGE to win upto 100x.

The minimum payout is only 5 DOGE and you can request it any time and the coins will be sent to your wallet within 24 hours.

I would appreciate any suggestions or feedback that you may have.

Thanks!

thanks for that, didn't know the owner was here on bitcointalk!
Noted


Title: Re: Freedogeco.in
Post by: bitkilo on July 02, 2014, 06:11:14 AM
Can someone write or rewrite script for freedogeco.in?
I use it and don't have any problems, is there a reason why someone should rewrite the script?


Title: Re: Freedogeco.in
Post by: Relnarien on July 02, 2014, 06:20:10 AM
Can someone write or rewrite script for freedogeco.in?
I use it and don't have any problems, is there a reason why someone should rewrite the script?

The OP is looking for someone to clone the script used by the site for him/her, not for the actual script used by the site to be modified. His/Her request has nothing to do with the aforementioned site itself.


Title: Re: Freedogeco.in
Post by: BTC_Fundamentals on July 02, 2014, 08:16:47 AM
So is there a script for the freebit.co.in already ?


Title: Re: Freedogeco.in
Post by: C.Steven on July 02, 2014, 08:20:49 AM
So is there a script for the freebit.co.in already ?

freebit.co.in is just a blank page, or do you mean freebitco.in instead?


Title: Re: Freedogeco.in
Post by: BTC_Fundamentals on July 02, 2014, 12:18:52 PM
So is there a script for the freebit.co.in already ?

freebit.co.in is just a blank page, or do you mean freebitco.in instead?

Freebitco.in i ment, mismatched.


Title: Re: Freedogeco.in
Post by: mezmerizer9 on July 02, 2014, 01:12:28 PM
Here's the script for freedoge.co.in :

Code:
var minValue = 0.000001,
    maxLoss = 10000000000000,
    aimedProfit = 10,
    maxOps = 500000000000000,
    endResult = 0,
    ops = 0,
    bet = function (a, b, c) {
          var seed = window.document.getElementById('next_client_seed').value;     
        $.get("?op=double_your_doge&m=" + (b ? "lo" : "hi") + "&stake=" + a + "&multiplier=2&jackpot=0&client_seed=" + seed, function (d) {
            d = d.split(":");
            $("#balance").html(d[3]);
            c(a, b, "w" === d[1])
        })
    }, martingale = function (a, b, c) {
        c || a >= maxLoss && 0 !== maxLoss ? (b = !b, newValue = minValue) : newValue = 2 * a;
        endResult = c ? endResult + a : endResult - a;
        console.log((c ? "+" : "-") + a);
        ops++;
        (ops < maxOps || 0 === maxOps) && (endResult < aimedProfit || 0 === aimedProfit) ? bet(newValue, b, martingale) :
            (console.log("Martingale finished in " + ops + " operations!"), console.log("Result: " + endResult))
    };
martingale(minValue, !1, !1);


Title: Re: Freedogeco.in
Post by: Velkro on July 02, 2014, 02:42:35 PM
Use markletplace and write much more details about this job


Title: Re: Freedogeco.in
Post by: thono on July 02, 2014, 04:48:28 PM
Here's the script for freedoge.co.in :

Code:
var minValue = 0.000001,
    maxLoss = 10000000000000,
    aimedProfit = 10,
    maxOps = 500000000000000,
    endResult = 0,
    ops = 0,
    bet = function (a, b, c) {
          var seed = window.document.getElementById('next_client_seed').value;     
        $.get("?op=double_your_doge&m=" + (b ? "lo" : "hi") + "&stake=" + a + "&multiplier=2&jackpot=0&client_seed=" + seed, function (d) {
            d = d.split(":");
            $("#balance").html(d[3]);
            c(a, b, "w" === d[1])
        })
    }, martingale = function (a, b, c) {
        c || a >= maxLoss && 0 !== maxLoss ? (b = !b, newValue = minValue) : newValue = 2 * a;
        endResult = c ? endResult + a : endResult - a;
        console.log((c ? "+" : "-") + a);
        ops++;
        (ops < maxOps || 0 === maxOps) && (endResult < aimedProfit || 0 === aimedProfit) ? bet(newValue, b, martingale) :
            (console.log("Martingale finished in " + ops + " operations!"), console.log("Result: " + endResult))
    };
martingale(minValue, !1, !1);

thanks for the script :D


Title: Re: Freedogeco.in
Post by: aboo on July 03, 2014, 02:19:09 AM
But isnt doge worth pretty much nothing lol.

Just saying..  ::)


Title: Re: Freedogeco.in
Post by: bitkilo on July 03, 2014, 11:18:09 AM
Can someone write or rewrite script for freedogeco.in?
I use it and don't have any problems, is there a reason why someone should rewrite the script?

The OP is looking for someone to clone the script used by the site for him/her, not for the actual script used by the site to be modified. His/Her request has nothing to do with the aforementioned site itself.
Thanks, I thought the op was referring to the actual site.
And yep at the moment dogie isn't worth much at all.


Title: Re: Freedogeco.in
Post by: commandrix on July 03, 2014, 02:18:05 PM
But isnt doge worth pretty much nothing lol.

Just saying..  ::)

The price was steadily dropping on Mintpal last I looked. Not quite worth nil, but not looking good. Which is why the payouts on freedogeco.in seems to keep going up. They want to match up their payouts with specific dollar values.


Title: Re: Freedogeco.in
Post by: BunsenBurner on July 03, 2014, 02:28:27 PM
But isnt doge worth pretty much nothing lol.

Just saying..  ::)

The price was steadily dropping on Mintpal last I looked. Not quite worth nil, but not looking good. Which is why the payouts on freedogeco.in seems to keep going up. They want to match up their payouts with specific dollar values.

Yup, doge was at about 65 satoshi in mid-June, and is now at just 33 satoshi...
https://www.cryptsy.com/markets/view/132


Title: Re: Freedogeco.in
Post by: zahid888 on May 21, 2015, 09:50:23 AM
Is this a true image
https://i.imgur.com/uxV6N2f.png


Title: Re: Freedogeco.in
Post by: mayflor2 on May 21, 2015, 07:56:36 PM
Can someone write or rewrite script for freedogeco.in?

There are some faucet scripts on github.  They aren't the exact script used here but they are close.