Bitcoin Forum
June 24, 2024, 10:57:36 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 »
41  Economy / Games and rounds / Watch LIVE - HeyYouGuys' new HighRise Dice Script - We're Rollin! on: March 27, 2017, 02:10:49 PM
Live Demo of my new HighRise Script for Dicebot.    Stream will be live from 6:00pm to 8:00pm EST

Currently Up 60% !!

Tune in at join.me/heyyouguysbtc to watch the action!

This is a live playing session using my latest script, soon to be released. Winnings are comming in!
42  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: March 24, 2017, 09:40:21 AM
Hey seuntjie,

Wondering if you knew of a way to script around the "invalid amount" error thrown when a wager amount is calculated as a negative amount... such as code/commands to make the bot act so in the event of that happening it resets to base or resetstats()...

Been looking for a creative solution, but if you have any thoughts; much appreciated!
43  Economy / Gambling / Re: Dicebot Script - Profit in Negative Luck - More Profit in Positive Too! on: March 24, 2017, 02:12:56 AM
Made some slight modifications to the math calculations for the HeyYouGuys OnePointZeroTwo Script.  The original script is available on the Dicebot Website here: https://bot.seuntjie.com/scripts.aspx?id=1098

Runs great. You have to allow the bot to run... and decay down to very small wagers. This is CRITICAL. The script is coded to calculate the gain/loss streaks in chunks; and the stats/blocks of what it is calculated only reset when the bet size has decayed to 0.00000003. So while it may seem like the bets keep getting smaller... keep letting it go, it will reset back to the standard bet size when the time is right.

With a BANK of 0.01000000; the approximate starting base bet is 0.00000210... however it will go up and down for each bet/bets.

The new math uses a slightly higher amplification for gain/loss when factored into bet size.

Secondly; the decay in chance from 1.02 downwards was slowed.

The StopLossLimit is set at 0.00250000 with a recommended BANK of 0.00500000 however feel free to adjust to your needs. Works great! Enjoy!

Code:
chance= 1.02
stoplosslimit = 0.00250000
base= 0.00000000
bethigh = true
randomHighLow = false
afterwinmultiplier = 1
nextbet = base  
curbet = base
function dobet()
base= ((((balance - (profit * 24)) * 0.000125)) + (currentstreak * -0.000000006125) * 0.6125)
chance = 1.02 + (currentstreak * 0.0003125)

if win then
nextbet = previousbet * afterwinmultiplier
if currentstreak%5 then
nextbet = base
end
    else
        if currentstreak==-1 then
         curbet = base
        else
          curbet = base
        end
        nextbet = base
    end

if balance < stoplosslimit then
        stop()
       end

if nextbet < 0.00000003 then
        resetstats()
       end

if currentstreak==-60 then
        resetseed()
       end

if nextbet <  (balance * 0.000004) then
        resetstats()
       end

if previousbet < (balance * 0.000013) then
        chance = 0.26
       end

if (randomHighLow) then
  if (math.random() < .0237) then bethigh = !bethigh end
  end
  end
44  Economy / Invites & Accounts / [WTB] PrimeDice Account with Faucets Larger than 2000 Sat - Fast BTC Payment! on: March 24, 2017, 12:50:48 AM
Interested in purchasing PrimeDice accounts which have been used and have had at least 10 BTC wagered (for the 0.00002000 faucet).

If you have account(s) that you have wagered more than 10 BTC on, and don't really use the faucet; turn the account into BTC!

Fast Immediate Payment!   Willing to pay 0.015 and up depending on faucet value.

Accounts cannot have 2FA as that cannot be disabled/transfered.

Please PM me with:

Account Faucet Level (approx is ok).

If you don't use the faucet on PD, turn your old PD account into BTC! Smiley

Please PM all offers!
45  Economy / Invites & Accounts / [WTB] PrimeDice Account with Faucet Levels > 0.00002000 on: February 22, 2017, 01:54:24 PM
Looking to buy a PrimeDice account with faucet level greater than 0.00002000. 

If you are interested in selling; please send basic details such as faucet level and let's work out a deal.

PM all offers please!

Thanks!
46  Economy / Gambling / Re: Dicebot Script - Profit in Negative Luck - More Profit in Positive Too! on: February 20, 2017, 11:47:48 PM
I agree with most points, but it's simply a matter of 1.) Control 2.) Patience and Time.

Because Math... is 0. It's neutral. Infinity is the same length before 0, the negatives, and after, the positives.

What the equations in the scripts I've written do is calculate on long moving averages the deviation from neutral (0) - House Edge.

If you are starting from Roll 0... and rolling Payout 99x, with a 1% House Edge, you can expect to win 1 time in 100 right? Not so. Because deviation is exaggerated with small sample sizes.

With a very large sample size, which you can using math tables series and block into multiple moving averages, over long runs, for example 10,000,000 bets... The longer you go, the river, swings up and down in balance, will begin to narrow. Because the longer you roll, the more difficult it becomes to deviate from equilibrium. (0).

So if your script is not only calculating what your luck was for the last 100, 1000, 10000, and 100000 bets (in blocks just like that, every 1000 bets is factored on a continuously moving scale... you can vary your bets:  Bet 100 at 100% luck. Bet 90% at 105% luck Bet 110% at 105% luck. Etc.  

Thats a very crude example... as the script factors each roll to the 16th decimal... but above 100% bets go under base, luck under 100% bets increase based on a combination of moving averages... knowing that - for a fact, if you are 92% luck... you will have to win at a higher rate than 100% in order to get back to 100. Larger bets on those stretches result in:  Profit  when you have 97% luck on 4 million rolls.

Of course infinity is pretty big, and truth be told... flipping a coin, I think the record is (Monte Carlo Incident on RED/BLACK) where they rolled like 35 blacks in a row... can happen, even though the odds are in the 100s of billions.

But, within that same infinity, there is 5000 blacks in a row... (So you can always bust lol).

Sidenote:  Pi, the number, is infinite, and the numbers never repeat in terms of sequence.

If you assign a letter to the numbers based on -1 0 +1 (3 numbers = a specific letter) then contained inside of Pi is:

Your Full Name... along with...

The Novel War and Peace, written, inside Pi.... The combination of War and Peace based off the numbers to letters (doesnt matter which ones just assign them), will eventually occur within Pi.

Eventually....  Rolling War and Peace would be either a very good, or very bad thing, depending on which side of the bet you are on.
47  Economy / Gambling / Re: Dicebot Script - Profit in Negative Luck - More Profit in Positive Too! on: February 19, 2017, 04:54:18 PM
I am planning on posting at least one additional script to the Dicebot site, likely today. Its a simple one, easy to adjust and good for small bankrolls.

I haven't decided on my more complex scripts where the math involved is highly complex and most players won't really get much use out of them unless they have a decent bankroll, and plan to let 10 virtual machines roll 24/7 for weeks on end.

But they do end up in profit, even when luck is negative. Always.
48  Economy / Gambling / Re: Dicebot Script - Profit in Negative Luck - More Profit in Positive Too! on: February 19, 2017, 04:47:09 PM
Math is such a simple thing and until now there are still people who believe in these scripts... Please don't waste time. Gambling = lose, simple as that.

My girlfriend took me to the horserace one afternoon. I had never been. So I placed one bet, on the first race coming up.

I looked in the scorebook they hand you on the way in... rating the horses, for each race. Each race is in a table, basically telling you what the performance of the horse is and they are listed from best to worst.

The bet I placed was called the Triple Trifecta.

I chose the number 1 horse, and bet he would finish 1st. I bet the 2nd on coming in 2nd, and the 3rd coming in 3rd. In order to win, the horses had to win in that specific order.

$100 ticket, and got $8600.

But yea, gambling does involve risk. I would argue however there are professional gamblers, in places like vegas, who literally make a living off blackjack. Even now with most of the single deck games gone, using the law of averages and the absolute guarantee that math is neutral... you can vary your wagers based off long long streaks and profit.

Math in terms of random numbers, or coin flips, or dice, or a roulette wheel, is neutral - house odds.

If you were to flip a coin 100 times, theres a fairly good chance youd flip heads 71 times. Just by luck and a streaks which happen.

Flip that coin 100,000,000 times, and I'd say you'd end up with an almost perfect 50,000,000/50,000,000 split between heads and tails.

So equilibrium will be reached.

If you have a PrimeDice account, and have placed A LOT of rolls, you'll notice, your luck is likely 100%.

Betting larger on negative luck, and lower on positive luck will result in a positive yield despite house odds... it just takes time - and you cannot do progressive betting like martingale... because streaks will happen and wipe you out.
49  Economy / Gambling / Re: Dicebot Script - Profit in Negative Luck - More Profit in Positive Too! on: February 18, 2017, 04:58:23 PM
Will try out this script later tonight and will comment after that and thanks for sharing it here .But 15,000-20,000 rolls to double your coins is time consuming ,either way i will try it out since you have included a stop loss variable which is handy when you are  going to roll for a longer time. Smiley

EDIT1: The chances are set at 1.02  which is 97 x ::)i am a bit confused even with a very high odd i have to roll 15k to 20k  to double my coins Huh
or did i mess up something in the script and one more thing i am getting a lua stop command issued after the first bet and stops automatically.Is it because i tried with a low balance since i was testing the script.

Edit 2: I tried with 0.1 and still getting lua stop command issued error.what am i missing here.

The script is designs to perform playing 97x using 1.02.

You shouldn't be getting a Lua Stop Error - Which specific error?   What site are you using?  The script has only been built/tested for PrimeDice.

PrimeDice will roll approx 110,000 a day, so 20,000 rolls per double = almost 6 doublings per 24 hours.

 Grin Grin Grin

Thanks for the feedback!
50  Economy / Games and rounds / Just Released: DiceBot Script... -- The OnePointZeroTwo -- by HeyYouGuys on: February 18, 2017, 07:48:07 AM
Newest Script Just Released, I Will Post an Op Thread on this as well:

HeyYouGuys'   " OnePointZeroTwo "


My Newest Script for Dicebot, built running PrimeDice: https://primedice.com/?c=HeyYouGuys has thus far gotten great feedback. See comments in on seuntjie's Dicebot Script Page: 

LINK TO SCRIPT: https://bot.seuntjie.com/scripts.aspx?id=1098

See comments on above script link for required tweaks for Moneypot/Other sites, depending on the minimum chance etc of the site.  As script was built using PD4, some sites have higher "minimum chance" settings, etc.

Provided you dont have a Hell Hath No Fury Streak of Death (Or Two Near Deaths Back to Back); It rains BTCBTCBTCBTCBTC

I recommend starting with the advised minimum bankroll, and doing withdrawls every X (Whatever you feel safe) to protect gains.

If it's profitable, Tips are appreciated!


- You can sign up for your PrimeDice Account using the above referal link https://primedice.com/?c=HeyYouGuys (Much Appreciated!!)   Grin

-  Tip HeyYouGuys on PrimeDice  Cheesy

-  Or Tip Direct BTC to: 1AiqHizy2Bvc2DH5geKgsx19j54wF8WkwQ      Smiley

51  Economy / Gambling / Re: Dicebot Script - Profit in Negative Luck - More Profit in Positive Too! on: February 18, 2017, 07:44:28 AM
The script was posted, and someone caught a minor bug (missing bracket) so the Admin fixed that.

UPDATE:

Newest Script Just Released, I Will Post an Op Thread on this as well:

HeyYouGuys'   " OnePointZeroTwo "


My Newest Script for Dicebot, built running PrimeDice: https://primedice.com/?c=HeyYouGuys has thus far gotten great feedback. See comments in on seuntjie's Dicebot Script Page: 

LINK TO SCRIPT: https://bot.seuntjie.com/scripts.aspx?id=1098

See comments on above script link for required tweaks for Moneypot/Other sites, depending on the minimum chance etc of the site.  As script was built using PD4, some sites have higher "minimum chance" settings, etc.

Provided you dont have a Hell Hath No Fury Streak of Death (Or Two Near Deaths Back to Back); It rains BTCBTCBTCBTCBTC

I recommend starting with the advised minimum bankroll, and doing withdrawls every X (Whatever you feel safe) to protect gains.

If it's profitable, Tips are appreciated!


- You can sign up for your PrimeDice Account using the above referal link https://primedice.com/?c=HeyYouGuys (Much Appreciated!!)   Grin

-  Tip HeyYouGuys on PrimeDice  Cheesy

-  Or Tip Direct BTC to: 1AiqHizy2Bvc2DH5geKgsx19j54wF8WkwQ      Smiley

52  Economy / Goods / [WTS] $250 Saks Fifth Ave - Gift Card... Only $175 on: February 07, 2017, 07:20:44 AM


TAKING OFFERS!

Card was given to me as a gift last Christmas (2015 but funds do not expire) by a business associate. 100% Legitamate. I checked the balance today, and it shows the full balance.

$250 VALUE - Buy it Now for $175

I can either scan the card / send photo of front and back with the number/pin and email it to you - OR - just message the buyer here in PM the card number and PIN, or I can mail you the physical card, which would allow you to use the physical card in a store.

The card can be used online or in their department stores. The card has a slight mark on it where I wrote $250 in a black sharpie on the front. I keep all my cards in a card organizer. It is hardly noticable due to the fact the card is black. Just FYI if you plan to give it as a gift, it might be noticed, but it is very faint.




PURCHASING:   Please send me a PM to purchase. BTC If you would like the physical card shipped, Please add $4.00 for Priority Mail with Tracking. If you request the physical card to be mailed, card will go out within 1 business day and I will email you tracking information when the USPS packing slip is generated. Card will be shipped via USPS Priority Mail with Signature Confirmation Only.

PAYMENT: I am fine with escrow through Ognasty or any other trusted Escrow provider. I can provide a scan of the card with the number and pin (the pin is scratched so I could check the balance), and if you are concerned I am ok with a limited time hold so you can spend the card prior to Escrow being released. Im selling the card simply because I likely won't use it. The card can be used online and in stores. The PIN and Card Number can be used for online purchases.

RETURNS:  Due to the nature of the item, returns are not accepted UNLESS the card is rejected (which it wont be I just checked the balance today and it still shows $250, the funds do not expire). The card was a gift. Its just not something I am going to use.



Feel free to PM any questions!

53  Economy / Gambling / Dicebot Script - Profit in Negative Luck - More Profit in Positive Too! on: February 06, 2017, 12:05:03 PM
Came up with this script recently. It auto calculates you base bet and your chance. Just start with a bank of at least 0.00100000.

Very simple to use. Also, this has been posted to the Dicebot website pending review.

If you want to place larger bets, then adjust the basemultiplier variable to a higher value (0.00065 to 0.00085).

The script yields positive returns in negative luck.


Donations appreciated! I have a number of scripts I've put together, and strategies I've shared here. Please support me in helping to provide more scripts and strategies!  

BTC:
1AiqHizy2Bvc2DH5geKgsx19j54wF8WkwQ

DICEBOT SCRIPT

https://bot.seuntjie.com/scripts.aspx?id=1098

Enjoy!

HeyYouGuys
54  Economy / Invites & Accounts / Re: PrimeDice Accounts with Faucets >= 0.00002000 - 500x Faucet Payout Value! on: February 06, 2017, 10:24:49 AM
BUMPING THIS TOPIC!  CURRENTLY BUYING PRIMEDICE ACCOUNTS AGAIN! Smiley

FEBRUARY 2017 - BUYING PRIMEDICE ACCOUNTS WITH FAUCETS GREATER THAN 0.00002000 (ACCOUNT MUST HAVE WAGERED > 10 BTC 
WILLING TO PAY 333X FAUCET VALUE
EXAMPLE:  FAUCET:   0.00003400 x 350X = 0.011322 BTC


BUYING PRIMEDICE ACCOUNTS WITH FAUCETS OF 0.00002000 & UP!

BONUS:  Faucets > 0.00004000 = 400X Payment Value

PURE AND SIMPLE:   If you are not planning on using your faucet 333-400 draw times (and hope that you can actually bet it up to a decent amount... turn your old PD account in for instant BTC!

IMPORTANT: If you have 2FA enabled: DO NOT PM ME as it is not possible to disable this feature therefor I will not be able to log in.

If you have an account, that has a faucet greater than 2000; YOU MUST INCLUDE IN YOUR PM:



 - FAUCET AMOUNT
 - WAGERED AMOUNT
 - ACCOUNT LEVEL



You can approximate the amounts a little as to not reveal the account identity, but don't abscure to where it won't match up. I have a chart in terms of faucet amount, wagers required and level- to validate offers; as I get a lot of PMs from people with obviously bogus "offers to sell", where the numbers do not align.

FAST PAYMENT

PAYMENTS: I prefer not to deal with escrow for such small amounts. I have made a number of successful trades here, and as you can see, I have NO NEGATIVE Feedback.

Based on your trust/feedback, we can I am sure work out a fair way to handle payment.

I can send a partial payment for members with trust/feedback. Or, you can trust me, and send the account and I will send payment as soon as I am able to confirm the account is OK and I can access it. For Highly Trusted Members/Hero/Etc with Positive Reviews, I will pay first.

As stated, multiple trades, and my profile has no negative reviews. No feedback is posted for successful trades to keep the transaction anonymous for both parties.
55  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: October 07, 2016, 10:25:14 PM
Hi Seuntjie,

Nice bot, just started playing with it and have already sent some tips from winnings your way.

I have a question regarding the scripts, or maybe someone else could helpw with this too?

I dont have a solid understanding of the LUA scripting, but I have been able to cut and paste from the samples on your website to get things to work.

Is there a way, before I waste a lot of time researching (when it might not be even possible)---

To have things such as:


if luck>  or if luck<   then

or

if loss streak> N then bet X but after a win go back to normal,

last option:

if luck in last X bets > N% CHANGE TO ->  Different betting pattern?

etc?

Is there a way to have the bot place bets based on overall luck in the stats window, or overall loss streaks to change the betting pattern, but then after a win to change back to normal?

Thanks the bot is awesome!
56  Economy / Digital goods / [WTS] Saks Fifth Ave Gift Card - $250 Value Taking Offers on: September 10, 2016, 11:17:17 PM


TAKING OFFERS!

Card was given to me as a gift last Christmas by a business associate. 100% Legitamate. I checked the balance today, and it shows the full balance.

I can either scan the card with the number/pin and email it to you, or I can mail you the physical card. The card can be used online or in their department stores. The card has a slight mark on it where I wrote $250 in a black sharpie on the front. I keep all my cards in a card organizer. It is hardly noticable due to the fact the card is black. Just FYI if you plan to give it as a gift, it might be noticed, but it is very faint.

Holidays are coming up,
and Sak's sells very nice stuff, just something I don't need and likely wont use in the near term.



MAKING AN OFFER:   Please PM all offers to me in USD value, with final payment to be made in BTC at current value at time of sale. If you would like the physical card shipped, Please add $5.00 for Priority Mail with Tracking.

PAYMENT: I am fine with escrow through Ognasty or any other trusted Escrow provider. I can provide a scan of the card with the number and pin (the pin is scratched so I could check the balance), and if you are concerned I am ok with a limited time hold so you can spend the card prior to Escrow being released. The card can be used online and in stores. The PIN and Card Number can be used for online purchases.

RETURNS:  Due to the nature of the item, returns are not accepted UNLESS the card is rejected (which it wont be I just checked the balance, it does not expire). The card was a gift. Its just not something I am going to use.



Feel free to PM any questions!

57  Economy / Invites & Accounts / Re: Buying PrimeDice Accounts with Good Faucets - LABOR DAY ONLY - 1000X VALUE on: September 10, 2016, 10:41:53 PM
BUMP!
LOOKING TO BUY PRIMEDICE ACCOUNTS WITH HIGH FAUCETS - INSTANT BTC PAYMENT! 
BUYING FAUCET ACCOUNTS AT
500X
FAUCET DRAW VALUE! THROUGH MONDAY ONLY!


BUYING PRIMEDICE ACCOUNTS WITH FAUCETS OF 0.00002000 & UP!

So a faucet that draws 0.00003000    I will buy for 0.0150000 BTC
A faucet that draws 0.00006000    I will buy for 0.0300000 BTC

If you don't plan on playing your faucet 500 times which would take 20 Days playing for an hour a day, turn the account into instant BTC.

If you have 2FA enabled: DO NOT PM ME as it is not possible to disable this feature therefor I will not be able to log in.

If you have an account, that has a faucet greater than 2000; YOU MUST INCLUDE IN YOUR PM:



 - FAUCET AMOUNT
 - WAGERED AMOUNT
 - ACCOUNT LEVEL



You can approximate the amounts a little as to not reveal the account identity, but don't abscure to where it won't match up. I have a chart in terms of faucet amount, wagers required and level- to validate offers; as I get a lot of PMs from people with obviously bogus "offers to sell", where the numbers do not align.

FAST PAYMENT

PAYMENTS: I prefer not to deal with escrow for such small amounts. I have made a number of successful trades here, and as you can see, I have NO NEGATIVE Feedback.

Based on your trust/feedback, we can I am sure work out a fair way to handle payment.

I can send a partial payment for members with trust/feedback. Or, you can trust me, and send the account and I will send payment as soon as I am able to confirm the account is OK and I can access it. For Highly Trusted Members/Hero/Etc with Positive Reviews, I will pay first.

As stated, multiple trades, and my profile has no negative reviews. No feedback is posted for successful trades to keep the transaction anonymous for both parties.
58  Economy / Games and rounds / Re: Sick of Martingale? Give this a shot... It works. Chart and Instructions. on: September 04, 2016, 04:00:35 PM
CHART UPDATED






thought the base bet is 100bits but it turns out 1000 on your screenshot? can you please explain more in english pls if you know what i mean Smiley

Your base can be whatever. Its just a unit. A metric.

If your base is 2000, you use 2000 as the base, and increase 2000 on losses, and double each win for 2 wins, going back after a 3rd win.
59  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: September 04, 2016, 01:40:06 PM
FYI a LUA script was created for this bot to run my strategy. Not by me, but it can be found in the thread.

A great alternative to Martingale.

https://bitcointalk.org/index.php?topic=1430193.msg16143614#msg16143614
60  Economy / Games and rounds / Re: Sick of Martingale? Give this a shot... It works. Chart and Instructions. on: September 04, 2016, 01:22:46 PM
CHART UPDATED




Pages: « 1 2 [3] 4 5 6 7 8 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!