mezmerizer9 (OP)
|
|
June 28, 2014, 12:52:13 AM |
|
Can someone write or rewrite script for freedogeco.in?
|
|
|
|
commandrix
|
|
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.
|
|
|
|
moreia
|
|
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
|
|
|
|
Bizmark13
|
|
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.0Freedoge.co.in thread: http://bitcointalk.org/index.php?topic=638241.0Hello 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!
|
|
|
|
moreia
|
|
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.0Freedoge.co.in thread: http://bitcointalk.org/index.php?topic=638241.0Hello 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
|
|
|
|
bitkilo
Legendary
Offline
Activity: 1638
Merit: 1010
https://www.bitcoin.com/
|
|
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?
|
Not a paid signature, just added to promote Bitcoin.com
|
|
|
Relnarien
|
|
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.
|
|
|
|
BTC_Fundamentals
Member
Offline
Activity: 70
Merit: 10
|
|
July 02, 2014, 08:16:47 AM |
|
So is there a script for the freebit.co.in already ?
|
|
|
|
C.Steven
|
|
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?
|
|
|
|
BTC_Fundamentals
Member
Offline
Activity: 70
Merit: 10
|
|
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.
|
|
|
|
mezmerizer9 (OP)
|
|
July 02, 2014, 01:12:28 PM |
|
Here's the script for freedoge.co.in : 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);
|
|
|
|
Velkro
Legendary
Offline
Activity: 2296
Merit: 1014
|
|
July 02, 2014, 02:42:35 PM |
|
Use markletplace and write much more details about this job
|
|
|
|
thono
Member
Offline
Activity: 95
Merit: 10
|
|
July 02, 2014, 04:48:28 PM |
|
Here's the script for freedoge.co.in : 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
|
|
|
|
aboo
Full Member
Offline
Activity: 188
Merit: 100
First decentralized MLM system based on Blockchain
|
|
July 03, 2014, 02:19:09 AM |
|
But isnt doge worth pretty much nothing lol. Just saying..
|
|
|
|
bitkilo
Legendary
Offline
Activity: 1638
Merit: 1010
https://www.bitcoin.com/
|
|
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.
|
Not a paid signature, just added to promote Bitcoin.com
|
|
|
commandrix
|
|
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.
|
|
|
|
BunsenBurner
|
|
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
|
|
|
|
zahid888
Member
Offline
Activity: 275
Merit: 20
the right steps towerds the goal
|
|
May 21, 2015, 09:50:23 AM |
|
Is this a true image
|
1BGvwggxfCaHGykKrVXX7fk8GYaLQpeixA
|
|
|
mayflor2
|
|
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.
|
|
|
|
|