Bitcoin Forum
June 21, 2024, 10:57:35 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 »
1  Alternate cryptocurrencies / Mining (Altcoins) / Re: GMiner v2.59 Ethash/KAWPOW/Equihash/CuckooCycle on: July 27, 2021, 11:38:34 PM
Hello Zminer777

And why I can't to mine ETH on the pool europe.ethash-hub.miningpoolhub.com:20535 ?
gminer say that: Malformed server message



In another miners all good with this pool.

Just add:  --proto stratum

Thank you so much Blockpusher!
2  Alternate cryptocurrencies / Mining (Altcoins) / Re: GMiner v2.59 Ethash/KAWPOW/Equihash/CuckooCycle on: July 04, 2021, 06:19:08 PM
Hello Zminer777

And why I can't to mine ETH on the pool europe.ethash-hub.miningpoolhub.com:20535 ?
gminer say that: Malformed server message



In another miners all good with this pool.
3  Alternate cryptocurrencies / Mining (Altcoins) / Re: GMiner v2.24 Equihash/CuckooCycle/Ethash/ProgPoW/KAWPOW on: September 27, 2020, 02:58:03 PM
Yes, I can confirm the same situation.
Beginning from 2.23 version on TUBE algo (cuckaroo29b) all my videocards slowed down speed almost half.

Version gminer 2.22 to 2.23
MSI 1080 ti from 8.8 > 8.3 g/s
GTX 1080 aorus from 5.45 > 5.08 g/s

Version gminer 2.23 to 2.24
MSI 1080 ti from 8.3 > 5.3 g/s
GTX 1080 aorus from 5.08 > 3.4 g/s

It seems two last versions are bugged, especially gminer 2.24
Very bad updates.

Stable last good version of gminer it is 2.22
I rolled back to this version.
4  Alternate cryptocurrencies / Mining (Altcoins) / Re: GMiner v2.09 Equihash/CuckooCycle/Ethash/ProgPoW/KAWPOW on: June 04, 2020, 08:47:10 PM
Hello Zminer777

Why on nvidia 446.14 drivers GRIN29 hashrate so small?
Only 5.59 h/s on msi 1080ti

I remember on the old version of gminer and nvidia drivers 416-417 version grin29 hashrate was about 7.00+ h/s

What happened?
5  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: July 19, 2019, 12:50:15 AM
@Agent009

This script should do what you've asked... As always, it hasn't been extensively tested (I simply used the simulation and exported the results to check it), so use at your own risk!

You will need to modify the "edge" variable to match the "House Edge" of the site you want to play on... 1% HouseEdge = 1... 0.8% HE = 0.8 etc. Then set the basePayout and baseBet to suit your requirements. They are defaulted to 10x payout and 0.00000010 BTC

Code:
-------------------------------------------------------------------------------
--
-- Payout Martingalge Script for Agent009 by HCP
--
-- BTC Donations to: 33gzi64cvCr4i9ECGPwvZktzS2qknRUFhC
--
-------------------------------------------------------------------------------

edge       = 1 -- set to the house edge of your site
basePayout = 10 -- set to the base payout that you want
payout     = basePayout

chance     = (100 - edge) / payout -- calculate chance based on house edge
baseChance = chance

baseBet = 0.00000010 -- 1 "unit"
nextbet = baseBet -- set our initialBet

bethigh = false

function dobet()

    if win then
        -- reset to base bet/chance/payout
        nextbet = baseBet
        chance  = baseChance
        payout  = basePayout
       
    else
        -- increase payout
        payout  = payout + 1
       
        -- recalculate chance
        chance  = (100 - edge) / payout
       
        -- increase bet by 1 unit
        nextbet = previousbet + baseBet
    end

end

HCP thank you very much! Smiley
I will test it today and then talk about the results...
6  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: July 19, 2019, 12:48:41 AM
Yes, alright it is payout.
Yea, that's right.

Ok... that was slightly complicated due to the fact that you can't simply specify the "payout" value. Instead, the bot requires that you know the "House Edge" for the site to be able to calculate the correct "chance" value for your desired "payout". Wink

I have put the script into the Programmer Mode Discussion thread to keep this thread tidy.

Got it!
Thank you very much!
7  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: July 17, 2019, 12:51:08 PM
Sorry, I'm a little confused by your use of the term "multiplier"... do you mean payout? Huh

So, 10x payout which would equal around ~9.9% chance (on a typical house edge of 1%)... and then slowly increase that payout (11x, 12x, 13x etc), which effectively reduces the chance, while increasing the bet?

Yes, alright it is payout.
Yea, that's right.
8  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: July 16, 2019, 12:52:00 PM
Hello guys!
Can anyone help me with a little script?

Idea is:
base bet = 0.00000010
base multiplier = 10x
on loss = 0.00000010 (as and basebet, always +1 unit)
on loss = +1x multiplier
on win = reset to base params

i.e. when I loss so my next bets must be like as:
after 1 loss: bet 0.00000020 + 1x multiplier (11x)
after 2 loss: bet 0.00000030 + 1x multiplier (12x)
after 3 loss: bet 0.00000040 + 1x multiplier (13x)
after 4 loss: bet 0.00000050 + 1x multiplier (14x)
after 5 loss: bet 0.00000060 + 1x multiplier (15x)

and so on until we win...

I saw such a script on the Bustabit site (payout martingale)

You can do it in Setting Mode - Advanced. Using MMMMKKKK or d'Alembert, reset on win in stop condition.

Yea, it's true, but this only for bet amount. And how to make on each lose +1x multiplier?
9  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: July 15, 2019, 12:20:06 AM
Hello guys!
Can anyone help me with a little script?

Idea is:
base bet = 0.00000010
base multiplier = 10x
on loss = 0.00000010 (as and basebet, always +1 unit)
on loss = +1x multiplier
on win = reset to base params

i.e. when I loss so my next bets must be like as:
after 1 loss: bet 0.00000020 + 1x multiplier (11x)
after 2 loss: bet 0.00000030 + 1x multiplier (12x)
after 3 loss: bet 0.00000040 + 1x multiplier (13x)
after 4 loss: bet 0.00000050 + 1x multiplier (14x)
after 5 loss: bet 0.00000060 + 1x multiplier (15x)

and so on until we win...

I saw such a script on the Bustabit site (payout martingale)
10  Economy / Gambling / Re: ▄■▀■▄ 🌟BITVEST🌟 💰WIN BY 🔶 PLAY 📈 INVEST ☕ SOCIAL➡🔺PLINKO🎲DICE🎰SLOT🎡SPIN on: November 28, 2018, 05:57:59 PM
Hey lightlord

Please read my pm to you here
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Uranium-X (URX) Super Rare Crypto!! Cpu Mining! Uranium-x.com on: September 23, 2018, 01:24:46 AM
Omg..
Realy hack or scam?
12  Alternate cryptocurrencies / Mining (Altcoins) / Re: WildRig Multi: new miner for AMD with multialgo support on: September 18, 2018, 05:37:52 PM
andrucrypt, can you please add kernel for Tahiti videocards?
It's R9270,270x,280x etc..
I have failed to compile kernels for those cards, and have no time to check what is wrong. Even Hawaii and other prior RX kernels are just an exception and I provide them "as is". I have no such hardware to make tests and proper support it, maybe later when I have more time...

Ok, clear.

By the way, I like how is OP very carefully done and very convenient to read, looks very nice. Good job dev...
13  Alternate cryptocurrencies / Mining (Altcoins) / Re: WildRig Multi: new miner for AMD with multialgo support on: September 18, 2018, 05:25:55 PM
andrucrypt, can you please add kernel for Tahiti videocards?
It's R9270,270x,280x etc..
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Mass Grid - The decentralized high computing network on: September 18, 2018, 04:31:14 PM
Any news about new mining software for MGD algo?
15  Alternate cryptocurrencies / Mining (Altcoins) / Re: WildRig Multi: new miner for AMD with multialgo support on: September 17, 2018, 09:24:17 PM
Very, very good miner!
Thank you andrucrypt...
16  Alternate cryptocurrencies / Mining (Altcoins) / Re: Open Source XPM (Primecoin) GPU Miner & Pool xpmforall.org on: September 03, 2018, 09:08:18 AM
eXtremal.ik71, very good job, thank you!
And question, how about new miner with increased perfomance (especially for nvidia)? Smiley
I think that 1080ti cards can make more than 0.62-0.73 cpd...
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][JADE] JADEPAY | POW | MN | ALGO JAD8 | BOUNTY AIRDROP | PRESELL MN | JADEX on: August 26, 2018, 07:26:15 PM
Hey dev
Enough to spam with your MasterNodes every day, enrages already.

No one needs your masternodes. People need an innovative good coin, not stupid masternodes coins.
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] ANU | AnuCoin | C11 POW / POS / Masternodes | NO ICO | Low Premine on: August 22, 2018, 10:12:30 PM
Coin: RIP
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Datacoin - Censorship-Free Data Storage on: July 18, 2018, 09:53:06 PM
So what with my 1000 DTC? Where they are?
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Datacoin - Censorship-Free Data Storage on: July 12, 2018, 01:25:50 AM
This is my link http://www.[Suspicious link removed]?unique=da8gJSgBDIxQieyfsLNjRoh1ILfwvSCc
And now I see that my balance = 0 DTC  Huh But I not received my 1000 DTCs Sad
I made a deposit to this address 995 DTC: DGVeX83PzKP77M4RhNYTsBVcSuWCu4nfJc and here 5 DTC: DPRiVrKM2DyQE1FfJEuMhUDNqHgFzZz5KM
In total 1000 dtc.

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