Bitcoin Forum
May 25, 2024, 08:39:06 PM *
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 37 38 39 40 41 »
121  Economy / Games and rounds / Re: [Primedice.com] The Big Multiplier Competition II ! - Win up to 0.1 BTC! on: July 26, 2017, 08:02:18 PM
Username : BTChris

Bet ID : 18,141,453,080
122  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: July 22, 2017, 05:42:23 PM


Can anyone help me on HOW TO ADD A Stop on win mechanism to this script.    Thanks in advance for the help.

Use this code and simply type stopOnWin=true into the console if you wanne stop.

Code:
-- UNTESTED!!

-- Set these 3 values to match the site you're using and what you want your baseBet to be

houseEdge = 0.8 -- ie HE = 0.8% = 0.8, HE = 1.1% = 1.1
maxPayout = 9920 -- set this to site max! 9920x = Crypto-Games.net
basebet = 0.00001000

---------------------- Don't Edit below here ;) --------------------------

basePayout = 1.1 -- start at 1.1x payout
firstLossPayout = 2
currPayout = basePayout

nextbet = basebet
chance = (100 - houseEdge) / currPayout
bethigh = true

stopOnWin = false

function dobet()
 
  if win then
    --reset Payout to 1.1x
    currPayout = basePayout

    if stopOnWin then
      stopOnWin = false
      stop()
    end
  else
    if currPayout == basePayout then
      -- first loss
      currPayout = firstLossPayout
    else
      currPayout = currPayout + 1
    end
  end

  if currPayout > maxPayout then
    stop()
    nextbet = 0
  else
    chance = (100 - houseEdge) / currPayout
  end

end
123  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: July 21, 2017, 10:20:28 PM
Hi, Seuntjie! Where do we submit feature requests? I would like for there to be a notification sound when the dicebot stops betting. I run it in the background, and I never know when it's running or not. A chime or e-mail alert would be nice. For example, I'll tell the bot to stop betting after 300 bets or 5 losses in a row. Later, when I check it 30 minutes later, I see that the 5 losses had occurred 5 minutes into betting. It would be nice to know when it's running or not. Another option would be to have two distinct chimes for win/loss. What do you think?

P.S. Your discord invite in your signature is expired.

There are already two notification sounds in programmers mode:

alarm() and ching()

So if you dont already use the programmers mode get an equivalent script for your strategy and add one of those.
124  Economy / Games and rounds / Re: [Primedice.com] Giveaway for Everyone! on: July 16, 2017, 12:10:43 PM
Username: BTChris
125  Economy / Gambling / Re: ★Crypto-Games.net ★ 9 coins ★ 7 games ★ Since 2014 ★ New - Litecoin lottery! on: July 13, 2017, 06:18:11 AM
Has the veteran status been removed?

My tag is gone and I havent even got a notification mail.
There are still plenty of veterans, from time to time we check who fit among them and who's not. Veteran tag is not permanent. But thanks for suggestion, next time I'll notify users about tag change.
Where do you see this veteran tag? Is it something in chat or what?
Are there any benefits to having one?

I've checked the FAQ and found nothing.

The only real benefit I know is that you dont have any divest fees on your investments.
126  Economy / Gambling / Re: ★Crypto-Games.net ★ 9 coins ★ 7 games ★ Since 2014 ★ New - Litecoin lottery! on: July 11, 2017, 04:25:27 PM
Has the veteran status been removed?

My tag is gone and I havent even got a notification mail.
127  Economy / Services / Re: ✪Signature Campaign✪[vDice.io]➽Ethereum Blockchain Gambling [5th Mnth 8 Sposts] on: July 11, 2017, 10:49:54 AM
Username Name: B4RF
Post count: 686
Rank: Hero Member
Bitcoin address: 1B4RF3h4nnj2yTAnc2e8hAkaieb65LAzBF
Profile Link: https://bitcointalk.org/index.php?action=profile;u=323373
Did you joined our avatar: YES
128  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: July 10, 2017, 07:00:31 PM
Scripts on win do not return to start chance1 new

Code:
chance1=47
chance2=49.5         
chance3=52.95         
chance4=95           
chance5=66.58
chance6=95

prebet = 0.001

m1=2
m2=2.5
m3=20.5
m4=2.5
m5=20.5
target=11000

nextbet = prebet
losecount = 0
betcount = 0
bethigh=false
wincount=0
highloss=0
totalloss=0
total=0
avehit=0
counter=0



function dobet()
 if win then
        nextbet = prebet
        wincount+=1
        total+=1
        totalloss+=losecount
        avehit=totalloss/total
        losecount = 0
        betcount += 1

        if profit>target then
stop()
print("TARGET REACHED!")
        end

   else

         losecount += 1
         betcount += 1
         nextbet = prebet

   end

if losecount > highloss then
highloss = losecount
end

   if (losecount > 0) then
chance = chance1
      nextbet = previousbet*m1
   end

   
   if (losecount > 1) then
chance = chance2
      nextbet = previousbet*m2

   end

   if (losecount > 2) then
chance = chance3
      nextbet = previousbet*m3
   end

 if (losecount > 3) then
chance = chance4
      nextbet = previousbet*m4

   end

 if (losecount > 4) then
chance = chance5
      nextbet = previousbet*m5

   end

 if (losecount > 5) then
chance = chance6
      nextbet = previousbet*m6

   end
    end
 end
end

You need to add 'chance = chance1' after 'if win then' otherwise the chance will not be changed on a win.

And btw you can remove two of the 'end' from the end of your script since there are no statements to close.
129  Economy / Games and rounds / Re: ►►► Crypto-Games.net | Free DOGE lottery tickets ◄◄◄ on: July 10, 2017, 06:46:50 PM
username: B4RF

Thanks
130  Economy / Services / Re: [OPEN] ChipMixer Signature Campaign | Accepting Sr. Member+ on: July 10, 2017, 12:08:45 PM
Username: B4RF
Post Count: 683
BTC Address: 1B4RF3h4nnj2yTAnc2e8hAkaieb65LAzBF

Will update signature after confirmation.
131  Economy / Games and rounds / Re: ★ Crypto-Games.net Challenge ★ 280 mBTC in Pot ★ | up to 10mBTC reward per Bet on: July 08, 2017, 12:24:05 PM
Dice
BetId   1,398,934,401
Roll   11.111

So close  Shocked

EDIT: nvm I just realised I didnt even made the min bet amount Cheesy
132  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AICOIN ICO:: Building Wealth Thru AI & the Power of the Blockchain on: July 08, 2017, 12:09:26 PM
Since I'm studying Mathematical Statistics myself, this project is something that I had in mind as well for the future. I'm surprised nobody beat me to the idea earlier (at least in public form).
There are some things that I would be doing differently (on top) of what your team is already doing, but those additions would be more complex than "just" reading market data and something for on-going development in the future. If interested I would be more than happy to talk about the details.


Applied for translation into German. Can guarantee a translation of the highest quality with no spelling or grammar errors (as often seen with other translations) since I'm an academic. Willing to provide proof if desired as long as it will be guaranteed that my identity won't be leaked.

Will also be investing once I sort out liquidity (hopefully pre-ICO).

I apllied for the german translation already two weeks ago in the corresponding thread but there has been no reaction whatsoever.

My translation offer on aicoin.io is still pending as well. Dont know if someone will update the status...

No offense, but if you pay as much attention to your translations as your post, I wouldn't personally want you translating my business correspondence.

Good luck to you anyways.

Dude I am simply typing fast without watching out for typos  Cheesy  and they didnt even ask for any reference.

And I wouldn't be mad if they would say I am not the one they are looking for but letting the translation offer stay in status pending for two weeks doesnt seem professional to me  Undecided and I already asked the same in the translation thread a week ago.
133  Economy / Gambling discussion / Re: Looking for partners on: July 08, 2017, 09:53:53 AM

I wish good morning to everyone,
my name is Joe and I am new member of this forum. I visited it frequenty in past but never bothered to open an account. I was also scammed in this section by some bettor but out from him I got good method to earn money without having to risk lot. It's never wise to trust anyone who hides majority of his method(I learned that the hard way) so I will be 100% clear about what I do.
My method of making money(which I got from the guy who scammed me) is going to tennis court and using the delay between umpire's pressingthe button(who won the point) and bookmaker reaction. In practice it works like this: I go to tournaments and when its important points, just after it I make a bet knowing the outcome. It is getting harder to do it everyday and on each tournament I see plenty people doing it, but it is still more than decent profit. Also I want to be clear about everything: it's not possible to make each bet, sometimes it's working whole day with really small profit but it's legal and it's profitable.
I seek 2 kind of partners:
1) Scouts: guys who can visit tournaments and inform me over call about crucial points. They get paid up to 1000e per day(when profitable)+I cover all their expenses

2) Investors: guys who have more than 10 000€ and are willing to invest it. Just to be clear, you don't pay me or anyone else that money, it's controlled by you all the time. With more investors I can cover more than 1 tournament at once which means gaining more profit.


Considering ammounts we are talking about, I just learned about it and didn't do it a lot. Guy who brought me into this has won over 15k in one day on some tournaments but that's really extreme and it takes lot of money for that profit What I learned in last 2 weeks from trying to do this is that minimum profit per 1 day is around 1000€ while my best day was 3000€.
I have revealed my "business" plan but if you try to do this by yourself, you won't be able. There are tricks how to place bets and where, tricks with which I am assured that I will have some benefit aswell.


So you are inviting us to invest in your plan which you got from a guy who scammed you the exact same way?

And although you are transparent about your business we wont be able to pull this off by ourselvs?

This seems fishy to me  Cheesy
134  Economy / Gambling / Re: Satoclock.com (Beta) - Bet Every Minute On Bitcoin Price - 0.001 BTC to 10 User on: July 08, 2017, 09:46:00 AM
Looks like a fun idea but you cant win anything right now since there is no playerbase.

And 0.001 BTC per bet is a bit much I think. Maybe you should make multiple betting slots with different amounts.
135  Economy / Gambling discussion / Re: hey guys im creating my first basic script and need some help on: July 08, 2017, 09:36:55 AM
hey guys im creating my first ever basic script (im new to this bare with me) and im trying to make it so if the bet amount reaches > 0.00000050 and you win it resets to base but if you still lose after its > 0.00000050 you keep multiplying by the multiplier, im using the basic martingale script and this is what i have so far (i think its completely wrong since its not working XD) any help would be appreciated thanks!

chance=24.75
multiplier=1.5
winmultiplier=0.78
betsize = nextbet
onwin=win
base=0.00000002
function dobet()

if (win) then
nextbet=previousbet*winmultiplier
if (betsize > 0.00000050) then
nextbet=base
else
nextbet=previousbet*multiplier
end
end
end

You never change the variable betsize so the if statement can never be fulfilled (simply use nextbet instead).

And what is your script supposed to do when you lose? Right now it keeps betting the same amount over and over until you hit a win.
136  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AICOIN ICO:: Building Wealth Thru AI & the Power of the Blockchain on: July 08, 2017, 09:05:50 AM
Since I'm studying Mathematical Statistics myself, this project is something that I had in mind as well for the future. I'm surprised nobody beat me to the idea earlier (at least in public form).
There are some things that I would be doing differently (on top) of what your team is already doing, but those additions would be more complex than "just" reading market data and something for on-going development in the future. If interested I would be more than happy to talk about the details.


Applied for translation into German. Can guarantee a translation of the highest quality with no spelling or grammar errors (as often seen with other translations) since I'm an academic. Willing to provide proof if desired as long as it will be guaranteed that my identity won't be leaked.

Will also be investing once I sort out liquidity (hopefully pre-ICO).

I apllied for the german translation already two weeks ago in the corresponding thread but there has been no reaction whatsoever.

My translation offer on aicoin.io is still pending as well. Dont know if someone will update the status...
137  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: July 07, 2017, 07:23:58 PM
want to ask for experienced gambler on 999dice using Seuntjie Dicebot
currently have 100k sats , im betting on 0.0000001 (the low balance for bet) with 33 chance to win and 1.75 multiplier on loss.
can i reach 1million sats safely with that settings? i know its verryyy slowly to reach and i think its possible.

There is no save way to earn in gambling  Cheesy  and especially not when you play on 999dice...I have seen many scam accusations about their site.
138  Economy / Services / Re: I want to earn Bitcoin. on: July 07, 2017, 09:19:34 AM
Invest some in dot before swap start 07.01.2018 and obsivion.Without invest go to airdrop.

What is dot? And what kind of investment is this?

Or is this some kind of ponzi program   Undecided
139  Economy / Services / Re: Selling Exclusive adspot on: July 07, 2017, 06:34:05 AM
I dont get it...does your site actually pay?

Well yes i do pay. .. You can check here: http://www.luckybitco.in/awarded-1-5

I have got three different errors already. Insufficient number of satoshi, SQL has gone away and some server connection error.

There are no reported error except that some users get "forbidden" message that is not solved yet.
Insufficient number of satoshi?How much you have in balance?Hello??Minimum withdraw is 20000 Satoshis. ..
SQL has gone away? That is fixed long time ago andnoone has told about that issue again.

And its pretty hard to know what is going on on the site because of all that flashing adds  Cheesy
If you are not informed yet then i will let you know that these "flashing adds" are the ones that pays to user  Wink


Also i do not think this is the best place to post such a questions. ..This place is for advertisers. ..

Ok I thought when claiming I would get redirected to the advertisers homepage thats why I got confused by the adds

And about the errors, can you redirect me to a thread about your site for users? Couldnt find one.
140  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: July 07, 2017, 06:23:12 AM
hello, i need help adding a command to the following script, its works in a modified martingale style, i would simply like you guys to help me add a command to it to make it stop when the multiplier reaches say x8


Code:
chance = 49.95
base = 0.00000001
count = 0
tot = 1
tot2 = 1
abc = 0
cba = 0
nextbet = base
function dobet()
if profit>0.000000001 then
count = 0
tot = 1
tot2 = 1
abc = 0
cba = 0
base = 0.00000001
resetstats()
end
if base == base then
tot = 1
tot2 = 1
end
if base == base*2 then
tot = 2
tot2 = 1
end
if base == base*4 then
tot = 4
tot2 = 1
end
if base == base*8 then
tot = 8
tot2 = 1
end
if base == base*16 then
tot = 16
tot2 = 1
end
if base == base*32 then
tot = 32
tot2 = 1
end
if base == base*64 then
tot = 64
tot2 = 1
end
if base == base*128 then
tot = 128
tot2 = 1
end
if base<0.00000001 then
base = 0.00000001
count = 0
abc = 0
cba = 0
end
count = count+1
if count>10 and abc>cba then
base = base/2
count = 0
abc = 0
cba = 0
end
if count>10 and abc<cba then
base = base*2
count = 0
abc = 0
cba = 0
end
if win then
abc = abc+tot
nextbet = base
else
cba = cba+tot2
nextbet = base
end
end
end
end

Looks like you invested some time into your strategie but there are some mistakes in your code (like tot2 is always 1, the equations with base as mentioned by HCP and the check if base is smaler then minbet is before dividing by 2 which might cause problems) and I think there is an easier way to do the betting you are looking for.

Would you mind explaining what your script is supposed to do? I would rewrite the code for you.
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!