Bitcoin Forum
June 23, 2024, 08:41:06 AM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
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 37 38 39 40 41 42 43 44 45 [46] 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 »
  Print  
Author Topic: Seuntjie' Dice bot programmers mode discussion.  (Read 125167 times)
ferryantoine
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
November 09, 2017, 06:57:49 AM
 #901

Hi There,

wanted to ask something. Is there anyway that we can track rolled results?

what I mean is for example lets say each circle of x bets we track the rolled result in we track the circle of bets based on rolled numbers: for example lets say if in each 10 bets 3 times rolled result was less than number 30 then do that etc.

Thank you.
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
November 09, 2017, 10:20:39 AM
 #902

You could probably set up an "array" and a counter to keep track of the last "x" bets... but the number would need to be kept to a "reasonable" level to prevent the memory usage getting too high and or the bot starting to slow down while it manipulates the array...

I'm not sure I understand what it is that you are wanting to do with these 10 results tho? Huh

Code:
...
betArray = {}
counter = 1 -- NOTE: LUA arrays indexed from 1 ;)
...
function dobet()
...
  betArray[counter] = lastbet.Roll
  counter = counter + 1
  ...
  if counter == 11 then
    -- do something based on the last 10 rolls ???
    -- count them up or something and then set chance according to results?
    counter = 1 -- reset counter
  end
...
end

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
ferryantoine
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
November 09, 2017, 01:38:12 PM
Last edit: November 09, 2017, 02:02:35 PM by ferryantoine
 #903

Wow,

Thank you for your Help HCP, I will give it a try based on your codes.
btw that number 10 is just an imaginary number that I assume as a set of bets. actually I have a strategy in my mind that is kind of complicated, and its like if you got base amount profit it will be retested and it might gives profit based on how many wins or losses you have in a circle of bets, like lets say 10 bets.
the program should be defined to behave in a different way based on current bet is which bet out of this set of bets. and if y lossess/wins in row happens do this.... if its LWLWLW do that....initial chance could be x1.6 and also it changes the chance depending on if the last bet was win or loss or if it was y lossess/wins in row.
actually its all like brainstorming yet but Im trying to clean up my mind and work on it. its kind of fun for me.
what I meant to do with the result was for example if in that circle of 10 bets, the dice rolled to below number 30, 3 times in total (for example) then do....
cheers and thank you again that you share all your knowledge.
sree6020
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
November 16, 2017, 03:30:48 PM
 #904

Today when I try to use Dice bot on Bitsler, I get an error that "parameter missing". It was working fine before .But today this error comes unexpectedly. There is no change in scripts or version of Dicebot which I was using before. Can someone help me with this problem.
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
November 16, 2017, 11:07:54 PM
 #905

In all likelihood... Bitsler have probably changed something on their end... ie. updated the API either without giving Seuntjie a headsup, or the opportunity to update the bot... or they did, and Seuntjie hasn't updated due to being super busy...

If the bot is working on other sites, and it is just Bitsler that isn't working, then you'll have to hold tight until Seuntjie has a chance to investigate and/or talk to the Bitsler Devs.

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
November 17, 2017, 02:07:40 AM
Last edit: November 17, 2017, 05:19:33 AM by houseworx
 #906

hey, anyone are much good in math and have good and easy to use formula for basebet calculation with editing "winrate"(increase number/overall gain) addition?!



i want something like that - i will give sample:

i bet 10$ 14x times in row on (X) percentage to win and all are losed, now i want calculate basebet accordingly that i have profit -140$ and now i will bet on another chance to win(Y) to get back to be break even to get zero, or till i need to get some part (1/2 or 1/5) of losed profit back.


so what i want!

formula what component:

-increase number = 1(then gains are zero break even if in forumula will be included 0.01 decrease house edge) and if i will make this number 1.01 then it will gain little profit, and if i make 1.1 then bigger, etc.

-in formula are used session profit


something like this

base = (profit) / (100 / chance / 1.01 - 1) * 1(increase number) + startbasebet





████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
sree6020
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
November 17, 2017, 04:23:58 AM
 #907

In all likelihood... Bitsler have probably changed something on their end... ie. updated the API either without giving Seuntjie a headsup, or the opportunity to update the bot... or they did, and Seuntjie hasn't updated due to being super busy...

If the bot is working on other sites, and it is just Bitsler that isn't working, then you'll have to hold tight until Seuntjie has a chance to investigate and/or talk to the Bitsler Devs.


Thanks for replying HCP.  Anyway my problem is solved as it was due to a small settings change that I made on bitsler site.I talked to Bitsler support and they helped me sort it out.
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
November 20, 2017, 06:03:20 PM
Last edit: November 20, 2017, 06:21:28 PM by houseworx
 #908

I want to know, how is possible to make, every next bet after fixed "currentstreak" to change adjusted chances who will dereases by x.xxxx chances from "pervious bet chances" !?

something like this, but this version has problems with configuration for me, because the calculations before all was made.

if currentstreak>=-5 and currentstreak<=0 then
base = x
chance =  X - (currentstreak * -4.00)

elseif currentstreak<=-6 and currentstreak>=-10 then
base = x
chance = X - (currentstreak * -2.00)

elseif currentstreak<=-11 and currentstreak>=-20 then
base  = x
chance = X - (currentstreak * -1.00)

elseif currentstreak<=-21 and currentstreak>=-1000 then
base = x
chance = X
end

I hope some1 will understand what i mean...

sample with words:

first 5 bets bet on 90 percentage and every bet, chances need to be decreased by -1.00% like 90, 89, 88, 87, 86

after that next 5 bets need to be decreased from last percentage buy 0.5% 86, 65.5, 85, 84.5, 84, 83.5, 83

and go on
(its only sample)



████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
November 22, 2017, 01:15:09 PM
 #909

hey, anyone are much good in math and have good and easy to use formula for basebet calculation with editing "winrate"(increase number/overall gain) addition?!



i want something like that - i will give sample:

i bet 10$ 14x times in row on (X) percentage to win and all are losed, now i want calculate basebet accordingly that i have profit -140$ and now i will bet on another chance to win(Y) to get back to be break even to get zero, or till i need to get some part (1/2 or 1/5) of losed profit back.


so what i want!

formula what component:

-increase number = 1(then gains are zero break even if in forumula will be included 0.01 decrease house edge) and if i will make this number 1.01 then it will gain little profit, and if i make 1.1 then bigger, etc.

-in formula are used session profit


something like this

base = (profit) / (100 / chance / 1.01 - 1) * 1(increase number) + startbasebet








I want to know, how is possible to make, every next bet after fixed "currentstreak" to change adjusted chances who will dereases by x.xxxx chances from "pervious bet chances" !?

something like this, but this version has problems with configuration for me, because the calculations before all was made.

if currentstreak>=-5 and currentstreak<=0 then
base = x
chance =  X - (currentstreak * -4.00)

elseif currentstreak<=-6 and currentstreak>=-10 then
base = x
chance = X - (currentstreak * -2.00)

elseif currentstreak<=-11 and currentstreak>=-20 then
base  = x
chance = X - (currentstreak * -1.00)

elseif currentstreak<=-21 and currentstreak>=-1000 then
base = x
chance = X
end

I hope some1 will understand what i mean...

sample with words:

first 5 bets bet on 90 percentage and every bet, chances need to be decreased by -1.00% like 90, 89, 88, 87, 86

after that next 5 bets need to be decreased from last percentage buy 0.5% 86, 65.5, 85, 84.5, 84, 83.5, 83

and go on
(its only sample)




████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
goodbc
Member
**
Offline Offline

Activity: 105
Merit: 11



View Profile
November 26, 2017, 11:13:34 PM
 #910

Is anyone here expert in bot programming mode and can implement my custom strategy on request?

Check your IQ! Send any amount to this address:
1GoodBTCiGyd1J1LkDhCThfTHG8n9WJnNn
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
November 26, 2017, 11:57:30 PM
 #911

Is anyone here expert in bot programming mode and can implement my custom strategy on request?
There are several "experts" around here Wink Myself and Chilly2k and one or two others...

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
mrmanir
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
November 27, 2017, 10:38:35 AM
 #912

Hi everyone. Is anybuddy here to write this program in dicebot?

roll 1:
bet 1sat :
if win > place 1 sat
if loose > place 1 sat

in streak of 3 loose:
(roll 4)
place 100 sat
if win > place 1
if loose > place 200

(roll 5)
if win > place 1
if loose > place 400

.
.
.
.

Actually I want to use martiangle method after 3 loose in a raw with a bot.
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
November 27, 2017, 11:55:58 PM
 #913

Hi everyone. Is anybuddy here to write this program in dicebot?

roll 1:
bet 1sat :
if win > place 1 sat
if loose > place 1 sat

in streak of 3 loose:
(roll 4)
place 100 sat
if win > place 1
if loose > place 200

(roll 5)
if win > place 1
if loose > place 400

.
.
.
.

Actually I want to use martiangle method after 3 loose in a raw with a bot.


hello, if im understnad right then try this -

chance = 49.50
base = 0.00000001
nextbet = base
enablezz = true
enablesrc = true
losecount = 0
betcount = 0
function dobet()
   if win then
      nextbet = base
         losecount = 0
         betcount += 1
   else
         losecount += 1
         betcount += 1
      nextbet = base
   end
   if (losecount > 2) then
      nextbet = 0.00000100
   end
   if (losecount > 3) then
     nextbet = previousbet*2
   end
   end
 end
end

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
stormbreaker1
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
November 28, 2017, 03:29:21 AM
 #914

tnx good script i go to try
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
November 28, 2017, 05:32:18 AM
 #915

tnx good script i go to try

it's only what OP asked...

i don't recommend that kind of stuff. with that kind of stuff you will lose same all bankroll maybe 10% less frequent than - simple double up every bet on 2x payout... Wink

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
Nicoletta
Newbie
*
Offline Offline

Activity: 31
Merit: 0


View Profile
November 29, 2017, 09:53:22 PM
 #916

Hi
I am looking for a script that inside normal martingale will monitor for for the numbers and bet if they will show twice in the row?
So for example we do have normal 50% strategy with 100% on loose but if there will be 2 in the row below 1% it will bet 10% of balance below 1% and if it is above 99% it will bet 10% of balance above 99%?
Is the idea explained correctly?
B4RF
Hero Member
*****
Offline Offline

Activity: 813
Merit: 507


View Profile
November 30, 2017, 07:22:50 AM
 #917

Hi
I am looking for a script that inside normal martingale will monitor for for the numbers and bet if they will show twice in the row?
So for example we do have normal 50% strategy with 100% on loose but if there will be 2 in the row below 1% it will bet 10% of balance below 1% and if it is above 99% it will bet 10% of balance above 99%?
Is the idea explained correctly?


Doesnt seem that hard to accomplish but just for your interest, waiting for these kind of patterns doesnt change your odds.

It's the same as prerolling. You will only bet after your pattern occured which makes you bet less often and will only postpone the possible loss.


▄▄▄████████▄▄▄
▄██████████████████▄
▄██████████████████████▄
██████████████████████████
████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
████████████████████████████
██████████████████████████
▀██████████████████████▀
▀██████████████████▀
▀▀▀████████▀▀▀
   ███████
██████████
██████████
██████████
██████████
██████████
██████████
██████████
██████████
██████████
██████████
██████████
███████
BTC  ◉PLAY  ◉XMR  ◉DOGE  ◉BCH  ◉STRAT  ◉ETH  ◉GAS  ◉LTC  ◉DASH  ◉PPC
     ▄▄██████████████▄▄
  ▄██████████████████████▄        █████
▄██████████████████████████▄      █████
████ ▄▄▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄▄ ████     ▄██▀
████ █████ ██████ █████ ████    ▄██▀
████ █████ ██████ █████ ████    ██▀
████ █████ ██████ █████ ████    ██
████ ▀▀▀▀▀ ▀▀▀▀▀▀ ▀▀▀▀▀ ████ ▄██████▄
████████████████████████████ ████████
███████▀            ▀███████ ▀██████▀
█████▀                ▀█████
▀██████████████████████████▀
  ▀▀████████████████████▀▀ 
✔️DICE           
✔️BLACKJACK
✔️PLINKO
✔️VIDEO POKER
✔️ROULETTE     
✔️LOTTO
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
November 30, 2017, 08:20:28 AM
Last edit: November 30, 2017, 08:31:02 AM by houseworx
 #918

Hi
I am looking for a script that inside normal martingale will monitor for for the numbers and bet if they will show twice in the row?
So for example we do have normal 50% strategy with 100% on loose but if there will be 2 in the row below 1% it will bet 10% of balance below 1% and if it is above 99% it will bet 10% of balance above 99%?
Is the idea explained correctly?


Doesnt seem that hard to accomplish but just for your interest, waiting for these kind of patterns doesnt change your odds.

It's the same as prerolling. You will only bet after your pattern occured which makes you bet less often and will only postpone the possible loss.

please don't write your pessimistic stuff all the time.



you all people are angry because losed alot of money in dice, and now are saying to all other peoples, that there is no strategy to beat it(because you don't have enought knowledge to figure out it), that is why you all are doing it?! Cheesy Cheesy Cheesy


otherwise i dont understand all you pesimists.

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
B4RF
Hero Member
*****
Offline Offline

Activity: 813
Merit: 507


View Profile
November 30, 2017, 02:16:02 PM
 #919

Hi
I am looking for a script that inside normal martingale will monitor for for the numbers and bet if they will show twice in the row?
So for example we do have normal 50% strategy with 100% on loose but if there will be 2 in the row below 1% it will bet 10% of balance below 1% and if it is above 99% it will bet 10% of balance above 99%?
Is the idea explained correctly?


Doesnt seem that hard to accomplish but just for your interest, waiting for these kind of patterns doesnt change your odds.

It's the same as prerolling. You will only bet after your pattern occured which makes you bet less often and will only postpone the possible loss.

please don't write your pessimistic stuff all the time.



you all people are angry because losed alot of money in dice, and now are saying to all other peoples, that there is no strategy to beat it(because you don't have enought knowledge to figure out it), that is why you all are doing it?! Cheesy Cheesy Cheesy


otherwise i dont understand all you pesimists.

Cant remember saying something similar here but ok. I just tried to prevent someone from thinking that these kind of bets change something (I am fine with it as long as it is for fun purposes).

I think I am currently in a plus on primedice Smiley but you cant possibly think that there is a winning strategy which will gain you profit over an inifinte amount of time, are you?


▄▄▄████████▄▄▄
▄██████████████████▄
▄██████████████████████▄
██████████████████████████
████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
████████████████████████████
██████████████████████████
▀██████████████████████▀
▀██████████████████▀
▀▀▀████████▀▀▀
   ███████
██████████
██████████
██████████
██████████
██████████
██████████
██████████
██████████
██████████
██████████
██████████
███████
BTC  ◉PLAY  ◉XMR  ◉DOGE  ◉BCH  ◉STRAT  ◉ETH  ◉GAS  ◉LTC  ◉DASH  ◉PPC
     ▄▄██████████████▄▄
  ▄██████████████████████▄        █████
▄██████████████████████████▄      █████
████ ▄▄▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄▄ ████     ▄██▀
████ █████ ██████ █████ ████    ▄██▀
████ █████ ██████ █████ ████    ██▀
████ █████ ██████ █████ ████    ██
████ ▀▀▀▀▀ ▀▀▀▀▀▀ ▀▀▀▀▀ ████ ▄██████▄
████████████████████████████ ████████
███████▀            ▀███████ ▀██████▀
█████▀                ▀█████
▀██████████████████████████▀
  ▀▀████████████████████▀▀ 
✔️DICE           
✔️BLACKJACK
✔️PLINKO
✔️VIDEO POKER
✔️ROULETTE     
✔️LOTTO
Nicoletta
Newbie
*
Offline Offline

Activity: 31
Merit: 0


View Profile
November 30, 2017, 04:42:18 PM
 #920

Yes i know it all but i think it is worth to try?
So how this script could look like?
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 37 38 39 40 41 42 43 44 45 [46] 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 »
  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!