Bitcoin Forum
June 18, 2024, 07:04:09 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 [277] 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 »
  Print  
Author Topic: ➫ ➬ ➫ ➬ LUCKYB.IT Classic ★★★ the oldest Bitcoin on-chain game ★★★  (Read 414901 times)
DeathAngel
Legendary
*
Offline Offline

Activity: 3150
Merit: 1598


#1 VIP Crypto Casino


View Profile
February 03, 2016, 12:26:55 PM
 #5521




 Shocked Shocked Shocked Shocked Shocked Shocked Shocked Shocked Shocked

Nice man!

LuckyBit are awesome for stuff like that, they're so generous. It's a great way to attract new players too. Great customer liaisons.

.
.BITCASINO.. 
.
#1 VIP CRYPTO CASINO

▄██████████████▄
█▄████████████▄▀▄▄▄
█████████████████▄▄▄
█████▄▄▄▄▄▄██████████████▄
███████████████████████████████
████▀█████████████▄▄██████████
██████▀██████████████████████
████████████████▀██████▌████
███████████████▀▀▄█▄▀▀█████▀
███████████████████▀▀█████▀
 ▀▀▀▀▀▀▀██████████████
          ▀▀▀████████
                ▀▀▀███

.
......PLAY......
dinda22
Legendary
*
Offline Offline

Activity: 1232
Merit: 1000


View Profile
February 03, 2016, 12:53:57 PM
 #5522




 Shocked Shocked Shocked Shocked Shocked Shocked Shocked Shocked Shocked
Was there any small happy hour or something lol, i've only seen big amount like that given only in happy hour.

No Happy Hour but Turbo Lotto, sometimes bot going nuts with send big prizes on ordinary day.
 

for Turbo Lotto no specified time? a great prize as happy hours. but Turbo Lotto seems to depend on the wagered. right?
BRE
Legendary
*
Offline Offline

Activity: 1218
Merit: 1014


Lucky.lat | Marketing Solutions & Implementations


View Profile WWW
February 04, 2016, 03:27:56 AM
 #5523

for Turbo Lotto no specified time? a great prize as happy hours. but Turbo Lotto seems to depend on the wagered. right?
Turbo Lotto always comes in a random time.Every ranks ( shrimp, big fish, shark, whale, godzilla etc ) can get Turbo lotto but the prizes will be different for each rank.


Lucky.lat | Marketing Solutions & Implementations

https://lucky.lat/

Contact Us!
sales@lucky.lat
BRE
Legendary
*
Offline Offline

Activity: 1218
Merit: 1014


Lucky.lat | Marketing Solutions & Implementations


View Profile WWW
February 05, 2016, 02:15:12 AM
Last edit: February 05, 2016, 03:18:11 AM by BRE
 #5524


Lucky.lat | Marketing Solutions & Implementations

https://lucky.lat/

Contact Us!
sales@lucky.lat
Rmcdermott927
Legendary
*
Offline Offline

Activity: 2254
Merit: 1140


View Profile
February 05, 2016, 05:09:31 AM
Last edit: February 05, 2016, 06:27:39 AM by Rmcdermott927
 #5525

Presenting the 'Leave it to Fate' bot.

Fill in the config with your GUID, and Blockchain.info password.

Fill in a min bet for each color.   Run with Cron or through the browser.   A bet between your minimum and max will be placed on a random color.

Enjoy.

Code:
<?php
// Start Config
 
$blueMin 0.005
$blueMax 0.01;
$greenMin 0.003;
$greenMax 0.005;
$yellowMin 0.0025;
$yellowMax 0.004;
$redMin 0.002;
$redMax 0.0025;
$promoMin 0.002;
$promoMax 0.0025;
$guid 'YOURGUIDHERE';
$password urlencode('YOURBLOCKCHAINPASSHERE');
 
//endConfig
 
 
$blueAmount rand(($blueMin 100000000),($blueMax 100000000)); //convert user values to satoshis
$greenAmount rand(($greenMin 100000000),($greenMax 100000000));
$yellowAmount rand(($yellowMin 100000000),($yellowMax 100000000));
$redAmount rand(($redMin 100000000),($redMax 100000000));
$promoAmount rand(($promoMin 100000000),($promoMax 100000000));
$blueAddress '1LuckyB5VGzdZLZSBZvw8DR17iiFCpST7L';
$greenAddress '1LuckyG4tMMZf64j6ea7JhCz7sDpk6vdcS';
$yellowAddress '1LuckyY9fRzcJre7aou7ZhWVXktxjjBb9S';
$redAddress '1LuckyR1fFHEsXYyx5QK4UFzv3PEAepPMK';
$promoAddress '1LuckyP83urTUEJE9YEaVG2ov3EDz3TgQw';
 
 
 
function 
send_to_one ($colorAddress$amount$guid$password)  {
    
$apiBase 'https://blockchain.info/es/merchant/';
    
$url $apiBase $guid '/payment?password=' .
    
$password '&to=' $colorAddress '&amount=' $amount;
    echo 
$url;
 
    
$ch curl_init($url);
    
curl_setopt($chCURLOPT_RETURNTRANSFER1);
    
curl_setopt($chCURLOPT_URL$url);    // get the file
    
$response curl_exec($ch); // execute curl request
    
curl_close($ch);
    echo 
$response;
    echo 
'</br>' $amount ' sent to ' $colorAddress '</br>';
 
}
 
 
 
 
$singleColor rand(0,4);
switch (
$singleColor) {
    case 
:
    
send_to_one($blueAddress$blueAmount$guid$password);
    break;             
    case 
1:
    
send_to_one($greenAddress$greenAmount$guid$password);
    break;
    case 
2:
    
send_to_one($yellowAddress$yellowAmount$guid$password);
    break;
    case 
3:
    
send_to_one($redAddress$redAmount$guid$password);
    case 
4:
    
send_to_one($promoAddress$promoAmount$guid$password);
    break;
 
}  
 
 
 
 
 
?>


madonnino
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


I ❤ www.LuckyB.it!


View Profile
February 05, 2016, 08:15:42 AM
 #5526


chat lotto is going crazyyy! 0.17 is definitely a very good amount, even for a "shark" roller, congratulation Luckybit community
Betwrong
Legendary
*
Offline Offline

Activity: 3318
Merit: 2183


I stand with Ukraine.


View Profile
February 05, 2016, 11:03:21 AM
 #5527


chat lotto is going crazyyy! 0.17 is definitely a very good amount, even for a "shark" roller, congratulation Luckybit community

This is amazing! But the guy who received the tip is a whale so maybe he lost much more before and this was a consolation prize? Or things like this happen in Luckybit chat regularly? If it is so I should register there immediately.  Smiley

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
jmenake
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
February 05, 2016, 08:11:20 PM
 #5528

i play money here , i want to enjoy not to be fucked by a kid with powers as admin please fix this problem
admin name : Stingleword .

http://prntscr.com/9zhbp4   http://prntscr.com/9zhc2x http://prntscr.com/9zhbtt  http://prntscr.com/9zhc9o
yahoo62278
Legendary
*
Online Online

Activity: 3640
Merit: 4444



View Profile
February 05, 2016, 08:21:50 PM
 #5529

i play money here , i want to enjoy not to be fucked by a kid with powers as admin please fix this problem
admin name : Stingleword .

http://prntscr.com/9zhbp4   http://prntscr.com/9zhc2x http://prntscr.com/9zhbtt  http://prntscr.com/9zhc9o

Stingle can be a dick thats not old news but hes being that way in order to protect the site. He has done nothing wrong here. Hes just stopping the negativity before it gets worse. He gave multiple warnings and you still argued. I think he did a fine job and you just needed to chill and cool off

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
jmenake
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
February 05, 2016, 08:26:30 PM
 #5530

yahoo let's remind what you think about me , i can't accept your opinion , because if we search back in this thread you were swearing me , so thanks buddy but this opinion can't be considered
jmenake
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
February 05, 2016, 08:32:45 PM
 #5531

yesterday was banned ok , i sweared , im talking about present wich is today , was banned for ? because this kid is moderator and think he has super powers ? this will not end good for him will , he didn't think i will report him , i sent even email to the support , will show him that superpowers bring responsability not banning everyone as you wish
BoXXoB
Legendary
*
Offline Offline

Activity: 2018
Merit: 1108



View Profile
February 05, 2016, 09:14:24 PM
 #5532

yesterday was banned ok , i sweared , im talking about present wich is today , was banned for ? because this kid is moderator and think he has super powers ? this will not end good for him will , he didn't think i will report him , i sent even email to the support , will show him that superpowers bring responsability not banning everyone as you wish

For the record stingleword didn't actually do anything that wasn't justified. He told you to stop, you didn't. Period. And calling him a "kid" doesn't help at all... Nor did evading a ban

.
████████████████████████████████████████████████████████
███████████████████████████████████████████████████████
████████████████████████████████████████████████████████
██████████████████████████████████████████████████████
██████████████████████████████████████████████████████
████████████████████████████████████████████████████████
████████████████████████████████████████████████████████
████████████████████████████████████████████████████████
.
⚫︎  ⚫︎  ⚫︎  ⚫︎  ⚫︎
⚫︎  ⚫︎  ⚫︎  ⚫︎  ⚫︎
⚫︎  ⚫︎  ⚫︎  ⚫︎  ⚫︎
.
.
████████████
████████████████████
████████████████████
██
██████████████████████
██
██████████████████████
██
██████████████████████
██
██████████████████████
████████████████████████
██
██████████████████████
██
██████████████████
████████████████████
████████████
|
 UNIQUE 
GAMES
|
 NO 
KYC
|
 WITHDRAW 
IN MINUTES
|
░█▀███████
█▀▀█░░░█████████▀▀█
██░█▄█████████
████████▀█▀█▀██
███████▀▀░▀██
▀▄█████▀█░█▀▄▀
████████
██████
████
████
████
▄▄████████▄▄
██████████████
jmenake
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
February 05, 2016, 09:15:43 PM
 #5533

people don't change subject im warning me for what ? HE LIED as an admin telling me i swear stuff and site when i didn't stop kissing him in the ASS won't help him anyway im very sure admin will take action in this case
BRE
Legendary
*
Offline Offline

Activity: 1218
Merit: 1014


Lucky.lat | Marketing Solutions & Implementations


View Profile WWW
February 07, 2016, 12:13:39 PM
Last edit: February 07, 2016, 01:39:43 PM by BRE
 #5534




Congratulations To 1Mit



Congratulations To Turning

Lucky.lat | Marketing Solutions & Implementations

https://lucky.lat/

Contact Us!
sales@lucky.lat
lolxxxx
Legendary
*
Offline Offline

Activity: 2184
Merit: 1032


View Profile WWW
February 07, 2016, 01:56:46 PM
 #5535




Congratulations To 1Mit



Congratulations To Turning

well a great chat-lotto Smiley decent amount for a whale who wagered 10+ btc on lb Smiley
here's my biggest lotto so far.
Or this?



Grin
BRE
Legendary
*
Offline Offline

Activity: 1218
Merit: 1014


Lucky.lat | Marketing Solutions & Implementations


View Profile WWW
February 08, 2016, 03:37:01 AM
 #5536




Congratulations To Stephanie226 ( Max Blue )

Lucky.lat | Marketing Solutions & Implementations

https://lucky.lat/

Contact Us!
sales@lucky.lat
janggernaut
Legendary
*
Offline Offline

Activity: 2366
Merit: 1130


View Profile
February 08, 2016, 03:46:56 AM
 #5537




Congratulations To Stephanie226 ( Max Blue )

wtf, if he was bet on red or promo line, he would won a lot, x999 or x9999
amacar2
Legendary
*
Offline Offline

Activity: 1120
Merit: 1008

CryptoTalk.Org - Get Paid for every Post!


View Profile
February 08, 2016, 04:02:47 AM
 #5538




Congratulations To Stephanie226 ( Max Blue )

wtf, if he was bet on red or promo line, he would won a lot, x999 or x9999
But its better to take lower risk and win small rather than lossing all you have dreaming big win which often happens in plinko. Wink

 
                                . ██████████.
                              .████████████████.
                           .██████████████████████.
                        -█████████████████████████████
                     .██████████████████████████████████.
                  -█████████████████████████████████████████
               -███████████████████████████████████████████████
           .-█████████████████████████████████████████████████████.
        .████████████████████████████████████████████████████████████
       .██████████████████████████████████████████████████████████████.
       .██████████████████████████████████████████████████████████████.
       ..████████████████████████████████████████████████████████████..
       .   .██████████████████████████████████████████████████████.
       .      .████████████████████████████████████████████████.

       .       .██████████████████████████████████████████████
       .    ██████████████████████████████████████████████████████
       .█████████████████████████████████████████████████████████████.
        .███████████████████████████████████████████████████████████
           .█████████████████████████████████████████████████████
              .████████████████████████████████████████████████
                   ████████████████████████████████████████
                      ██████████████████████████████████
                          ██████████████████████████
                             ████████████████████
                               ████████████████
                                   █████████
.YoBit AirDrop $.|.Get 700 YoDollars for Free!.🏆
BRE
Legendary
*
Offline Offline

Activity: 1218
Merit: 1014


Lucky.lat | Marketing Solutions & Implementations


View Profile WWW
February 08, 2016, 08:54:59 AM
Last edit: February 08, 2016, 10:29:14 AM by BRE
 #5539




Congratulations To Nero



And he hit x130 again !

Lucky.lat | Marketing Solutions & Implementations

https://lucky.lat/

Contact Us!
sales@lucky.lat
madonnino
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


I ❤ www.LuckyB.it!


View Profile
February 08, 2016, 08:55:39 AM
 #5540




Congratulations To Nero

Boom, congratulation Nero, this is a very nice hit! keep it up!
Pages: « 1 ... 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 [277] 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!