Search content
Sort by

Showing 20 of 29 results by ThePassenger
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SOL] The next-gen decentralized social network
by
ThePassenger
on 24/01/2018, 10:35:31 UTC
I just downloaded the app, i really like it. The web version is not as nice. Good work here. Hopefully u can get to coinmarketcap and to bigger exchanges!
Post
Topic
Board Bounties (Altcoins)
Re: SOLARIS logo design contest
by
ThePassenger
on 19/01/2018, 09:53:15 UTC
Post
Topic
Board Tokens (Altcoins)
Re: World Tourism (Tourcoin)
by
ThePassenger
on 07/01/2018, 15:44:38 UTC
Hey @tourcoinproject i am a little investor on your project and someone with experience in the Tourism business. Is there any careers site for your organization? Thanks and best of luck with it, you could disrupt the industry Smiley
Post
Topic
Board Tokens (Altcoins)
Re: [ANN][ICO] 🌟🌟 Datum - Unlock the Bln $$ Data Economy - ICO 29th October - 🌟🌟
by
ThePassenger
on 03/12/2017, 12:23:46 UTC
Hi everyone,

How do we exchange DATG tokens into DAT?

Thanks
Post
Topic
Board Bitcoin Wiki
Re: Request edit privileges here
by
ThePassenger
on 07/10/2017, 09:58:17 UTC
Hi,

Cryptopassenger here
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] AIR - A Modular Digital Identity Monetization Platform -
by
ThePassenger
on 15/07/2017, 17:36:07 UTC
when i checked this morning, the facebook site was down as well as the tokeninvestor site said "Thanks you for your interest in Token Investor, however, this site was a proof of concept. One which we have chosen to not continue." and their site was down as well...
that's why I thought that, but maybe they were under a attack or something
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] AIR - A Modular Digital Identity Monetization Platform -
by
ThePassenger
on 15/07/2017, 09:29:17 UTC
Their site is not available anymore as well as their facebook, etc. i think they ran away with 5 million dollars.
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
ThePassenger
on 26/05/2017, 19:15:53 UTC
thank you for the help. I managed to figure it out on my own and the script does just what I want. Here it is to anyone who is interested.

Code:
chance=49.5
basebet=0.00000001
nextbet=basebet
resetseed()
lossCounter=0

function dobet()

if win then

 nextbet=previousbet

  if lossCounter >= 10 then
   nextbet=basebet
   lossCounter=0
  end

else


I like your script!! However, how would it be possible to start the same script but doing a prebetting? I mean, only after 5 row red sreak betting at basebet for example?
 lossCounter=lossCounter+1

 nextbet=previousbet*2

end

end

Thanks!

You can make significant profits with this script if you  set the lossCounter <= to a bigger number. But the risk/reward is a big one.
If you set it to 15 you will be seeing about $100/hour but open yourself up to losing it all on a 10+ losing streak. You also have to have a bigger bank roll to do that.  .3 btc minimum but even that can we wiped clean. 10-12 is very safe even with .1 btc, with 12 bringing in around $100-150/24 hours.
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
ThePassenger
on 05/05/2017, 17:06:56 UTC
Thanks. You asked me to share my results after 1.5 BTC break even so here am I Smiley

Regarding stack what do you mean? Stack size/balance? Mt bet stack?

Hi there, i mean your stack size, still winning?
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
ThePassenger
on 24/04/2017, 20:15:56 UTC
That's a nice chart Smiley Which stack do you use in your script if we might know?
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
ThePassenger
on 31/03/2017, 08:30:11 UTC
I think the problem is that you are just trying to copy+paste my code snippets directly into your script and expecting it to work  Undecided For the most part, the code I type in here should be considered at best "pseudo code" and at worst, totally broken Tongue

The error is most likely caused by "numbets" not actually being a declared variable. I think the inbuilt variable is actually called "bets", but I was trying to illustrate what the variable was actually representing...

Ok, that's absolutely fine! I'll try to deep digger on it and with the variables. I'm very rookie with this, i never made or used or understand a single piece of code until i found this program, so i'm basically learning from scratch. anyway thanks!
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
ThePassenger
on 30/03/2017, 23:20:33 UTC
ok, i wrote startcount instead of startCount, but now i get this: Betting Stopped!
[string "chunk"]:39: attempt to compare number with nil i'm getting closer!
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
ThePassenger
on 30/03/2017, 23:15:42 UTC
Thanks for your reply Smiley
I've set startcount = 0 at the beginning of the script together with the other variables such as base, chance, etc but i still get the same error  Huh
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
ThePassenger
on 30/03/2017, 18:09:59 UTC
any idea about how to make the script change for a certain amount of bets? I've managed to change it from 5, let's say to 1 red streak, but i would like the script to do this change to 1 for example for 100 rolls, and then go back to 5 red streak. Do you have any idea on how to do it? Maybe with numbet? thanks!

That is exactly what my code example was doing... when you lose, and the lossCount is >= 5, it reset your lossStartMult to 4... and then started a counter (lossStartMultCounter)...

every roll it would increment the lossStartMultCounter... and then if it got to big (ie. your target number "xNumberOfBets") then it would reset the lossStartMult back to the initial value and then reset the counter as well...

You could also use numbets, which is probably a lot cleaner Wink :

Code:
if (!win) then
  lossCount += 1
else
  if lossCount >= 5 then
    lossStartMult = 4

    startCount = numbets -- save starting point   

  end
  lossCount = 0
end

if numbets >= startCount + 100 then
  -- it has been 100 bets since we changed stuff
  -- reset all the values here
end

Hi again!

So i tried your code:

Code:
if (!win) then
  lossCount += 1
else
  if lossCount >= 5 then
    lossStartMult = 1
    startCount = numbets -- save starting point   
    end
  lossCount = 0
end

if numbets >= startCount + 100 then
  -- it has been 100 bets since we changed stuff
  -- reset all the values here
     base = 0.000000100
     lossStartMult = 5
     chance = 60
end

But when I start i got this error: string "chunk":39: attempt to perform arithmetic on global 'startCount' (a nil value) I have tried to look online for the solution but i'm pretty lost. Just to remind, the idea is that when we got a 5 red streak and we start to apply the multiplier, after winning we will set for 100 bets a losstartmult to 1 (or any value, lower). I really appreciate your help, I hope to make it work because the script works very well but with this add it will be the ultimate script lol. Thanks again!
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
ThePassenger
on 30/03/2017, 07:00:43 UTC
Yes I know! However, maybe it's because it is a very long chart, the option to save it to hard drive and upload to imgur wasn't working at all. My pc was froze  and i've got a NET FRAMEWORK error, so i had to to a screenshoot and then upload it to imgur manualy Cheesy
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
ThePassenger
on 29/03/2017, 20:14:03 UTC

Hi again! Thanks to your help, i've managed to achieve more or less what i wanted. However, do you know how i can set the parameters inside the script to only make the change of lossmult during a certain amount of bets, and then go back to the initial? Any help will be much apreciatted! thanks

ummmm put in another counter when you change the lossmult? set it to zero, increment it every roll... and when it gets to the number of bets you set, you can just set lossStartMult back to whatever you want...

Code:
--CODE HAS NOT BEEN TESTED!

if (!win) then
  lossCount += 1
else
  if lossCount >= 5 then
    lossStartMult = 4

    -- NEW COUNTER
    lossStartMultCounter = 0
  end
  lossCount = 0
end

--Increment every roll
lossStartMultCounter += 1

-- if it gets to big, reset lossStartMult and reset the counter as well
if lossStartMultCounter >= xNumberOfBets then
  lossStartMult = initialLossStartMultValue (or whatever else you feel like)
  lossStartMultCounter = 0
end if
[/quote]

any idea about how to make the script change for a certain amount of bets? I've managed to change it from 5, let's say to 1 red streak, but i would like the script to do this change to 1 for example for 100 rolls, and then go back to 5 red streak. Do you have any idea on how to do it? Maybe with numbet? thanks!
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
ThePassenger
on 29/03/2017, 20:03:03 UTC
I myself shared a script, a modification of a previous script, that's prebetting all the times you want at the chance you want and others have shared them. You are playing a martingale with a certain amount  of prebetting and multipliying and at some point if you don't achieve the earnings, you just start over. That's fine, when you are 1.5 btc up just share your screenshot again.
Maybe when you are 1000000 btc up you might want to share your script with the rest of the world from your private island Wink And again, if you are in the opensource community still makes less sense to me that you do not want to share anything so the rest of the people can learn by themselves.



So take that script and use it bro. I'm sure it won't be far from mine Smiley My private island is precisly that. Private. No sharing allowed, since I do that in the main land Wink

Well its better to make less sense than no sense! I guess you have different POV about this issue.

Yes i think we definitively have a different POV about that Wink Nevertheless, I respect your position and I hope you can make a huge profit with the script. It will be nice if you can share your chart in a while thought. Here you have mine in the month of march:


http://i.imgur.com/9HKrT6n.png
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
ThePassenger
on 29/03/2017, 07:17:47 UTC
I myself shared a script, a modification of a previous script, that's prebetting all the times you want at the chance you want and others have shared them. You are playing a martingale with a certain amount  of prebetting and multipliying and at some point if you don't achieve the earnings, you just start over. That's fine, when you are 1.5 btc up just share your screenshot again.
Maybe when you are 1000000 btc up you might want to share your script with the rest of the world from your private island Wink And again, if you are in the opensource community still makes less sense to me that you do not want to share anything so the rest of the people can learn by themselves.

Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
ThePassenger
on 28/03/2017, 21:24:08 UTC
Hi guys, congrats to us all for the wonderful forum.

Now first and foremost also like to thank Seuntjie for the WONDERFUL tool and programming language (already donated my friend Smiley ) that enable me to streak 200000 bets (more than 24 hours)  in a row without loosing my bankroll.

The trick has Seuntjie stated is to low bet with high bankroll. The marvelous part of Seuntjie's bot is that one can make a strategy based on prebetting and then fish for the long loosing strike.

I've programmed a version of one of Seuntjie's script that basically I can leave running for days and have a very low probability of loosing (about 0.84% in a 500 bet streak) My script can make profits of 60/70% of current balance and withstand 100+ loosing strikes. Slowly but surely, I've been getting steady profits and IT WORKS on the long run, despite the house edge (and what other people say).

There is always a way to beat the house edge, its mathematical. Of course that using simple Martingale strategies and Labouchère on the long run you will ALWAYS loose. Even with high bank roll the math does not play in our favor.

I've taken few hours in making the math and fine-tuning the script but it has guaranteed results. Now I'm not trying to sell anything here with this post but also please don't ask to give the script for free since I lost about 1.5 BTC in fine-tuning it... Sad Investigate, loose money yourself - I'm the living proof that IT WORKS.

This post is just a testimony that house does not always win and IT IS possible to win while sleeping on the long run!

Seuntjie - you're a God. Congrats for the marvelous tool.
http://i.imgur.com/zdKMrko.png


not losing your bankroll in 24 hours proves nothing...earning 0.06BTC in one day, again proves nothing. At least, you are still 1,44 BTC under. After playing for some months let us know your results. Regarding your script, it would be very nice if you would share, at least, the purpose of it or your strategy. I don't mean sharing your entire perfect script, but if everybody would be like you, the bot will not exist, the LUA will not exist, and many free and open source stuff will not exist...and man, if seuntije says that the house always win, it's because he has the knowledge to say it Wink
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
ThePassenger
on 26/03/2017, 18:15:46 UTC


Hi again! Thanks to your help, i've managed to achieve more or less what i wanted. However, do you know how i can set the parameters inside the script to only make the change of lossmult during a certain amount of bets, and then go back to the initial? Any help will be much apreciatted! thanks

ummmm put in another counter when you change the lossmult? set it to zero, increment it every roll... and when it gets to the number of bets you set, you can just set lossStartMult back to whatever you want...

Code:
--CODE HAS NOT BEEN TESTED!

if (!win) then
  lossCount += 1
else
  if lossCount >= 5 then
    lossStartMult = 4

    -- NEW COUNTER
    lossStartMultCounter = 0
  end
  lossCount = 0
end

--Increment every roll
lossStartMultCounter += 1

-- if it gets to big, reset lossStartMult and reset the counter as well
if lossStartMultCounter >= xNumberOfBets then
  lossStartMult = initialLossStartMultValue (or whatever else you feel like)
  lossStartMultCounter = 0
end if
[/quote]

Thanks very much again Smiley i'll try to set it up!