Bitcoin Forum
May 24, 2024, 04:37:42 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 »
281  Economy / Gambling / Re: ➫ ➬ ➫ ➬ LUCKYB.IT ★ +9.5k BTC wagered ★ the best onchain game on: October 08, 2014, 03:46:30 PM
ACHIEVED TWO x130 MULTIPLIERS IN A TIME GAP OF LESS THAN 10 MINUTES. Also achieved an x24 and x9 and x4 and 6x2.

YOU CAN SEE THE BETS HERE: http://luckyb.it/browse?search=1B24FWxqoXHmJkRQRBjYqTZmGkBBWgeFyH&day=


Proof of ownership of that address:

Message:
Code:
ACHIEVED TWO X130 MULTIPLIERS IN A TIME GAP OF LESS THAN 10 MINUTES

Address:
Code:
1B24FWxqoXHmJkRQRBjYqTZmGkBBWgeFyH

Sign:
Code:
HEER3TRmbKz5Yg1/vSvc6jxf0k+PjgP8UMgZBTePPDTT4NAHhYA9jHhvFbxcVLBz485ywkn274Zr3Bj4wf0+Ahw=

congrats buddy Smiley realy you are lucky man ...so fast 2x130!!! one day...10min-awesome!!!


Wow, very impressive! Congrats!!  Smiley
282  Economy / Gambling / Re: ➫ ➬ ➫ ➬ LUCKYB.IT ★ +9.3k BTC wagered ★ the best onchain game on: October 07, 2014, 04:11:42 PM
LuckyBit's Happy Hour



When?
Thursday 09/10, 9pm -> 10pm (21h -> 22h) GMT. (GMT is also LuckyBit time).

Where?
This bitcoin game with an awesome community, a beloved chatbot©, cool graphics. The only place giving you a thrill while literally watching your coins.
Yes, LuckyBit.



It will be "only" a happy hour (not a crazy one). But the chatbot will share a lot of love, be sure to have your eligible address ready.  Smiley
After that, the LuckyBit one year anniversary is approaching, stay tuned, we should celebrate!

Peace!
 Kiss
283  Economy / Games and rounds / Re: Lucky Bit Bet Analysis Tool [SOURCE] on: October 06, 2014, 05:34:21 PM
Hey there, Lucky Bit fans! I've taken a moment to put together a useful tool that expands on the power of the Lucky Bit Bet Browser. This small Java app will analyze your betting history and provide a breakdown of your results. You can see what color you've been lucky (or unlucky!) on, how many times you've hit the rare wins, and the app also discovers your largest win and best result.

It's 160+ lines of source code, and since I don't think it's a good idea to be casually tossing around JAR files I've decided to not provide a pre-compiled version at this time. Once the code is a little more polished I may do this but for now I'd like to release this code to the public. So yeah - the source code provided in this post is offered with no claim of ownership and no instruction manual. It also has no comments. Enjoy!

Code:
package it.luckyb.demo;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.LinkedList;
import java.util.List;
import java.util.Locale;

import org.json.JSONObject;

public class LuckyStatsApp {
public final static String API = "http://luckyb.it/api";
protected enum Color { GREEN, YELLOW, RED };
protected class Bet {
protected double amount, result, payout;
protected Color color;
protected boolean isValid;
private String binary;

public Bet(JSONObject txo) {
if (!txo.getString("type").equals("VALID_BET")) {
isValid = false;
return;
}
isValid = true;
binary = txo.getString("binary_string");
amount = txo.getDouble("bet_amount");
result = txo.getDouble("multiplier_obtained");
payout = txo.getDouble("payout_amount");
color = Color.valueOf(txo.getString("game_name").toUpperCase(Locale.US));
}
public String mult() {
return String.format((result < 2 && result != 1.0) ? "%-1.1f" : "%-1.0f", result);
}
public int slot() {
int r = 0;
for (char c : binary.toCharArray())
if (c == '0') r -= 1; else r += 1;
r/=2;
return r<0?r*-1:r;
}
}

private String address;

private LuckyStatsApp(String address) { this.address = address; }
private JSONObject getData() throws IOException {
StringBuilder sb = new StringBuilder();
HttpURLConnection conn = (HttpURLConnection)(new URL(API + "/getbetsbyaddress/" + address).openConnection());
conn.connect();
InputStream is = conn.getInputStream();
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(is));
String line = null;
while ((line = reader.readLine()) != null) sb.append(line+"\n");
} catch (IOException e) {
is.close();
conn.disconnect();
throw e;
}
is.close();
conn.disconnect();
return new JSONObject(sb.toString());
}
private void go() {
List<Bet> bets = new LinkedList<Bet>();
try {
System.out.println("Fetching data... Please wait!");
JSONObject o = getData();
System.out.println();
for (String txkey : o.keySet())
bets.add(new Bet(o.getJSONObject(txkey)));
} catch (IOException e) {
System.out.println("Data retrieval failed. Is the Lucky Bit API down?");
System.out.println("The actual error encountered was:");
System.out.println(e.getLocalizedMessage());
return;
}
if (bets.size() == 0) {
System.out.println("No results received.");
System.out.println("Either [" + address + "] has never played a bet,");
System.out.println("or that isn't a valid bitcoin address.");
return;
}
double betT, betG = 0, betY = 0, betR = 0;
double wonT, wonG = 0, wonY = 0, wonR = 0;
Bet topWin = null, topHit = null;
int plays, playsG = 0, playsY = 0, playsR = 0;
int slots[] = {0,0,0,0,0,0,0,0,0};
int slotsG[] = {0,0,0,0,0,0,0,0,0};
int slotsY[] = {0,0,0,0,0,0,0,0,0};
int slotsR[] = {0,0,0,0,0,0,0,0,0};
double slotsP[] = {0,0,0,0,0,0,0,0,0};
for (Bet bet : bets) {
if (bet.isValid) {
switch (bet.color) {
case GREEN:
betG += bet.amount;
wonG += bet.payout;
playsG += 1;
slotsG[bet.slot()] += 1;
break;
case YELLOW:
betY += bet.amount;
wonY += bet.payout;
playsY += 1;
slotsY[bet.slot()] += 1;
break;
case RED:
betR += bet.amount;
wonR += bet.payout;
playsR += 1;
slotsR[bet.slot()] += 1;
break;
default:
break;
}
if (topWin == null || topWin.payout < bet.payout) topWin = bet;
if (topHit == null || topHit.result < bet.result || (topHit.result == bet.result && topHit.payout < bet.payout)) topHit = bet;
}
}
betT = betG + betY + betR;
wonT = wonG + wonY + wonR;
plays = playsG + playsY + playsR;
for (int i = 0; i < 9; i++) {
slots[i] += slotsG[i];
slots[i] += slotsY[i];
slots[i] += slotsR[i];
slotsP[i] = slots[i]*100.0/plays;
}
System.out.println("Bet analysis for [" + address + "]");
System.out.println(String.format(
"Total bet %-1.3f BTC - Total won %-1.3f BTC - Net P/L %-1.3f BTC", betT, wonT, wonT - betT));
System.out.println(String.format(
"Biggest win was %-1.3f on %s, hitting x%s for %-1.3f BTC", topWin.amount, topWin.color.toString().toLowerCase(), topWin.mult(), topWin.payout));
System.out.println(String.format(
"Best win was %-1.3f on %s, hitting x%s for %-1.3f BTC", topHit.amount, topHit.color.toString().toLowerCase(), topHit.mult(), topHit.payout));
System.out.println(String.format(
"%6s %6s %6s %6s %6s",
"", "Green", "Yellow", "Red", "Total"));
for (int i = 0; i < 9; i++)
System.out.println(String.format(
"Mid +%1d %6d %6d %6d %6d %-2.2f%%",
i, slotsG[i], slotsY[i], slotsR[i], slots[i], slotsP[i]));
System.out.println(String.format(
"%6s %6d %6d %6d %6d",
"Total", playsG, playsY, playsR, plays));
}
public static void main(String[] args) {
if (args.length != 1) {
System.out.println("Specify your address, please.");
return;
}
LuckyStatsApp theApp = new LuckyStatsApp(args[0]);
theApp.go();
}
}

Nice!


[...]

Luckybit in the statistics with graphs dont show the best bets of the addy, that can be in the next update, is just an idea  Wink

Indeed, good idea.
284  Economy / Games and rounds / Re: Luckyb.it bets *BOT* - Curl + Blockchain API on: October 06, 2014, 05:30:36 PM
i dont see how you can make a large profit with this on luckybit, and those transaction fees will add up but if u think it will make you a profit then go ahead and how does this bot run?

Transaction fees impact are relative to your bets amounts. If you play large bets, fees are negligible. We do not recommend playing small bets like 0.001 BTC, with or without martingale, except on red. (We leave such small amounts available only for people to try out the game cheaply the first few times  - again, except on red where it might makes sense to play this).

Nice script anyway, well done!
285  Economy / Gambling / Re: ➫ ➬ ➫ ➬ LUCKYB.IT ★ +9.3k BTC wagered ★ the best onchain game on: October 06, 2014, 05:24:42 PM
LuckyBit - Tune of the Day

Quote from: LuckyBitSupport
Propose a tune here and it'll become the LuckyBit's 'Tune of the Day'!
The tune of the day will always be announced in the message box of http://luckyb.it
(The message box is in the upper left corner of the main site.)

Note that hate speech/abusive/racist/sexist songs will be ignored!

Theo.Godspeed, your tune is set! https://www.youtube.com/watch?v=FLYVebOpEwk

Next in line:


286  Economy / Gambling / Re: ➫ ➬ ➫ ➬ LUCKYB.IT ★ +9.3k BTC wagered ★ the best onchain game on: October 06, 2014, 05:23:30 PM
would love to see an affiliate program  Smiley

Do you guys have an affiliate program?

Not yet!
287  Economy / Games and rounds / Re: Luckyb.it bets *BOT* - Curl + Blockchain API on: October 02, 2014, 06:25:09 PM

Hey guys,

awesome work you are doing here! We have re-enabled our API for you - as there is now some use for it!  Wink

The API's documentation can be found here: http://luckybit-api-docs.readthedocs.org/

By checking results, you can now implement a real martingale or a similar bot!

Let us know what you think!

The LuckyBit team
288  Economy / Gambling / Re: ➫ ➬ ➫ ➬ LUCKYB.IT ★ +8.2k BTC wagered ★ the best onchain game on: October 02, 2014, 09:57:19 AM
LuckyBit - Tune of the Day

Quote from: LuckyBitSupport
Propose a tune here and it'll become the LuckyBit's 'Tune of the Day'!
The tune of the day will always be announced in the message box of http://luckyb.it
(The message box is in the upper left corner of the main site.)

Note that hate speech/abusive/racist/sexist songs will be ignored!

kolloh, your tune is set! https://www.youtube.com/watch?v=4pz2mWqUttg

Next in line:

289  Economy / Games and rounds / Re: Luckyb.it bets *BOT* - Curl + Blockchain API on: October 02, 2014, 06:56:00 AM
Nice one! Cheesy
290  Economy / Gambling / Re: ➫ ➬ ➫ ➬ LUCKYB.IT ★ +8.3k BTC wagered ★ the best onchain game on: October 02, 2014, 06:46:47 AM
Sorry for the downtime last night. We have been under a DDoS attack.
The site should be back up now.
291  Economy / Gambling / Re: ➫ ➬ ➫ ➬ LUCKYB.IT ★ +8.2k BTC wagered ★ the best onchain game on: September 21, 2014, 03:32:17 PM
LuckyBit - Tune of the Day

Quote from: LuckyBitSupport
Propose a tune here and it'll become the LuckyBit's 'Tune of the Day'!
The tune of the day will always be announced in the message box of http://luckyb.it
(The message box is in the upper left corner of the main site.)

Note that hate speech/abusive/racist/sexist songs will be ignored!

JLynn171, your tune is set! https://www.youtube.com/watch?v=GXEXoBGqUl8

Next in line:

292  Economy / Gambling / Re: ➫ ➬ ➫ ➬ LUCKYB.IT ★ +8.2k BTC wagered ★ the best onchain game on: September 15, 2014, 11:01:23 PM
LuckyBit - Tune of the Day

Quote from: LuckyBitSupport
Propose a tune here and it'll become the LuckyBit's 'Tune of the Day'!
The tune of the day will always be announced in the message box of http://luckyb.it
(The message box is in the upper left corner of the main site.)

Note that hate speech/abusive/racist/sexist songs will be ignored!

_chance_, your tune is set! https://www.youtube.com/watch?v=wvOw6m-WTlY

Next in line:
293  Economy / Gambling / Re: ➫ ➬ ➫ ➬ LUCKYB.IT ★ +8.2k BTC wagered ★ the best onchain game on: September 15, 2014, 09:40:15 PM
Off course we won't remove the on-chain version. LuckyBit is both the best and the most popular on-chain game, way ahead of satoshidice now.  Wink

If we add the off-chain version, we will have both.  Smiley

Great, luckybit is my favorite game, your ahead of satoshidice?

We should run some numbers to know more precisely, but both in terms of number of bets and overall amount, yes pretty sure.
And thanks for your support!
294  Economy / Services / Re: Looking for a community manager and marketer for LuckyBit! 1 BTC/month on: September 14, 2014, 07:35:07 PM
Hello everyone,

sorry we didn't have the time to answer everyone.
The position has been awarded.
We thank everybody that applied for theird interest.

See you on LuckyBit!  Smiley

So whoever this is, will their name show up white in chat if they are thhere?

Unlikely, the marketing person doesn't need to be a white boss in the chat... Wink
295  Economy / Gambling / Re: ➫ ➬ ➫ ➬ LUCKYB.IT ★ +8.2k BTC wagered ★ the best onchain game on: September 14, 2014, 07:33:12 PM
Off course we won't remove the on-chain version. LuckyBit is both the best and the most popular on-chain game, way ahead of satoshidice now.  Wink

If we add the off-chain version, we will have both.  Smiley
296  Economy / Services / Re: Looking for a community manager and marketer for LuckyBit! 1 BTC/month on: September 12, 2014, 05:02:38 PM
Hello everyone,

sorry we didn't have the time to answer everyone.
The position has been awarded.
We thank everybody that applied for theird interest.

See you on LuckyBit!  Smiley
297  Economy / Gambling / Re: dice.ninja - Now with Plinko! on: September 12, 2014, 04:39:01 PM
Luckybit's awesome! I play there regularly and really enjoy it. I'll get in touch with them as soon as I get a second, should've sooner, but I hope they do feel flattered.

We do think quite highly of the luckyb.it model we've been calling plinko at dice.ninja Smiley

We are indeed flattered! (and you're right, LuckyBit is awesome Wink)
Your plinko would be even better if it were an original plinko and not a carbon copy of LuckyBit.
So we encourage you to change it. Smiley
298  Economy / Gambling / Re: ➫ ➬ ➫ ➬ LUCKYB.IT ★ +7.5k BTC wagered ★ the best onchain game on: September 12, 2014, 04:38:08 PM
Bye the way dice.ninja is "borrowing" your idea for the plinko game, even has the same drop rewards.

Thanks for letting us know.

We're of course flattered that they copied us, but we're a bit saddened by the fact that it's a
completely unoriginal exact copy.  Undecided
299  Economy / Gambling / Re: LuckyBit - putting suspense back into gambling on: September 12, 2014, 12:46:02 PM
LuckyBit - Tune of the Day

Quote from: LuckyBitSupport
Propose a tune here and it'll become the LuckyBit's 'Tune of the Day'!
The tune of the day will always be announced in the message box of http://luckyb.it
(The message box is in the upper left corner of the main site.)

Note that hate speech/abusive/racist/sexist songs will be ignored!

BRE, your tune is set! http://www.youtube.com/watch?v=HKLnmMacEB4

Next in line:

300  Economy / Gambling / Re: ➫ ➬ ➫ ➬ LUCKYB.IT ★ +7.5k BTC wagered ★ the best onchain game on: September 11, 2014, 02:33:57 PM
...

...

... and everybody loves each other again.  Cheesy

As the chatbot once famously said (or was it more than once?): Peace!
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!